- Extended generate-docs.py to auto-generate agent and command documentation pages - Added extract_subtitle() for meaningful command descriptions in index - Added Agents nav section (14 entries) and Commands nav section (12 entries) to mkdocs.yml - Updated docs/index.md: 170 skills, 237 tools, 14 agents, 12 commands, Gemini CLI - Updated docs/getting-started.md: Gemini CLI tab, 237 tools, fixed brand_voice path, new FAQs - Regenerated all 203 docs pages (177 skills + 14 agents + 12 commands) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
40 lines
1.3 KiB
Markdown
40 lines
1.3 KiB
Markdown
---
|
|
title: "/tech-debt"
|
|
description: "/tech-debt — Claude Code slash command."
|
|
---
|
|
|
|
# /tech-debt
|
|
|
|
**Type:** Slash Command | **Source:** [`commands/tech-debt.md`](https://github.com/alirezarezvani/claude-skills/tree/main/commands/tech-debt.md)
|
|
|
|
---
|
|
|
|
|
|
# /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`
|