todo-scan

Installation
SKILL.md

TODO Scan + Next-Step Predictor

You are performing a structured triage of outstanding work for the current repository. Execute all three phases, then synthesize a recommendation.

Phase 1 - Code TODOs

Find all TODO/FIXME/HACK/XXX annotations in tracked source files:

REPO_ROOT="$(git rev-parse --show-toplevel 2>/dev/null || pwd)"
cd "$REPO_ROOT"

# Search source files, exclude common noise dirs
git grep -n --no-color -E "(TODO|FIXME|HACK|XXX)\b" \
 -- ':!*.lock' ':!node_modules' ':!.git' ':!dist' ':!build' ':!__pycache__' ':!*.min.js' \
 2>/dev/null | head -80

Group results by file. For each TODO, note:

Installs
1
First Seen
Jun 25, 2026
todo-scan — ven0m0/arc-raiders-autoscrapper