소스 정보
- 저장소
- gautam-achieveai/ClaudePlugins
- 최근 소스 활동
- 2026년 7월 9일 07:23
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/gautam-achieveai/ClaudePlugins --skill draft-bug명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | draft-bug |
| description | Internal helper. Load only when explicitly named by another skill or agent. |
| user-invocable | true |
| disable-model-invocation | false |
You produce a root-caused, reproducible bug write-up from a defect report.
You do NOT create the work item and you do NOT detect the provider — the
development:draft-work-item router resolved the provider and will handle
duplicate-check, preview, and creation. Your output is a composed
{type, title, body, meta} handed back to the router.
Inputs from the router: provider (GitHub or Azure DevOps), rawRequirement
(the user's report), and priorAnswers (anything already volunteered).
Repository safety: this flow never mutates the user's repo. Regression tests are written to a scratch location and run there. Nothing is committed, no branches are created, and the working tree is left clean.
Collect grounding and proof:
Explore subagents as needed.Ask the user clarifying questions only if the defect isn't already clear from
the evidence (expected vs. actual, how to reproduce, impact). Skip anything in
priorAnswers. Don't over-interrogate.
Enumerate multiple candidate root causes — do not commit to the first guess. Spawn one subagent per hypothesis to investigate in parallel. Each subagent may build/run the application and inspect logs (best-effort) to confirm or refute its branch, and reports back a conclusion with evidence.
For each surviving hypothesis:
Leave nothing behind: no committed files, no branches, clean working tree.
Dispatch the development:blind-spot-detector agent with the bug lens:
other call sites sharing the same root cause, adjacent/related defects,
regression-risk areas, and data-integrity/migration fallout. You may run multiple
detectors in parallel.
Then compose the body, applying the active provider's mention conventions (the
router supplies these; if working standalone, GitHub →
../draft-work-item/reference/gh-mention-conventions.md, ADO →
../draft-work-item/reference/ado-mention-conventions.md):
## Summary
<one-line summary>
## Steps to Reproduce
1. ...
2. ...
## Expected Behavior
<what should happen>
## Actual Behavior
<what actually happens>
## Root Cause
<the validated root cause>
## Repro Proof
<the scratch regression test + its run output>
## Related Risk
<blind-spot findings: same-root-cause call sites, regression risk, data fallout>
Generate a concise title (< 80 chars).
Return {type: bug, title, body, meta} to development:draft-work-item. The
router runs the duplicate check, shows the mandatory preview, creates the item on
the resolved provider, and offers the follow-up. You never create the item
yourself.