Create comprehensive documentation for the entire project.
Generate comprehensive project documentation covering architecture, APIs, guides, and development setup. Use this when onboarding new team members or creating reference materials for your codebase.
/plugin marketplace add varaku1012/aditi.code/plugin install auto-docs@aditi-code-pluginsCreate comprehensive documentation for the entire project.
/docs-generate # Generate all docs
/docs-generate --format html # HTML output
/docs-generate --output docs/ # Custom output directory
/docs-generate --sections api,arch # Specific sections only
docs/
├── index.md # Main entry point
├── getting-started.md # Quick start guide
├── architecture/
│ ├── overview.md # System architecture
│ ├── pipelines.md # Pipeline documentation
│ └── agents.md # Agent system docs
├── api/
│ ├── pipelines.md # Pipeline API reference
│ ├── agents.md # Agent API reference
│ ├── tools.md # Tools API reference
│ └── interfaces.md # Data models reference
├── guides/
│ ├── configuration.md # Config guide
│ ├── customization.md # Customization guide
│ └── troubleshooting.md # Troubleshooting guide
└── development/
├── setup.md # Dev environment setup
├── testing.md # Testing guide
└── contributing.md # Contribution guidelines
In docs.yaml:
project:
name: InfiniteMedia
description: Multi-agent video generation framework
version: 1.0.0
output:
format: markdown
directory: ./docs
include_source_links: true
sections:
- overview
- architecture
- api
- guides
- development
exclude_patterns:
- "tests/*"
- "*.pyc"
- "__pycache__"