mirror of
https://github.com/thecyberlearn/quantum-ai.git
synced 2026-08-18 16:12:59 +00:00
- Create 5 specialized subagents for improved development workflow:
- django-expert: Django development specialist
- agent-architect: AI agent development specialist
- django-debugger: Django debugging specialist
- security-auditor: Security review specialist
- template-optimizer: Frontend optimization specialist
- Implement comprehensive auto-documentation system:
- Slash command integration (/update-docs)
- Git hooks for automatic updates
- Manual trigger scripts
- Documentation automation tools
- Update project documentation:
- Enhanced agent creation guide with recent improvements
- Toast messaging standardization documented
- Dynamic pricing implementation patterns
- Subagents usage guide
🎯 Key Benefits:
- 10x faster agent development with specialized assistance
- Automated security reviews and Django best practices
- Consistent template architecture and optimization
- Comprehensive documentation maintenance
Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
26 lines
761 B
Bash
Executable File
26 lines
761 B
Bash
Executable File
#!/bin/bash
|
|
# Manual trigger for documentation updates
|
|
|
|
PROJECT_ROOT=$(git rev-parse --show-toplevel)
|
|
SCRIPTS_DIR="$PROJECT_ROOT/scripts"
|
|
AUTO_UPDATE_SCRIPT="$SCRIPTS_DIR/auto_update_docs.py"
|
|
|
|
echo "Manually triggering documentation update..."
|
|
|
|
if [ -f "$AUTO_UPDATE_SCRIPT" ]; then
|
|
python3 "$AUTO_UPDATE_SCRIPT" "$PROJECT_ROOT"
|
|
|
|
if [ -f "$PROJECT_ROOT/docs_update_summary.txt" ]; then
|
|
echo ""
|
|
echo "Documentation update completed!"
|
|
echo "Summary saved to: docs_update_summary.txt"
|
|
echo ""
|
|
echo "To commit the updates:"
|
|
echo " git add ."
|
|
echo " git commit -m '📚 Manual documentation update'"
|
|
fi
|
|
else
|
|
echo "Error: Auto-update script not found at $AUTO_UPDATE_SCRIPT"
|
|
exit 1
|
|
fi
|