todos
Scan codebases for TODO/FIXME markers or implement fixes using local LLM analysis, with prioritization and grouping options for efficient task management.
Instructions
Find or implement TODO/FIXME markers with prioritization options.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Action: find (scan and categorize), implement (LLM-powered fixes) | |
| root | Yes | Root directory to scan | |
| groupBy | No | How to group results (find action) | |
| includeContext | No | Include surrounding code context (find action) | |
| difficulty | No | Difficulty level of TODOs to implement (implement action) | |
| todoTypes | No | Types of TODOs to process (default: TODO, FIXME) | |
| dryRun | No | Preview changes without applying (implement action) | |
| files | No | Specific files to process | |
| maxResults | No | Maximum TODOs to return/implement (default: 100 for find, 5 for implement) |