| name | check-code-complete |
| description | Verify code has no TODOs, stub implementations, or dead code before merge |
| allowed-tools | Bash, Read, Glob, Grep |
Check Code Complete Skill
Scan codebase for incomplete work that shouldn't be merged.
Usage
/check-code-complete
/check-code-complete ./src
What Gets Checked
| Category | Examples |
|---|
| TODOs | TODO:, FIXME:, HACK:, XXX: |
| Stubs | Empty functions, throw "not implemented" |
| Dead code | Commented blocks, unused imports/vars |
| Debug artifacts | console.log, debugger, .only() |
Output
List of issues found with file:line references and summary count.
Runbook
Full procedure: runbook/check-code-complete.md in your knowledge base.