<< All versions
Skill v1.0.1
currentAutomated scan100/100aj-geddes/useful-ai-prompts/technical-debt-assessment
5 files
──Details
PublishedMay 14, 2026 at 09:39 PM
Content Hashsha256:89be45fe595a3e78...
Git SHA3f5182cfd739
Bump Typepatch
──Files
Files (1 file, 2.0 KB)
SKILL.md2.0 KBactive
SKILL.md · 92 lines · 2.0 KB
version: "1.0.1" name: technical-debt-assessment description: > Assess, quantify, and prioritize technical debt using code analysis, metrics, and impact analysis. Use when planning refactoring, evaluating codebases, or making architectural decisions.
Technical Debt Assessment
Table of Contents
Overview
Systematically identify, measure, and manage technical debt to make informed decisions about code quality investments.
When to Use
- Legacy code evaluation
- Refactoring prioritization
- Sprint planning
- Code quality initiatives
- Acquisition due diligence
- Architectural decisions
Quick Start
Minimal working example:
typescript
interface DebtItem {id: string;title: string;description: string;category: "code" | "architecture" | "test" | "documentation" | "security";severity: "low" | "medium" | "high" | "critical";effort: number; // hoursimpact: number; // 1-10 scaleinterest: number; // cost per sprint if not fixed}class TechnicalDebtAssessment {private items: DebtItem[] = [];addDebtItem(item: DebtItem): void {this.items.push(item);}calculatePriority(item: DebtItem): number {const severityWeight = {low: 1,medium: 2,high: 3,critical: 4,};// ... (see reference guides for full implementation)
Reference Guides
Detailed implementations in the references/ directory:
| Guide | Contents | |
|---|---|---|
| Technical Debt Calculator | Technical Debt Calculator | |
| Code Quality Scanner | Code Quality Scanner |
Best Practices
✅ DO
- Quantify debt impact
- Prioritize by ROI
- Track debt over time
- Include debt in sprints
- Document debt decisions
- Set quality gates
❌ DON'T
- Ignore technical debt
- Fix everything at once
- Skip impact analysis
- Make emotional decisions