Tech Debt Scanner
by @charlie-morrison
Scan codebases for technical debt — TODO/FIXME comments, deprecated APIs, complexity hotspots, outdated patterns, missing tests, large files — then prioritiz...
clawhub install tech-debt-scanner📖 About This Skill
name: tech-debt-scanner description: Scan codebases for technical debt — TODO/FIXME comments, deprecated APIs, complexity hotspots, outdated patterns, missing tests, large files — then prioritize with AI reasoning and generate remediation plans.
Tech Debt Scanner
Find, categorize, and prioritize technical debt in any codebase. Produces an actionable report with effort estimates, risk scores, and remediation suggestions — not just a list of problems.
Use when: "scan for tech debt", "find code smells", "audit code quality", "what should we refactor first", "technical debt report", or before sprint planning to identify cleanup candidates.
Commands
1. scan — Full Tech Debt Audit
Run all detectors and produce a prioritized report.
#### Step 1: Detect TODO/FIXME/HACK Comments
# Find all debt markers with context
rg -n "TODO|FIXME|HACK|XXX|TEMP|WORKAROUND|DEPRECATED|NOCOMMIT" \
--type-not binary \
-g '!node_modules' -g '!vendor' -g '!dist' -g '!build' -g '!.git' \
--stats 2>&1
Categorize each hit:
Count totals per category. Flag any older than 6 months (check git blame):
# Age of oldest TODO/FIXME (sample first 10)
rg -l "TODO|FIXME|HACK" -g '!node_modules' -g '!vendor' | head -10 | while read f; do
echo "=== $f ==="
git log -1 --format="%ai %an" -- "$f" 2>/dev/null
done
#### Step 2: Detect Complexity Hotspots
# Largest source files (often the most complex)
find . -type f \( -name "*.ts" -o -name "*.js" -o -name "*.py" -o -name "*.go" -o -name "*.rs" -o -name "*.java" \) \
-not -path '*/node_modules/*' -not -path '*/vendor/*' -not -path '*/dist/*' -not -path '*/.git/*' \
-exec wc -l {} + 2>/dev/null | sort -rn | head -20Functions with high nesting (proxy for cyclomatic complexity)
rg -n "^\s{12,}(if|for|while|switch|case|catch)" \
--type-not binary \
-g '!node_modules' -g '!vendor' -g '!dist' \
--stats 2>&1 | tail -5
Flag files >500 lines as candidates for splitting. Flag functions with >4 levels of nesting as complexity hotspots.
#### Step 3: Detect Outdated Patterns
# JavaScript/TypeScript: var usage (should be let/const)
rg -c "^\s*var\s+" -g '*.{js,ts,jsx,tsx}' -g '!node_modules' 2>/dev/null | sort -t: -k2 -rn | head -10JavaScript: callback hell (nested callbacks)
rg -c "function\s*\(" -g '*.{js,ts}' -g '!node_modules' 2>/dev/null | sort -t: -k2 -rn | head -10Python: old-style string formatting
rg -c '% ["\x27(]' -g '*.py' -g '!vendor' 2>/dev/null | sort -t: -k2 -rn | head -10Python: bare except
rg -n "except:" -g '*.py' -g '!vendor' 2>/dev/nullDeprecated React patterns
rg -n "componentWillMount|componentWillReceiveProps|componentWillUpdate|React\.createClass|mixins\s*:" \
-g '*.{jsx,tsx,js,ts}' -g '!node_modules' 2>/dev/null
#### Step 4: Detect Missing or Weak Tests
# Test file ratio
SRC_COUNT=$(find . -type f \( -name "*.ts" -o -name "*.js" -o -name "*.py" -o -name "*.go" \) \
-not -path '*/node_modules/*' -not -path '*/vendor/*' -not -path '*/test*' -not -path '*/__test*' \
-not -path '*/*.test.*' -not -path '*/*.spec.*' -not -path '*/dist/*' | wc -l)
TEST_COUNT=$(find . -type f \( -name "*.test.*" -o -name "*.spec.*" -o -name "test_*" -o -name "*_test.*" \) \
-not -path '*/node_modules/*' | wc -l)
echo "Source files: $SRC_COUNT, Test files: $TEST_COUNT, Ratio: $(echo "scale=1; $TEST_COUNT * 100 / ($SRC_COUNT + 1)" | bc)%"Source files with no corresponding test
find . -type f -name "*.ts" -not -name "*.test.*" -not -name "*.spec.*" \
-not -path '*/node_modules/*' -not -path '*/dist/*' | while read f; do
BASE=$(basename "$f" .ts)
if ! find . -type f \( -name "${BASE}.test.ts" -o -name "${BASE}.spec.ts" -o -name "test_${BASE}*" \) \
-not -path '*/node_modules/*' 2>/dev/null | grep -q .; then
echo "NO TEST: $f"
fi
done | head -20
#### Step 5: Detect Dependency Issues
# Node.js: outdated dependencies
npm outdated 2>/dev/null || true
Check for deprecated packages in package.json
cat package.json 2>/dev/null | python3 -c "
import json, sys
try:
d = json.load(sys.stdin)
deps = {d.get('dependencies',{}), d.get('devDependencies',{})}
deprecated = ['request', 'node-uuid', 'nomnom', 'optimist', 'jade', 'istanbul', 'coffee-script', 'bower', 'grunt']
for pkg in deprecated:
if pkg in deps:
print(f'DEPRECATED: {pkg}@{deps[pkg]}')
except: pass
"Python: check requirements age
cat requirements.txt 2>/dev/null | head -30
pip list --outdated 2>/dev/null | head -20Go: check go.sum for old versions
cat go.sum 2>/dev/null | wc -l
#### Step 6: Detect Code Duplication Indicators
# Find suspiciously similar file names (copy-paste indicators)
find . -type f -name "*.ts" -not -path '*/node_modules/*' -not -path '*/dist/*' | \
xargs -I{} basename {} | sort | uniq -dFind repeated import patterns (same large import block = shared code candidate)
rg -c "^import" -g '*.{ts,js,tsx,jsx}' -g '!node_modules' 2>/dev/null | \
sort -t: -k2 -rn | head -10Find files with very similar line counts (heuristic for copies)
find . -type f \( -name "*.ts" -o -name "*.js" \) \
-not -path '*/node_modules/*' -not -path '*/dist/*' \
-exec wc -l {} + 2>/dev/null | sort -n | awk '{print $1}' | uniq -d | head -5
#### Step 7: Generate Report
Analyze all findings with AI reasoning. For each debt item, assess:
Produce a prioritized report:
# Tech Debt Report — [project name]
Generated: [date]Summary
Total debt items: N
Critical (fix now): N
High (next sprint): N
Medium (backlog): N
Low (opportunistic): N Critical Items
1. [item] — Risk: critical | Effort: S | Impact: ...
Why: [AI reasoning about the risk]
Fix: [specific remediation steps]High Priority Items
...Metrics
TODO/FIXME count: N (N are >6 months old)
Test coverage ratio: N%
Files >500 lines: N
Deprecated dependencies: N
Code duplication indicators: N hotspots
2. hotspots — Complexity Hotspot Map
Run Steps 2 and 6 only. Output the top 10 files that are:
# Git churn — most frequently modified files in last 90 days
git log --since="90 days ago" --name-only --pretty=format: 2>/dev/null | \
grep -v '^$' | sort | uniq -c | sort -rn | head -20
Cross-reference size × churn × nesting to find the "burning" hotspots — large, complex files that change often are the highest-ROI refactoring targets.
3. todos — TODO/FIXME Audit
Run Step 1 only. Group by file, show git blame age for each, flag ancient ones.
Output format:
[CRITICAL] path/to/file.ts:42 — HACK: workaround for API bug (author, 2024-03-15)
[MEDIUM] path/to/file.ts:87 — TODO: add validation (author, 2025-11-02)
[LOW] path/to/other.py:12 — TODO: optimize later (author, 2026-04-01)
4. deps — Dependency Health
Run Step 5 only. Show:
5. tests — Test Coverage Gaps
Run Step 4 only. List source files without corresponding tests, sorted by: 1. Size (larger untested files = higher risk) 2. Git churn (frequently changed untested files = highest risk)
Output Formats
{summary, items: [{category, severity, file, line, message, effort, fix}]}CI Integration
Exit codes:
Use with --max-critical 0 --max-high 10 to set thresholds.