NWave nw-buddy-command-catalog

All /nw-* commands — what they do, when to use them, which agent they invoke. For the buddy agent to help users pick the right command.

install
source · Clone the upstream repo
git clone https://github.com/nWave-ai/nWave
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/nWave-ai/nWave "$T" && mkdir -p ~/.claude/skills && cp -r "$T/nWave/skills/nw-buddy-command-catalog" ~/.claude/skills/nwave-ai-nwave-nw-buddy-command-catalog && rm -rf "$T"
manifest: nWave/skills/nw-buddy-command-catalog/SKILL.md
source content

Command Catalog

Wave Commands (run in order per feature)

CommandWaveAgentWhen to Use
/nw-discover
DISCOVERproduct-discoverer (Scout)Validate problem exists, customer interviews, opportunity mapping
/nw-diverge
DIVERGEdiverger (Flux)Evaluate multiple solution approaches before committing
/nw-discuss
DISCUSSproduct-owner (Luna)Define user stories, journeys, acceptance criteria
/nw-design
DESIGNsystem-designer, ddd-architect, solution-architectRoute to the right architect — system (scalability), domain (DDD), or application (components)
/nw-devops
DEVOPSplatform-architectCI/CD, infrastructure, observability, deployment strategy
/nw-distill
DISTILLacceptance-designerCreate executable acceptance tests (Given-When-Then)
/nw-deliver
DELIVERsoftware-crafterFull implementation: roadmap -> execute -> finalize

Routing Commands

CommandPurposeWhen to Use
/nw-new
Guided wizard for new featuresStarting something new — asks what you're building, recommends starting wave
/nw-continue
Resume in-progress featureReturning to a feature — detects progress, starts at next wave
/nw-fast-forward
Run remaining waves without pausingWhen you trust the agents to proceed without review between waves

DELIVER Inner Loop Commands (manual mode)

CommandPurposeWhen to Use
/nw-execute
Run single roadmap stepImplementing one step at a time (learning mode)
/nw-roadmap
Create implementation planPlanning steps before execution
/nw-review
Expert review of artifactsQuality check on roadmap, code, or step output
/nw-mutation-test
Test suite effectivenessAfter implementation — verifies tests catch real bugs
/nw-finalize
Archive completed featureAfter all steps pass — creates evolution document

Cross-Wave Commands (any time)

CommandAgentWhen to Use
/nw-research
researcher (Nova)Investigate technologies, patterns, decisions needing evidence
/nw-document
documentarist + researcherCreate DIVIO-compliant documentation (tutorial, how-to, reference, explanation)
/nw-diagram
solution-architectGenerate C4 architecture diagrams (Mermaid/PlantUML)
/nw-refactor
software-crafterSystematic refactoring using RPP levels L1-L6
/nw-bugfix
troubleshooter + crafterRoot cause analysis -> regression test -> fix via TDD
/nw-root-why
troubleshooterRoot cause analysis (5 Whys) without fix
/nw-hotspot
(self)Git change frequency analysis — find most-changed files
/nw-rigor
(self)Set quality-vs-token profile (lean/standard/thorough/exhaustive)
/nw-forge
agent-builder (Zeus)Create new specialized agents
/nw-mikado
software-crafterComplex refactoring roadmaps with visual tracking (experimental)
/nw-buddy
buddy (Guide)Ask any question about nWave — methodology, commands, project state

For the full authoritative command reference, read

docs/reference/commands/index.md
.

Common User Scenarios -> Command

User SaysRecommend
"I want to build something new"
/nw-new
(wizard) or
/nw-discover
(if problem unclear)
"I'm not sure which approach to take"
/nw-diverge
"I need user stories for this feature"
/nw-discuss
"How should I architect this?"
/nw-design
"I need to set up CI/CD"
/nw-devops
"I need acceptance tests"
/nw-distill
"I'm ready to implement"
/nw-deliver
"I want to continue my feature"
/nw-continue
"I need to research X"
/nw-research
"I need documentation"
/nw-document
"Something is broken"
/nw-bugfix
or
/nw-root-why
"My code needs cleanup"
/nw-refactor
"How good are my tests?"
/nw-mutation-test