From nw
Guides CLI/TUI design via Apple LeanUX++: journey mapping, emotional arcs, ASCII prototypes, YAML schemas, Gherkin validation, and integration checks.
How this skill is triggered — by the user, by Claude, or both
Slash command
/nw:nw-design-methodologyThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```
PHASE 1 PHASE 2 PHASE 3 PHASE 4
Journey Mapping Emotional Design TUI Prototyping Integration Check
| | | |
v v v v
"What's the flow?" "How should it feel?" "What does it look?" "Does it connect?"
journey:
name: "{Goal Name}"
goal: "{What user is trying to accomplish}"
persona: "{User persona reference}"
emotional_arc:
start: "{Initial emotional state}"
middle: "{Journey emotional state}"
end: "{Final emotional state}"
steps:
- id: 1
name: "{Step Name}"
command: "{CLI command or action}"
tui_mockup: |
+-- Step N: {Name} -----------------------------------------+
| {ASCII representation of CLI output} |
| ${variable} <-- tracked artifact |
+------------------------------------------------------------+
shared_artifacts:
- name: "{artifact_name}"
source: "{single source of truth file}"
displayed_as: "${variable}"
consumers: ["{list of places this appears}"]
emotional_state:
entry: "{How user feels entering step}"
exit: "{How user feels after step}"
integration_checkpoint: |
{What must be validated before proceeding}
gherkin: |
Scenario: {Step description}
Given {precondition}
When {action}
Then {observable outcome}
And shared artifact "${variable}" matches source
integration_validation:
shared_artifact_consistency:
- artifact: "{name}"
must_match_across: [1, 2, 3]
failure_message: "{Integration error description}"
Start: Anxious/Uncertain | Middle: Focused/Engaged | End: Confident/Satisfied Use when: Complex multi-step operations
Start: Curious | Middle: Exploring | End: Delighted Use when: Learning new features
Start: Frustrated | Middle: Hopeful | End: Relieved Use when: Fixing issues or debugging
tool [noun] [verb] or tool [verb] [noun]crafter agent create or crafter create agentResponsive: print something in <100ms | Progress: show for long operations | Transparent: show what is happening | Recoverable: clear errors with suggested fixes
Implement --help on every command | Make help discoverable | Provide contextual suggestions
Three artifact types produced:
journey-{name}-visual.md): ASCII flow diagram with emotional annotations and TUI mockups per stepjourney-{name}.yaml): Machine-readable journey definition following schema abovejourney-{name}.feature): Testable acceptance scenarios from each journey stepAll artifacts go to docs/feature/{feature-id}/discuss/.
npx claudepluginhub nwave-ai/nwave --plugin nwGuides user journey discovery through phased questions on goals, mental models, emotions, artifacts, errors, and integrations. Generates iterative draft sketches for validation.
Designs end-to-end user experiences: task flows, multi-step workflows, navigation, onboarding, signup, checkout, dashboards, error recovery, and cross-platform adaptation. Trigger when mapping user journeys or optimizing interactions.
Designs user flows and screen structures using UX patterns like progressive disclosure, hub-and-spoke navigation, and information pyramids. Outputs ASCII flow diagrams, screen inventories, and edge case analysis.