From a949040092a41129d369054576dfda465180efb5 Mon Sep 17 00:00:00 2001 From: Strands Agent <217235299+strands-agent@users.noreply.github.com> Date: Tue, 20 Jan 2026 03:05:23 +0000 Subject: [PATCH] fix(llmstxt): use recursive glob for TypeScript API docs The TypeScript API documentation is generated by typedoc into subdirectories (classes/, types/, interfaces/, functions/), but the llmstxt plugin configuration only matched *.html in the root directory. This change uses **/*.html to recursively include all TypeScript API documentation files in llms.txt, enabling AI coding assistants to help users write TypeScript code. Fixes #426 --- mkdocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs.yml b/mkdocs.yml index 7f725987..52a64a67 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -279,7 +279,7 @@ plugins: Python API: - docs/api-reference/python/**/*.md TypeScript API: - - docs/api-reference/typescript/*.html + - docs/api-reference/typescript/**/*.html hooks: