From dev-workflow
This skill is invoked ONLY from kickoff when Epic-level work is identified. Should NOT be invoked directly by user or auto-triggered by AI. Creates epic document by decomposing large work into independent Stories.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dev-workflow:create-epicThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Decompose large work into independent Stories and create an epic document.
Decompose large work into independent Stories and create an epic document.
The core purpose is Story decomposition - breaking down large work into independent Stories that can be implemented in separate sessions.
Epic documents are NOT primarily for:
This skill receives Why/What context from kickoff interview via session history.
A Story is independent when:
Key question: "Can I start working on this Story without waiting for another Story to complete?"
Review the interview results:
If unclear, ask for clarification before proceeding.
For each potential Story, verify:
If a Story fails these checks, split it further.
For each Story, ask: "Does this require another Story to be completed first?"
Create .claude/dev-workflow/epic/{name}/epic.md:
# Epic: {title}
## Overview
{What this epic achieves}
## Background
{Why this epic is needed}
## Goal
{Desired end state}
## Stories
| # | Story | Status | Dependencies |
|---|-------|--------|--------------|
| 1 | {story-name} | Not Started | - |
| 2 | {story-name} | Not Started | #1 |
## Out of Scope
{What this epic does NOT include}
## References
{Related links}
Identify the first Story with no dependencies and suggest starting create-spec for it.
After epic is created:
Reference: .claude/dev-workflow/epic/{name}/epic.md
Next phase: create-spec for first Story (one with no dependencies)
Read the epic file, identify the first Story to implement, and invoke kickoff or create-spec for that Story.
npx claudepluginhub choplin/my-claude-marketplace --plugin dev-workflowGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.