add-manual-debt
Manually add a technical debt item to MASTER_DEBT.jsonl
Best use case
add-manual-debt is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Manually add a technical debt item to MASTER_DEBT.jsonl
Teams using add-manual-debt should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/add-manual-debt/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How add-manual-debt Compares
| Feature / Agent | add-manual-debt | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Manually add a technical debt item to MASTER_DEBT.jsonl
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Add Manual Technical Debt
**Purpose:** Add ad-hoc technical debt items discovered outside formal audits.
**When to Use:** When you discover tech debt during development that should be
tracked but wasn't found by automated tools.
---
## Overview
This skill guides you through adding a single technical debt item to the
canonical tracker with proper validation and ID assignment.
**Output Location:** `docs/technical-debt/MASTER_DEBT.jsonl`
---
## Execution Steps
### Step 1: Gather Required Information
Collect the following from the user (or context):
| Field | Required | Description | Example |
| ------------- | -------- | ----------------------------------------------- | --------------------------- |
| `file` | Yes | File path (relative to repo root) | `components/auth/login.tsx` |
| `line` | Yes | Line number | `145` |
| `title` | Yes | Short description (< 80 chars) | `Missing error boundary` |
| `severity` | Yes | S0 (Critical), S1 (High), S2 (Medium), S3 (Low) | `S2` |
| `category` | Yes | security, performance, code-quality, docs, etc. | `code-quality` |
| `effort` | No | E0 (<30m), E1 (<2h), E2 (<8h), E3 (>8h) | `E1` |
| `description` | No | Detailed description | `Component lacks error...` |
### Step 2: Validate File Exists
```bash
# Verify the file exists
ls -la {file}
```
If file doesn't exist, ask user to correct the path.
### Step 3: Validate Line Number
```bash
# Check if line number is valid
wc -l {file}
```
If line exceeds file length, warn user.
### Step 4: Preview Item
Show user what will be added:
```
📋 Technical Debt Item Preview
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ID: DEBT-XXXX (auto-assigned)
Source: manual
File: components/auth/login.tsx:145
Severity: S2 (Medium)
Category: code-quality
Effort: E1 (<2h)
Title: Missing error boundary
Description: Component lacks error boundary, crashes propagate to parent
Confirm? [Y/n]
```
### Step 5: Run Intake Script
```bash
node scripts/debt/intake-manual.js \
--file "components/auth/login.tsx" \
--line 145 \
--title "Missing error boundary" \
--severity S2 \
--category code-quality \
--effort E1 \
--description "Component lacks error boundary, crashes propagate to parent"
```
**Script behavior:**
1. Validates all inputs
2. Checks for duplicates (same file:line)
3. Assigns next available DEBT-XXXX ID
4. Appends to MASTER_DEBT.jsonl
5. Logs to intake-log.jsonl
### Step 6: Regenerate Views
```bash
node scripts/debt/generate-views.js
```
### Step 7: Confirm Success
```
✅ Technical Debt Item Added
ID: DEBT-0891
File: components/auth/login.tsx:145
Severity: S2
Status: NEW (pending verification)
📄 Updated files:
- docs/technical-debt/MASTER_DEBT.jsonl
- docs/technical-debt/views/verification-queue.md
💡 Next steps:
- Item is in verification queue (status: NEW)
- Run 'verify-technical-debt' to verify this item
- Or manually update status to VERIFIED after confirming issue exists
```
---
## Duplicate Detection
If a similar item already exists:
```
⚠️ Potential Duplicate Detected
Existing item:
ID: DEBT-0234
File: components/auth/login.tsx:142
Title: Missing error handling in login
Your item:
File: components/auth/login.tsx:145
Title: Missing error boundary
Options:
[A] Add anyway (different issue)
[M] Merge with existing (update DEBT-0234)
[C] Cancel
```
---
## Severity Guidelines
| Severity | Criteria |
| -------- | ------------------------------------------------ |
| **S0** | Security vulnerability, data loss risk, crash |
| **S1** | Major functionality broken, significant perf hit |
| **S2** | Code smell, minor bug, moderate tech debt |
| **S3** | Style issue, documentation, nice-to-have cleanup |
---
## Category Options
- `security` - Auth, input validation, OWASP
- `performance` - Load times, queries, caching
- `code-quality` - Types, patterns, hygiene
- `documentation` - README, API docs, comments
- `refactoring` - Tech debt, complexity, DRY
- `process` - CI/CD, testing, workflows
---
## Related
- `sync-sonarcloud-debt` - Import from SonarCloud
- `add-deferred-debt` - Add from PR reviews
- `verify-technical-debt` - Verify items in queueRelated Skills
add-deferred-debt
Add deferred technical debt items identified during PR review
ux
This AI agent skill provides comprehensive guidance for creating professional and insightful User Experience (UX) designs, covering user research, information architecture, interaction design, visual guidance, and usability evaluation. It aims to produce actionable, user-centered solutions that avoid generic AI aesthetics.
vly-money
Generate crypto payment links for supported tokens and networks, manage access to X402 payment-protected content, and provide direct access to the vly.money wallet interface.
ontopo
An AI agent skill to search for Israeli restaurants, check table availability, view menus, and retrieve booking links via the Ontopo platform, acting as an unofficial interface to its data.
lets-go-rss
A lightweight, full-platform RSS subscription manager that aggregates content from YouTube, Vimeo, Behance, Twitter/X, and Chinese platforms like Bilibili, Weibo, and Douyin, featuring deduplication and AI smart classification.
chrome-debug
This skill empowers AI agents to debug web applications and inspect browser behavior using the Chrome DevTools Protocol (CDP), offering both collaborative (headful) and automated (headless) modes.
tech-blog
Generates comprehensive technical blog posts, offering detailed explanations of system internals, architecture, and implementation, either through source code analysis or document-driven research.
whisper-transcribe
Transcribes audio and video files to text using OpenAI's Whisper CLI, enhanced with contextual grounding from local markdown files for improved accuracy.
astro
This skill provides essential Astro framework patterns, focusing on server-side rendering (SSR), static site generation (SSG), middleware, and TypeScript best practices. It helps AI agents implement secure authentication, manage API routes, and debug rendering behaviors within Astro projects.
modal-deployment
Run Python code in the cloud with serverless containers, GPUs, and autoscaling using Modal. This skill enables agents to generate code for deploying ML models, running batch jobs, serving APIs, and scaling compute-intensive workloads.
thor-skills
An entry point and router for AI agents to manage various THOR-related cybersecurity tasks, including running scans, analyzing logs, troubleshooting, and maintenance.
grail-miner
This skill assists in setting up, managing, and optimizing Grail miners on Bittensor Subnet 81, handling tasks like environment configuration, R2 storage, model checkpoint management, and performance tuning.