You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor autodocs script and update README with usage examples
- Simplified documentation generation in autodocs
- Added basic usage examples to README for context, apply-md, and git-context scripts
- Removed unnecessary scripts from autodocs processing
- Updated LLM model to claude-3.7-sonnet
- Improved context extraction and documentation update workflow
cat tmp-context.md | llm -m "$MODEL" -s "Fix $DOC_PATH to match script. Output it verbatim and nothing else. DO NOT MODIFY ANYTHING ELSE. Do not wrap into \`\`\` code block." | tee "$DOC_PATH"
31
30
32
31
echo "Updated $DOC_PATH"
33
32
echo ""
@@ -39,12 +38,9 @@ done
39
38
# Update README.md based on all doc files
40
39
echo "Updating README.md..."
41
40
42
-
# Command to generate updated README.md content
43
-
README_CMD="./context \"docs/*.md\" | llm -m openrouter/anthropic/claude-3.5-haiku \"Generate a comprehensive README.md for this collection of scripts based on their documentation.\" | ./apply-md"
cat tmp-context.md | llm -m "$MODEL""Fix README.md to match individual scripts documentation. Output whole file verbatim and nothing else. DO NOT MODIFY ANYTHING ELSE. Do not wrap into \`\`\` code block." | tee README.md
0 commit comments