mirror of
https://github.com/alirezarezvani/claude-skills.git
synced 2026-08-28 04:24:58 +00:00
- Resolve conflicts: keep redesigned skills index, take dev's cs-aeo link fix, union of DOMAIN_SEO_CONTEXT entries in generate-docs.py - Regenerate catalog on the merged tree (dev's agent/command description updates, removed ai-seo/release-manager/command-guide, restructured universal-scraping-architect) - Update counters to post-merge truth from scripts/derive_counters.py: 345 skills, 78 plugins (14 bundles + 64 standalone), 570+ Python tools - Add redirects for upstream-removed pages (ai-seo -> aeo, release-manager -> changelog-generator, command-guide -> engineering index) - Add compliance-os bundle to bundle tables; rebuild 78-plugin table from marketplace.json - Teach the generator to rewrite repo-root-relative source links to GitHub URLs — mkdocs build --strict now passes with zero warnings https://claude.ai/code/session_015bYZ97nV4oRb3LbxCRFVcP
1.5 KiB
1.5 KiB
| title | description |
|---|---|
| /tech-debt — Slash Command for AI Coding Agents | Scan, prioritize, and report technical debt. Usage: /tech-debt <scan|prioritize|report> [options]. Slash command for Claude Code, Codex CLI, Gemini CLI. |
/tech-debt
:material-console: Slash Command
:material-github: Source
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