generate_documentation
Generate comprehensive markdown documentation for codebases and files, including all code elements and existing documentation to improve project understanding and maintenance.
Instructions
Generate comprehensive markdown documentation for a codebase or file, including all code elements and their existing documentation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format for documentation | |
path | No | Path to file or directory to document |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"description": "Output format for documentation",
"type": "default"
},
"path": {
"description": "Path to file or directory to document",
"type": "string"
}
},
"type": "object"
}