Shokunin gherkin
Skill vstakhovsky/shokunin-review/.claude/skills/shokunin-gherkin
Terminal-first validation harness for reviewing PRDs, RFCs, strategy docs, and experiment plans.
npx -y skills add vstakhovsky/shokunin-review --skill shokunin-gherkinAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.1 KB, as published. Nobody here has run it
Shokunin Gherkin Skill
Helps write testable requirements in Gherkin format.
Purpose
Converts vague requirements into testable Given/When/Then format.
When to Use
Use this skill when:
- Requirements are not testable
- Acceptance criteria missing
- Need to improve requirement quality
Workflow
- Identify — Find requirements that need Gherkin format
- Transform — Convert to Given/When/Then
- Validate — Check if testable
- Example — Provide concrete examples
Inputs
- Requirements text
- Context about the feature
Output Contract
Returns Gherkin-formatted requirements:
Given [context]
When [action]
Then [outcome]
Example
Input:
"System should be fast"
Output:
Given: User is on checkout page with 10 items in cart
When: User clicks "Place Order" button
Then: Order is processed within 3 seconds (p95)
And: Order confirmation page displays
And: User receives email confirmation
Best Practices
- Specific: Concrete context and actions
- Testable: Binary pass/fail
- Measurable: Include thresholds where applicable
- Complete: Include all relevant outcomes