Fix broken docs links and updates for agents#6420
Conversation
Greptile SummaryThis PR fixes ~25 broken internal documentation links by converting underscore-separated URL paths to kebab-case, and extends the agent-facing docs pipeline in Confidence Score: 4/5Safe to merge — changes are doc link fixes and non-breaking additive agent tooling with good test coverage. All P2 findings only. The link fixes are mechanical and well-tested. The new dynamic API reference generation is additive, isolated to the agent plugin, and covered by new tests. One stale type annotation (str | bytes → str) is the only notable inconsistency. docs/app/agent_files/_plugin.py — stale return type annotation on generate_markdown_files Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[generate_agent_files] --> B[generate_markdown_file_entries]
A --> C[generate_dynamic_api_reference_files]
B --> D[generate_markdown_file_content\nAdds MARKDOWN_DIRECTIVE prefix]
C --> E[generate_class_api_reference_markdown\nfor each class/module]
C --> F[generate_environment_variables_markdown]
B --> G[MarkdownIndexEntry conversion]
C --> H[dynamic_api_reference_index_entries]
G --> I[generate_llms_txt\nMarkdownIndexEntry list]
H --> I
D --> J[Return: static markdown files]
E --> K[Return: dynamic API reference files]
F --> K
K --> L[generate_llms_full_txt\nstatic + dynamic content]
I --> M[llms.txt index]
L --> N[llms-full.txt]
Reviews (1): Last reviewed commit: "Fix broken docs links and updates for ag..." | Re-trigger Greptile |
No description provided.