agentsclimarketplace

Tech debt tracker

Skill DROOdotFOO/agent-skills/skills/tech-debt-tracker

Agent skills, autonomous agents, and MCP-companions for programming

Install
npx -y skills add DROOdotFOO/agent-skills --skill tech-debt-tracker

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Automated tech debt scanning, classification, and cost-of-delay prioritization. TRIGGER when: user asks to find tech debt, audit code quality or code health, prioritize refactoring, track debt trends, identify cleanup candidates, or assess where to invest engineering effort; user runs /tech-debt or /debt-scan. DO NOT TRIGGER when: writing new features, doing code review (use code-review skill), debugging specific bugs.

SKILL.md

3.0 KB, as published. Nobody here has run it

Tech Debt Tracker Skill

Systematic tech debt management: scan for debt signals, classify by type, prioritize using cost-of-delay, and track trends over time.

Workflow

  1. Scan -- Identify debt signals across the codebase. See debt-signals.md.
  2. Classify -- Categorize each finding (code debt, design debt, test debt, dependency debt, documentation debt).
  3. Prioritize -- Rank findings using cost-of-delay frameworks. See prioritization.md.
  4. Report -- Generate a debt inventory with actionable recommendations.
  5. Track -- Compare against previous scans to measure debt trajectory (increasing, stable, decreasing).

Debt Classification

TypeExamples
CodeLong functions, deep nesting, duplicated logic
DesignTight coupling, missing abstractions, god objects
TestMissing coverage, flaky tests, no edge cases
DependencyOutdated packages, deprecated APIs, pinned EOL
DocumentationStale comments, missing API docs, wrong examples

Output Format

[DEBT] type=Code severity=HIGH file:line
Signal: Function exceeds 80 lines with cyclomatic complexity 14
Cost-of-delay: Blocks feature X, increases bug rate in module Y
Recommendation: Extract into 3 focused functions by responsibility
Priority: STRATEGIC (high value, high effort)

End with a summary: total debt items by type, priority distribution, top 5 recommendations, and trend direction if historical data exists.

What You Get

  • A debt inventory listing every finding with type, severity, file location, and cost-of-delay assessment
  • Priority rankings using a strategic/tactical matrix so you know which debt to pay down first
  • A summary with totals by type, priority distribution, top 5 recommendations, and trend direction versus prior scans

Sub-files

FileContent
debt-signals.mdWhat to scan for across languages
prioritization.mdCost-of-delay frameworks, priority matrix

See also

  • refactoring-strategy -- once you know what debt to pay, this skill says how to pay it safely

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.