From orbty-eazy
Use when creating epic structure - generates Epic INDEX.md with Kanban folders
How this skill is triggered — by the user, by Claude, or both
Slash command
/orbty-eazy:skills/epic-planningThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create epic structure with INDEX.md overview and Kanban folder organization.
Create epic structure with INDEX.md overview and Kanban folder organization.
Announce at start: "I'm using the epic-planning skill to create the epic structure."
docs/planning/epics/E{NN}-{name}/
├── INDEX.md
├── 00-todo/
├── 01-doing/
└── 02-done/
# Epic: E{NN} - {Epic Title}
> **Milestone**: M{N} - {Milestone Name}
> **Status**: ⏳ In Progress | ✅ Complete
> **Progress**: {X}/{Y} tasks complete ({Z}%)
---
## Overview
### Objective
{What this epic achieves - 2-3 sentences}
### Business Value
- {Value 1}
- {Value 2}
### Success Criteria
- [ ] {Measurable criterion 1}
- [ ] {Measurable criterion 2}
- [ ] {Measurable criterion 3}
---
## User Stories
| ID | Story | Priority |
|----|-------|----------|
| US{NNN} | {Story title} | P0 |
| US{NNN} | {Story title} | P0 |
| US{NNN} | {Story title} | P1 |
---
## Tasks
### Kanban Board
| Status | Count |
|--------|-------|
| 📋 Todo | {N} |
| 🔄 Doing | {N} |
| ✅ Done | {N} |
### Task List
| ID | Title | Priority | Status | Assignee |
|----|-------|----------|--------|----------|
| E{NN}-TK01 | {Task title} | P0 | ⏳ Todo | - |
| E{NN}-TK02 | {Task title} | P0 | ⏳ Todo | - |
| E{NN}-TK03 | {Task title} | P1 | ⏳ Todo | - |
### Task Details
#### E{NN}-TK01: {Task Title}
- **Story**: US{NNN}
- **Priority**: P0
- **Estimate**: {hours}h
- **File**: [TASK_E{NN}-TK01_{name}.md](./00-todo/TASK_E{NN}-TK01_{name}.md)
#### E{NN}-TK02: {Task Title}
- **Story**: US{NNN}
- **Priority**: P0
- **Estimate**: {hours}h
- **File**: [TASK_E{NN}-TK02_{name}.md](./00-todo/TASK_E{NN}-TK02_{name}.md)
---
## Dependencies
### Depends On
| Epic/Task | Status | Notes |
|-----------|--------|-------|
| {Dependency} | ✅ | {Notes} |
### Blocks
| Epic/Task | Notes |
|-----------|-------|
| E{NN} | {Why blocked} |
---
## Timeline
| Phase | Start | End | Status |
|-------|-------|-----|--------|
| Planning | {Date} | {Date} | ✅ |
| Development | {Date} | {Date} | 🔄 |
| Testing | {Date} | {Date} | ⏳ |
| Review | {Date} | {Date} | ⏳ |
---
## Risks
| Risk | Probability | Impact | Mitigation |
|------|-------------|--------|------------|
| {Risk} | Med | High | {Strategy} |
---
## Definition of Done
Epic is complete when:
- [ ] All P0 tasks complete
- [ ] All P1 tasks complete or deferred with justification
- [ ] All success criteria met
- [ ] Code reviewed and merged
- [ ] Tests passing
- [ ] Documentation updated
---
## Notes
_Development notes, decisions, and discoveries_
---
_Created: {YYYY-MM-DD}_
_Last Updated: {YYYY-MM-DD}_
# Create epic folder structure
EPIC="E01-foundation"
mkdir -p "docs/planning/epics/$EPIC"/{00-todo,01-doing,02-done}
E{NN} (e.g., E01, E02)E{NN}-{kebab-case-name}E01-foundation, E02-authentication, E03-core-featuresE{NN}-TK{NN} (e.g., E01-TK01)feat(auth): implement login (E01-TK03)When task status changes:
# Start working on task
mv 00-todo/TASK_E01-TK01_setup.md 01-doing/
# Complete task
mv 01-doing/TASK_E01-TK01_setup.md 02-done/
Update INDEX.md:
npx claudepluginhub orbtyapp/orbty-eazy-marketplace --plugin orbty-eazyCreates epic JSON files with vision (overview, goals, metrics, scope, NFRs) via user dialog, ID generation, and existence checks. Deprecated; use /plan instead.
Creates Epics and Stories from GDD requirements for development planning. Useful when turning design docs into agile artifacts; activates on 'create epics' or 'create stories'.
Breaks v0.6 technical specs into context-window-sized EPICs with dependencies, pre-load budgets, and acceptance criteria for v0.7 build execution.