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
Related skills
More from manastalukdar/claude-devstudio
duplication-detect
Find and eliminate code duplication with DRY refactoring strategies
20db-diagram
Generate database ER diagrams from schema for documentation
17lighthouse
Run Lighthouse audits and implement performance, accessibility, and SEO fixes
13session-resume
Resume previous work from archived session with full context restoration
12owasp-check
OWASP Top 10 vulnerability scanning and remediation
12database-connect
Database MCP server integration for PostgreSQL, MySQL, MongoDB
11