소스 정보
- 저장소
- 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-deferred-debt명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | add-deferred-debt |
| description | Add deferred technical debt items identified during PR review |
Purpose: Track technical debt items identified during PR review that were deferred (not fixed in the current PR).
When to Use: During or after PR review when you identify issues that should be tracked but won't be fixed immediately.
This skill creates a tracked debt item from PR review findings. Items are tagged with the PR number for traceability.
Output Location: docs/technical-debt/MASTER_DEBT.jsonl
Use during PR review when:
Do NOT defer if:
Collect from the user or current context:
| Field | Required | Description | Example |
|---|---|---|---|
pr_number | Yes | PR number | 325 |
file | Yes | File path | components/auth/login.tsx |
line | Yes | Line number | 145 |
title | Yes | Short description | Missing input validation |
severity | Yes | S1, S2, or S3 (NOT S0) | S2 |
category | Yes | security, performance, etc. | security |
reason | Yes | Why deferred (out of scope, etc.) | Pre-existing issue |
⚠️ S0 items cannot be deferred!
If this is truly critical, it must be fixed before PR merges.
Options:
[1] Downgrade to S1 and defer
[2] Block PR until fixed
[3] Cancel deferral
📋 Deferred Debt Item Preview
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
PR: #325
ID: DEBT-XXXX (auto-assigned)
Source: PR-325-001
File: components/auth/login.tsx:145
Severity: S2 (Medium)
Category: security
Title: Missing input validation
Reason: Pre-existing issue, out of scope for this PR
Confirm? [Y/n]
node scripts/debt/intake-pr-deferred.js \
--pr 325 \
--file "components/auth/login.tsx" \
--line 145 \
--title "Missing input validation" \
--severity S2 \
--category security \
--reason "Pre-existing issue, out of scope for this PR"
Script behavior:
PR-{number}-{sequence}node scripts/debt/generate-views.js
✅ Deferred Debt Item Added
ID: DEBT-0892
PR: #325
File: components/auth/login.tsx:145
Severity: S2
Status: NEW (from PR review)
📄 Updated files:
- docs/technical-debt/MASTER_DEBT.jsonl
- docs/technical-debt/views/verification-queue.md
💡 Reminder:
- Add to PR description: "Defers: DEBT-0892"
- Item will appear in next verification batch
For multiple items in one PR:
# Run for each item
node scripts/debt/intake-pr-deferred.js --pr 325 --file "file1.tsx" ...
node scripts/debt/intake-pr-deferred.js --pr 325 --file "file2.tsx" ...
# Or use batch mode (future enhancement)
node scripts/debt/intake-pr-deferred.js --pr 325 --batch items.json
After adding deferred items, update the PR description:
## Technical Debt
Defers: DEBT-0892, DEBT-0893
**Reason:** Pre-existing issues identified during review, out of scope for this
PR. Tracked for future cleanup.
The pr-review skill includes a mandatory section for deferred items:
## Deferred Items (Mandatory Section)
If ANY items are deferred during review:
1. List each with: file, line, severity, description
2. Run `add-deferred-debt` skill for each item
3. Verify items appear in MASTER_DEBT.jsonl
**No PR review is complete until deferred items are tracked.**
sync-sonarcloud-debt - Import from SonarCloudadd-manual-debt - Add items manuallyverify-technical-debt - Verify items in queuepr-review - Full PR review workflow