在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用check-debt
星标4
分支2
更新时间2026年2月7日 18:06
Inventory technical debt across the codebase
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
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]