buddy
nWave concierge — ask any question about methodology, project state, commands, migration, or troubleshooting. Read-only, contextual answers.
Fast-forwards through remaining waves end-to-end without stopping for review between waves.
> /plugin marketplace add nWave-ai/nWave > /plugin install nw@nwave-marketplace
How it fires
How this command gets triggered: by you, by Claude, or both.
/fast-forwardContext preview
What this command does when you run it.
Fast-forwards through remaining waves end-to-end without stopping for review between waves.
description: "Fast-forwards through remaining waves end-to-end without stopping for review between waves." argument-hint: '[feature-description] - Optional: --from=[discuss|design|devops|distill|deliver]' disable-model-invocation: true
**Wave**: CROSS_WAVE (entry point) | **Agent**: Main Instance (self — orchestrator) | **Command**: `/nw-fast-forward`
Chains remaining waves end-to-end after single user confirmation. Detects current progress (like `/nw-continue`), shows planned sequence, runs each wave automatically — DISCUSS > DESIGN > DEVOPS > DISTILL > DELIVER — without stopping between waves.
You (main Claude instance) run this orchestration directly. Each wave invoked by reading its task file.
**DISCOVER skipped by default** — requires interactive customer interview data that cannot be auto-generated. Use `--from=discover` to include.
Accept: feature description (new project)|`--from` flag with optional feature ID|no arguments (auto-detect from `docs/feature/`)
**New project (description provided):** Derive feature ID per `~/.claude/nWave/skills/common/wizard-shared-rules.md` (Feature ID Derivation). Show derived ID, allow override via AskUserQuestion. Create `docs/feature/{feature-id}/`.
**Existing project (no description):** Scan `docs/feature/` (same as `/nw-continue` Step 1-2). If multiple, ask user to select.
Check wave artifacts using Wave Detection Rules in `~/.claude/nWave/skills/common/wizard-shared-rules.md`.
Default order (DISCOVER skipped): DISCUSS > DESIGN > DEVOPS > DISTILL > DELIVER
**With `--from` flag:** Validate prerequisite artifacts exist. If missing: "Cannot start from {wave} — {missing} artifacts missing. Run `/nw-continue` to fill the gap." Start from specified wave.
**Without `--from`:** Find first incomplete wave, start from there.
Feature: {feature-id}
Fast-forward plan:
1. DISCUSS — Define requirements and user stories
2. DESIGN — Architecture and technology selection
3. DEVOPS — Platform and infrastructure readiness
4. DISTILL — Acceptance tests (Given-When-Then)
5. DELIVER — TDD implementation
This will run all 5 waves without stopping for review.If some waves complete, show as skipped:
Fast-forward plan:
✓ DISCUSS — complete
✓ DESIGN — complete
1. DEVOPS — Platform and infrastructure readiness
2. DISTILL — Acceptance tests (Given-When-Then)
3. DELIVER — TDD implementation
3 waves will execute without stopping.One-time confirmation via AskUserQuestion.
For each wave: 1. Read task file (`nWave/tasks/nw/{wave}.md`) 2. Follow instructions — invoke appropriate agent via Task tool 3. Wait for completion 4. Verify output artifacts exist (wave detection rules) 5. Missing artifacts after wave = failure 6. Proceed to next wave
Between waves show brief status:
✓ DISCUSS complete — user-stories.md, story-map.md created Starting DESIGN...
If any wave fails: 1. **Stop immediately** — do not proceed 2. Show error:
✗ {WAVE} failed
Error: [details]
Progress saved. Run /nw-continue to resume from {WAVE}.3. Suggest `/nw-continue` for manual resume 4. Do NOT retry automatically
✓ Fast-forward complete for {feature-id}
DISCUSS ● complete
DESIGN ● complete
DEVOPS ● complete
DISTILL ● complete
DELIVER ● complete
All acceptance tests pass. Feature is ready.| Error | Response | |-------|----------| | No description and no existing projects | Suggest `/nw-new` | | `--from` with missing prerequisites | List missing artifacts, refuse | | Wave failure mid-pipeline | Stop, show error, suggest `/nw-continue` | | Artifact verification fails after wave | Treat as wave failure | | Name conflict on new project | Same as `/nw-new` conflict handling |
The invoked agent MUST create a task list from its workflow phases at the start of execution using TaskCreate. Each phase becomes a task with the gate condition as completion criterion. Mark tasks in_progress when starting each phase and completed when the gate passes. This gives the user real-time visibility into progress.
/nw-fast-forward "Upgrade authentication to OAuth2"
Wizard derives `oauth2-upgrade`, detects no prior artifacts, shows plan: DISCUSS > DESIGN > DEVOPS > DISTILL > DELIVER. User confirms. All 5 waves execute in sequence.
/nw-fast-forward
Wizard finds `notification-service` with DISCUSS complete. Shows plan: DESIGN > DEVOPS > DISTILL > DELIVER. User confirms. 4 waves execute.
/nw-fast-forward --from=distill rate-limiting
Wizard validates DESIGN artifacts exist for `rate-limiting`. Shows plan: DISTILL > DELIVER. User confirms. 2 waves execute.
/nw-fast-forward "Add payment processing"
DISCUSS succeeds, DESIGN succeeds, DEVOPS fails. Pipeline stops. Shows error and suggests `/nw-continue` to resume from DEVOPS.
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
nWave concierge — ask any question about methodology, project state, commands, migration, or troubleshooting. Read-only, contextual answers.
Bug fix workflow: root cause analysis → user review → regression test + fix via TDD
Detects current wave progress for a feature and resumes at the next step. Scans docs/feature/ for artifacts.
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…
Designs system architecture with C4 diagrams and technology selection. Use when defining component boundaries, choosing tech stacks, or creating architecture…
Designs CI/CD pipelines, infrastructure, observability, and deployment strategy. Use when preparing platform readiness for a feature.