with one click
check-debt
Inventory technical debt across the codebase
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Inventory technical debt across the codebase
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Audit documentation for drift, dead links, and stale content
Assess alignment with the current roadmap phase
Spot-check that code matches ADR invariants
Analyze test quality and coverage patterns
Check code pattern consistency across the codebase
Run all project health checks and produce a unified report
| name | check-debt |
| description | Inventory technical debt across the codebase |
| user_invocable | true |
| context | fork |
| agent | Explore |
Scan for technical debt indicators and prioritize them by impact.
Search all .go files for debt markers:
TODO, FIXME, HACK, XXX, NOCOMMITFind functions exceeding 100 lines (refactoring candidates):
func declarations and measure line countsSummarize open issues by effort/value labels:
gh issue list --state open --json number,title,labelsCheck for packages below the 85% threshold:
go test -cover ./... and parse outputReview IDEAS.md for items that may have been implemented:
## Technical Debt Inventory
### Summary
| Category | Count | Severity |
|----------|-------|----------|
| TODO/FIXME comments | ... | ... |
| Long functions | ... | ... |
| Open issues | ... | ... |
| Coverage gaps | ... | ... |
| Stale ideas | ... | ... |
### Details
[Findings grouped by category]
### Top 5 Items to Address
[Prioritized by impact and effort]