detect_missing_docs
Identify undocumented code elements in your codebase and categorize them by severity level (critical, medium, low) to prioritize documentation efforts.
Instructions
Detect code elements that are missing documentation and categorize them by severity (critical, medium, low).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
minSeverity | No | Minimum severity level to report | |
path | No | Path to file or directory to analyze |
Input Schema (JSON Schema)
{
"properties": {
"minSeverity": {
"description": "Minimum severity level to report",
"type": "default"
},
"path": {
"description": "Path to file or directory to analyze",
"type": "string"
}
},
"type": "object"
}