nw-jtbd-bdd-integration
Installation
SKILL.md
JTBD to BDD Integration
Use when translating JTBD discoveries (job stories, forces, job map) into testable BDD scenarios. Job stories map naturally to Given-When-Then because both emphasize context (situation/given), action (motivation/when), and outcome (result/then).
Job Story to Given-When-Then Translation
The Pattern
Job Story:
When [situation],
I want to [motivation],
so I can [outcome].
BDD Scenario:
Given [the situation from the job story]
When [user takes action aligned with the motivation]
Then [the outcome is achieved and measurable]