بنقرة واحدة
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 ويثبّتها لك.
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
استنادا إلى تصنيف SOC المهني
| 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]