- Add 60 new agents across all 10 categories (75 -> 135) - Add 95 new plugins with command files (25 -> 120) - Update all agents to use model: opus - Update README with complete plugin/agent tables - Update marketplace.json with all 120 plugins
861 B
861 B
Auto-document the entire codebase by generating module-level docs, function signatures, and API references.
Steps
- Scan the project structure to identify all source files and their organization.
- For each module or directory:
- For each public function or method:
- Generate an API reference organized by module.
- Create a dependency graph showing how modules relate.
- Identify undocumented or poorly documented areas.
- Output documentation in the project's preferred format (JSDoc, docstrings, etc.).
Format
# Module: <name>
Purpose: <what this module does>
Exports: <list of public APIs>
Dependencies: <what it imports>
Rules
- Follow existing documentation conventions in the project.
- Only document public/exported APIs, not internal helpers.
- Include real usage examples found in the codebase, not fabricated ones.