nw-ab-critique-dimensi…
Review dimensions for validating agent quality - template compliance, safety, testing, and priority validation
Bug fix workflow: root cause analysis → user review → regression test + fix via TDD
$ npx -y skills add nWave-ai/nWave --skill nw-bugfix --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/nw-bugfixContext preview
The summary Claude sees to decide when to auto-load this skill.
Bug fix workflow: root cause analysis → user review → regression test + fix via TDD
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`:
Invoke @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 fixAfter 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: 1. "Does this root cause match your understanding?" 2. "Do you approve the proposed fix direction?" 3. "Any additional constraints or context?"
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:**
1. Derive feature-id: `fix-{kebab-case-bug-summary}` (max 5 words) 2. Create `docs/feature/{feature-id}/deliver/` directory 3. Prepare RCA context from Phase 1 output (root cause, files affected, proposed fix)
Delegate to `/nw-deliver`:
/nw-deliver "fix-{bug-summary}"The deliver orchestrator builds a minimal two-step roadmap:
**Step 01-01: Regression test (RED)**
**Step 01-02: Fix implementation (GREEN)**
The crafter handles the TDD cycle (3-phase canon RED → GREEN → COMMIT per ADR-025) with DES monitoring.
/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.
AI agents that guide you from idea to working code, with human judgment at every gate. nWave runs inside Claude Code. It breaks feature delivery into seven waves (discover, diverge, discuss, design, devops, distill, deliver).
Repo: nWave-ai/nWave
Review dimensions for validating agent quality - template compliance, safety, testing, and priority validation
Review dimensions for validating agent quality - template compliance, safety, testing, and priority validation
Review dimensions for acceptance test quality - happy path bias, GWT compliance, business language purity, coverage completeness, walking skeleton…
Detailed 5-phase workflow for creating agents - from requirements analysis through validation and iterative refinement
5-layer testing approach for agent validation including adversarial testing, security validation, and prompt injection resistance
Architectural style selection decision matrices, trade-off analysis, structural enforcement rules, and combination patterns. Load when choosing or evaluating…