From codebase-documenter
Scans the project structure and generates module-level documentation, function signatures, and API references with a dependency graph.
How this command is triggered — by the user, by Claude, or both
Slash command
/codebase-documenter:document-allThe summary Claude sees in its command listing — used to decide when to auto-load this command
Auto-document the entire codebase by generating module-level docs, function signatures, and API references. ## Steps 1. Scan the project structure to identify all source files and their organization. 2. For each module or directory: 3. For each public function or method: 4. Generate an API reference organized by module. 5. Create a dependency graph showing how modules relate. 6. Identify undocumented or poorly documented areas. 7. Output documentation in the project's preferred format (JSDoc, docstrings, etc.). ## Format ## Rules - Follow existing documentation conventions in the ...
Auto-document the entire codebase by generating module-level docs, function signatures, and API references.
# Module: <name>
Purpose: <what this module does>
Exports: <list of public APIs>
Dependencies: <what it imports>
6plugins reuse this command
First indexed Mar 30, 2026
npx claudepluginhub avelikiy/awesome-claude-code-toolkit --plugin codebase-documenter/document-allScans the project structure and generates module-level documentation, function signatures, and API references with a dependency graph.
/generate-docsGenerates comprehensive project documentation: module overviews, API references, usage examples, and configuration details. Writes to docs/ and updates inline comments.
/doc-genGenerates API documentation, README sections, and inline code comments from source files, focusing on exported functions and public APIs.
/manifestScans source files for module docstrings, extracts exports, used_by, rules, agent fields, outputs directory-grouped architectural map and summary stats.
/docsGenerates structured documentation for a specified code scope, producing API references, code annotations, user guides, and developer handbooks.
/project-docsGenerates ARCHITECTURE, API endpoint, and database schema documentation from codebase analysis. Supports selective generation via arguments (all, architecture, api, database).