원클릭으로
create-story
Create a new user story in the backlog with technical tasks, test scenarios, and epic integration.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a new user story in the backlog with technical tasks, test scenarios, and epic integration.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | create-story |
| description | Create a new user story in the backlog with technical tasks, test scenarios, and epic integration. |
The user provides (or this is invoked from /discuss-feature):
The agent derives everything else by analyzing the codebase.
docs/backlog/README.md, epic READMEs) to understand current statedocs/backlog/ directoriesdocs/backlog/epic-NN-<slug>/README.md following the format of docs/backlog/epic-01-foundation/README.mdE2-US08)docs/backlog/epic-NN-<slug>/EN-USXX-<slug>.md using the template belowREADME.md story table with the new entrydocs/backlog/README.md implementation order with the new story# EN-USXX: <Title>
**User Story**: As a <role>, I want <feature> so that <benefit>.
**Acceptance Criteria**:
- [ ] <criterion 1>
- [ ] <criterion 2>
**Technical Tasks**:
| Layer | Task | File(s) |
|-------|------|---------|
| Domain | ... | ... |
| Database | ... | ... |
| API | ... | ... |
| Frontend | ... | ... |
| Mobile | ... | ... |
| E2E | ... | ... |
| E2E Mobile | ... | ... |
**Dependencies**: <story IDs or "None">
**Complexity**: <XS/S/M/L/XL>
**Status**: Pending
**Test Scenarios**:
```gherkin
Scenario: ...
Given ...
When ...
Then ...
## Notes
- Always use the naming conventions from `docs/backlog/README.md`
- Column naming for any new DB fields: `snake_case`
- Story complexity uses the reference table in the PRD
Implement a backlog story following the layer order (Domain, Database, API, Frontend, E2E) with TDD.
Review the backlog to determine what to work on next by checking epic and story statuses in docs/backlog/.
Automates pre-commit workflow: lint, test, review changes, then commit with conventional commit format.
Verify a story is complete by checking acceptance criteria, running all tests, and updating status.
Add end-to-end Playwright tests for a feature using data-testid selectors, with API and UI test patterns.
Add unit tests for domain logic, database adapters, API endpoints, or frontend components using Vitest patterns.