소스 정보
- 저장소
- majiayu000/claude-skill-registry
- 최근 소스 활동
- 2026년 4월 20일 18:49
- 감지된 SKILL.md 언어
- 영어
- 스타
- 543
- 포크
- 85
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/majiayu000/claude-skill-registry --skill add-manual-debt명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | add-manual-debt |
| description | Manually add a technical debt item to MASTER_DEBT.jsonl |
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.
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
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... |
# Verify the file exists
ls -la {file}
If file doesn't exist, ask user to correct the path.
# Check if line number is valid
wc -l {file}
If line exceeds file length, warn user.
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]
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:
node scripts/debt/generate-views.js
✅ 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
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 | 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 |
security - Auth, input validation, OWASPperformance - Load times, queries, cachingcode-quality - Types, patterns, hygienedocumentation - README, API docs, commentsrefactoring - Tech debt, complexity, DRYprocess - CI/CD, testing, workflowssync-sonarcloud-debt - Import from SonarCloudadd-deferred-debt - Add from PR reviewsverify-technical-debt - Verify items in queueSOC 직업 분류 기준