mirror of
https://github.com/alirezarezvani/claude-skills.git
synced 2026-09-14 23:21:05 +00:00
- 17 root agents gained 'Use when...' trigger descriptions (<=1024 chars); cs-product-analyst placeholder body rewritten around real tools - 21 commands had invalid YAML frontmatter fixed (unquoted inner colons); 14 commands gained argument-hint; 6 duplicate commands marked with canonical-copy sync comments - /prd: forcing questions + refuse-to-draft gate + required-sections checklist - /sprint-plan: capacity math + carry-over check + definition-of-ready gate - /tdd: rebuilt around the real tdd-guide assets with smoke-tested snippets - cs-senior-engineer repointed from retired release-manager to changelog-generator https://claude.ai/code/session_019AJddAL1NADWMXsy1qNPQF
33 lines
1.3 KiB
Markdown
33 lines
1.3 KiB
Markdown
---
|
|
name: tech-debt
|
|
description: "Scan, prioritize, and report technical debt. Usage: /tech-debt <scan|prioritize|report> [options]"
|
|
argument-hint: "<scan|prioritize|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/skills/tech-debt-tracker/scripts/debt_scanner.py` — Scan for debt patterns (`debt_scanner.py <directory> [--format json] [--output file]`)
|
|
- `engineering/skills/tech-debt-tracker/scripts/debt_prioritizer.py` — Prioritize debt backlog (`debt_prioritizer.py <inventory.json> [--framework cost_of_delay|wsjf|rice] [--format json]`)
|
|
- `engineering/skills/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/skills/tech-debt-tracker/SKILL.md`
|