write-bdd
스타10
포크0
업데이트2026년 1월 26일 18:58
Convert plain English requirements into Gherkin BDD scenarios
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Convert plain English requirements into Gherkin BDD scenarios
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate monthly board meeting agenda
Process violation through escalation workflow
Generate detailed acceptance criteria from a feature description
Generate a comprehensive epic with child stories from a feature description
Generate late fee report with compound interest calculations
Generate a well-structured user story from a plain English description
| name | write-bdd |
| description | Convert plain English requirements into Gherkin BDD scenarios |
| argument-hint | <requirement> |
Convert this requirement into well-structured Gherkin BDD scenarios:
$ARGUMENTS
Generate a complete Gherkin feature file:
Feature: [Feature Name]
As a [role]
I want [capability]
So that [benefit]
Background:
Given [common preconditions shared by all scenarios]
@happy-path
Scenario: [Descriptive scenario name - success case]
Given [initial context]
And [additional context if needed]
When [action taken]
And [additional action if needed]
Then [expected outcome]
And [additional verification]
@edge-case
Scenario: [Edge case description]
Given [context]
When [action]
Then [outcome]
@error-handling
Scenario: [Error scenario description]
Given [context that will cause error]
When [action attempted]
Then [error handling behavior]
And [user feedback]
@validation
Scenario Outline: [Parameterized test description]
Given [context with <parameter>]
When [action with <input>]
Then [outcome with <expected>]
Examples:
| parameter | input | expected |
| value1 | val1 | result1 |
| value2 | val2 | result2 |
Include scenarios for:
Use tags to categorize:
@happy-path - Success scenarios@edge-case - Boundary conditions@error-handling - Failure scenarios@smoke - Critical path tests@regression - Full test suite