원클릭으로
requirements
Write BDD requirements in Gherkin format. Guides the user through the process.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Write BDD requirements in Gherkin format. Guides the user through the process.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
This skill should be used when the user asks to "install openclaw", "set up openclaw", "configure openclaw channels", "openclaw gateway", "openclaw troubleshooting", "add whatsapp to openclaw", "add telegram to openclaw", "openclaw agent", "openclaw models", "openclaw cron", "openclaw memory", "openclaw skills", "openclaw security", "openclaw browser", "openclaw sessions", "openclaw workspace", "openclaw docker", "openclaw not working", "debug openclaw", "connect discord to openclaw", "openclaw setup guide", or mentions openclaw setup, configuration, troubleshooting, or daily usage.
Guided implementation planning with codebase understanding and requirement focus
Manage tech stack and architecture decisions
Document domain knowledge including entities, processes, and ubiquitous language
Execute an implementation plan step by step
Manage product backlog as an ordered priority list
| name | requirements |
| description | Write BDD requirements in Gherkin format. Guides the user through the process. |
Write new BDD requirements in Gherkin format.
First: Read bdd-guide.md to understand:
@DOM-SUB-CAP-NNN)Before writing requirements, search for and read existing domain documentation:
docs/domains/*/entities/ or similar paths_overview.md if it existsThis ensures requirements align with the established domain model and use correct terminology.
Ask the user:
For each scenario, ask about:
NEVER assume error messages or business logic - ask!
Location: Follow the folder structure in bdd-guide.md:
requirements/[NN] [Domain]/[NN] [Subdomain]/[NN] [Capability]/feature-name.feature
Format:
@[ID] @[priority]
Feature: [ID] [Name]
As a [actor]
I want to [action]
So that [value].
# OPEN QUESTIONS:
# - [Any uncertainties are documented here]
Background:
Given [common precondition]
Rule: [Business rule]
Scenario: [Descriptive name]
Given [precondition]
When [action]
Then [expected result]
When uncertain: Document with # OPEN QUESTIONS: right after the feature description (after "So that...").
Run the markdown generator to update requirements/requirements-overview.md:
cd requirements-parser && npm run generate-overview
This scans all .feature files and generates an updated overview with ID, feature name, tags, and statistics.