find-todos
Installation
SKILL.md
Find Development Tasks
I'll locate all TODO comments and unfinished work markers in your codebase.
Token Optimization
Target Reduction: 70% (2,000-3,000 → 600-900 tokens)
Optimization Status: ✅ Optimized (Phase 2 Batch 3D-F, 2026-01-26)
Key Optimizations
- Pure Grep-Based Search (No File Reading)
- Use Grep tool exclusively for TODO/FIXME/HACK/XXX/NOTE detection
- Pattern:
"TODO|FIXME|HACK|XXX|NOTE"with case-insensitive search - Grep provides file location, line numbers, and surrounding context
- NEVER use Read tool - grep output contains all necessary information
- Saves: 1,000-1,500 tokens per search