fix-todos
Installation
SKILL.md
Fix TODOs
I'll systematically find and resolve TODO comments in your codebase with intelligent understanding and continuity across sessions.
Arguments: $ARGUMENTS - files, directories, or specific TODO patterns to fix
Token Optimization Strategy
Target: 60% reduction (3,000-5,000 → 1,200-2,000 tokens)
This skill implements aggressive optimization for TODO resolution workflows by minimizing file reads, leveraging session state, and using progressive fixing patterns.
Core Optimization Patterns
1. Grep-First TODO Discovery (Primary: 60-70% savings)
# ALWAYS use Grep to find TODOs - never Read files for scanning
grep -rn "TODO|FIXME|HACK|XXX" --include="*.{js,ts,py,go}" .
grep "TODO:" src/ -C 2 # Get 2 lines context for understanding