Files
claude-skills-reference/commands/tech-debt.md
Reza Rezvani 670a1a61f3 fix: audit and repair all plugins, agents, and commands
- Fix 12 command files: correct CLI arg syntax, script paths, and usage docs
- Fix 3 agents with broken script/reference paths (cs-content-creator,
  cs-demand-gen-specialist, cs-financial-analyst)
- Add complete YAML frontmatter to 5 agents (cs-growth-strategist,
  cs-engineering-lead, cs-senior-engineer, cs-financial-analyst,
  cs-quality-regulatory)
- Fix cs-ceo-advisor related agent path
- Update marketplace.json metadata counts (224 tools, 341 refs, 14 agents,
  12 commands)

Verified: all 19 scripts pass --help, all 14 agent paths resolve, mkdocs
builds clean.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-10 01:17:31 +01:00

1.2 KiB

name: tech-debt description: Score, track, and prioritize technical debt. Usage: /tech-debt <scan|score|report> [options]

/tech-debt

Scan codebases for technical debt, score severity, and generate prioritized remediation plans.

Usage

/tech-debt scan <project-dir>           Scan for debt indicators
/tech-debt prioritize <inventory.json>  Prioritize debt backlog
/tech-debt report <project-dir>         Full dashboard with trends

Examples

/tech-debt scan ./src
/tech-debt scan . --format json
/tech-debt report . --format json --output debt-report.json

Scripts

  • engineering/tech-debt-tracker/scripts/debt_scanner.py — Scan for debt patterns (debt_scanner.py <directory> [--format json] [--output file])
  • engineering/tech-debt-tracker/scripts/debt_prioritizer.py — Prioritize debt backlog (debt_prioritizer.py <inventory.json> [--framework cost_of_delay|wsjf|rice] [--format json])
  • engineering/tech-debt-tracker/scripts/debt_dashboard.py — Generate debt dashboard (debt_dashboard.py [files...] [--input-dir dir] [--period weekly|monthly|quarterly] [--format json])

Skill Reference

engineering/tech-debt-tracker/SKILL.md