ワンクリックで
check-debt
Inventory technical debt across the codebase
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Inventory technical debt across the codebase
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
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]