소스 정보
- 저장소
- nWave-ai/nWave
- 최근 소스 활동
- 2026년 6월 11일 04:35
- 감지된 SKILL.md 언어
- 영어
- 스타
- 594
- 포크
- 62
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/nWave-ai/nWave --skill nw-bugfix명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Cross-agent collaboration protocols, workflow handoff patterns, and commit message formats for TDD/Mikado/refactoring workflows
Orchestrates the full DELIVER wave end-to-end (roadmap > execute-all > finalize). Use when all prior waves are complete and the feature is ready for implementation.
Acceptance test creation methodology for the DISTILL wave. Domain knowledge for the acceptance designer agent: port-to-port principle, prior wave reading, wave-decision reconciliation, graceful degradation, and document back-propagation.
| name | nw-bugfix |
| description | Bug fix workflow: root cause analysis → user review → regression test + fix via TDD |
| user-invocable | true |
| argument-hint | [bug-description] - Describe the defect observed |
Wave: CROSS_WAVE Agents: Rex (nw-troubleshooter) → selected crafter (OOP or FP per project paradigm)
End-to-end bug fix pipeline: diagnose root cause, review findings with user, then deliver regression tests that fail with the bug and pass with the fix. Ensures every defect produces a test that prevents recurrence.
INPUT: "{bug-description}"
│
├─ Phase 1: Root Cause Analysis (@nw-troubleshooter)
│ └─ /nw-root-why "{bug-description}"
│ └─ Output: RCA document with root cause chain + fix proposal
│
├─ Phase 2: User Review (INTERACTIVE — STOP here)
│ └─ Present RCA findings to user
│ └─ User confirms root cause + approves fix direction
│ └─ If user rejects → refine RCA or stop
│
└─ Phase 3: Regression Test + Fix
└─ /nw-deliver "fix-{bug-id}" — roadmap-based bugfix flow
└─ Paradigm detection determines crafter (OOP or FP)
└─ Regression test (RED) → fix (GREEN) → verify (COMMIT)
Skill loading: The troubleshooter loads its skills from ~/.claude/skills/nw-{skill}/SKILL.md:
nw-five-whys-methodology — core investigation methodologynw-investigation-techniques — systematic debugging patternsnw-post-mortem-framework — structured incident analysisInvoke @nw-troubleshooter via Agent tool:
Execute *investigate-root-cause for the following defect:
{bug-description}
Configuration:
- investigation_depth: 5
- multi_causal: true
- evidence_required: true
Produce:
1. Root cause chain (5 Whys with evidence at each level)
2. Contributing factors
3. Proposed fix with specific code changes
4. Files affected
5. Risk assessment of the fix
After the troubleshooter returns, present findings to the user. Include:
STOP and wait for user confirmation before proceeding to Phase 3.
Present the RCA findings and ask:
If user rejects:
If user approves → proceed to Phase 3.
Phase 3 dispatches the fix through the roadmap-based bugfix flow. It does
paradigm detection (reads project CLAUDE.md for ## Development Paradigm),
crafter selection (@nw-software-crafter for OOP, @nw-functional-software-crafter
for FP), DES enforcement, and reads the rigor profile from
.nwave/des-config.json.
Preparation:
fix-{kebab-case-bug-summary} (max 5 words)docs/feature/{feature-id}/deliver/ directoryDelegate to /nw-deliver:
/nw-deliver "fix-{bug-summary}"
The deliver orchestrator builds a minimal two-step roadmap:
Step 01-01: Regression test (RED)
tests/regression/{component}/ or tests/bugs/test_bug_{description}.pyStep 01-02: Fix implementation (GREEN)
The crafter handles the TDD cycle (3-phase canon RED → GREEN → COMMIT per ADR-025) with DES monitoring.
fix(scope): description/nw-bugfix "DES hook crashes with FileNotFoundError when template schema is missing"
Phase 1: Rex traces to missing step-tdd-cycle-schema.json in plugin cache.
Phase 2: User confirms.
Phase 3: /nw-deliver "fix-missing-template-schema" → crafter writes test_bug_missing_template_schema.py (RED), adds fallback path resolution (GREEN), commits.
/nw-bugfix "Skills plugin reports success but installs zero files when source has nw-prefixed layout"
Phase 1: Rex traces to is_public_skill() returning False for all nw-prefixed names due to ownership map key mismatch.
Phase 2: User confirms.
Phase 3: /nw-deliver "fix-ownership-map-keys" → crafter writes regression test with nw-prefixed fixture (RED), fixes ownership map keys (GREEN), commits.
/nw-bugfix "Pipeline composition breaks when filter predicate returns None"
Phase 1: Rex traces to missing None guard in compose() function.
Phase 2: User confirms.
Phase 3: /nw-deliver "fix-compose-none-guard" → paradigm detected as FP → @nw-functional-software-crafter writes property-based test (RED), adds None guard (GREEN), commits.
/nw-deliver./nw-refactor, not here./nw-design before fixing./nw-deliver, which handles paradigm detection, DES enforcement, and rigor profile automatically.