user-story-splitting
Break a large story or epic into smaller deliverable stories using proven split patterns. Use when backlog items are too big for estimation, sequencing, or independent release.
Author
Category
Product DesignInstall
Download and extract to your skills directory
Copy command and send to AI Agent for auto-install:
Purpose
Break down large user stories, epics, or features into smaller, independently deliverable stories using systematic splitting patterns. Use this to make work more manageable, reduce risk, enable faster feedback cycles, and maintain flow in agile development. This skill applies to user stories, epics, and any work that's too large to complete in a single sprint.
This is not arbitrary slicing—it's strategic decomposition that preserves user value while reducing complexity.
Input
Works best with: The story or epic that's too big — paste it as written.
Also useful: Why it's too big (can't estimate, can't finish in a sprint, can't release independently) and your team's sizing ceiling.
Anything supplied with the invocation itself — text after the skill name, a pasted context dump, or an appended ARGUMENTS: line — counts as answers already given. Use it and skip whatever it covers; don't re-ask.
Arriving empty-handed? That works too. The skill asks for the story text, then walks the split patterns against it.
Example invocation: Split this: 'As an admin, I can bulk-import users from CSV, Excel, or our HR system with field mapping and error handling.'
Key Concepts
The Story Splitting Framework
Based on Richard Lawrence and Peter Green's "Humanizing Work Guide to Splitting User Stories," the framework provides 8 systematic patterns for splitting work:
Why Split Stories?
Anti-Patterns (What This Is NOT)
When to Use This
When NOT to Use This
Application
Step 1: Identify the Original Story
Start with the story/epic/feature that needs splitting. Ensure it's written using the user story format (reference
skills/user-story/SKILL.md or skills/epic-hypothesis/SKILL.md).### Original Story:
[Story formatted with use case and acceptance criteria]Step 2: Apply the Splitting Logic
Use template.md for the full fill-in structure and output format.
Work through the 8 splitting patterns in order. Stop when you find one that applies.
Pattern 1: Workflow Steps
Ask: Does this story contain multiple sequential steps?
Example:
1. "As a user, I want to sign up with email/password"
2. "As a user, I want to verify my email via a confirmation link"
3. "As a user, I want to complete onboarding by answering 3 profile questions"
Pattern 2: Business Rule Variations
Ask: Does this story have different rules for different scenarios?
Example:
1. "As a member, I want to apply a 10% discount at checkout"
2. "As a VIP, I want to apply a 20% discount at checkout"
3. "As a first-time buyer, I want to apply a 5% discount at checkout"
Pattern 3: Data Variations
Ask: Does this story handle different types of data or inputs?
Example:
1. "As a user, I want to upload image files (JPG, PNG)"
2. "As a user, I want to upload PDF documents"
3. "As a user, I want to upload video files (MP4, MOV)"
Pattern 4: Acceptance Criteria Complexity
Ask: Does this story have multiple "When" or "Then" statements?
Example:
- When I add an item, Then it appears in my cart
- When I remove an item, Then it disappears from my cart
- When I update quantity, Then the cart total updates
1. "As a user, I want to add items to my cart so I can purchase them later"
2. "As a user, I want to remove items from my cart so I can change my mind"
3. "As a user, I want to update item quantities so I can buy the right amount"
Note: This is the most common indicator that a story needs splitting. If you see multiple "When/Then" pairs, split along those boundaries.
Pattern 5: Major Effort
Ask: Does this story require significant technical work that can be delivered incrementally?
Example:
1. "As a user, I want to see who else is viewing the document (read-only presence)"
2. "As a user, I want to see live cursor positions of other editors"
3. "As a user, I want to see live edits from other users in real-time"
Pattern 6: External Dependencies
Ask: Does this story depend on multiple external systems or APIs?
Example:
1. "As a user, I want to log in with Google OAuth"
2. "As a user, I want to log in with Facebook OAuth"
3. "As a user, I want to log in with Twitter OAuth"
Pattern 7: DevOps Steps
Ask: Does this story require complex deployment, infrastructure, or operational work?
Example:
1. "As a user, I want to upload small files (<10MB) to cloud storage"
2. "As a user, I want to upload large files (10MB-1GB) with progress tracking"
3. "As a user, I want to resume interrupted uploads"
Pattern 8: Tiny Acts of Discovery (TADs)
Ask: If none of the above apply, are there unknowns or assumptions that need unpacking?
Example:
1. Prototype 3 recommendation algorithms and test with 10 users
2. Define success criteria (click-through rate, user satisfaction)
3. Build the simplest recommendation engine (collaborative filtering)
4. Measure and iterate
Note: TADs aren't stories—they're experiments. Use them to de-risk and clarify before writing stories.
Step 3: Write the Split Stories
For each split, write a complete user story using the format from skills/user-story/SKILL.md:
### Split 1 using [Pattern Name]:
#### User Story [ID]:
- **Summary:** [Brief title]
**Use Case:**
- **As a** [persona]
- **I want to** [action]
- **so that** [outcome]
**Acceptance Criteria:**
- **Scenario:** [Description]
- **Given:** [Preconditions]
- **When:** [Action]
- **Then:** [Outcome]Step 4: Validate the Splits
Ask these questions:
If any answer is "no," revise.
Examples
See examples/sample.md for full splitting examples.
Mini example excerpt:
### Original Story:
As a team admin, I want to manage team members so that I can control access.
### Suggested Splits (Acceptance Criteria Complexity):
1. Invite new team members
2. Remove team members
3. Update team member rolesCommon Pitfalls
Pitfall 1: Horizontal Slicing (Technical Layers)
Symptom: "Story 1: Build the API. Story 2: Build the UI."
Consequence: Neither story delivers user value independently.
Fix: Split vertically—each story should include front-end + back-end work to deliver a complete user-facing capability.
Pitfall 2: Over-Splitting
Symptom: "Story 1: Add button. Story 2: Wire button to API. Story 3: Display result."
Consequence: Creates unnecessary overhead and dependencies.
Fix: Only split when the story is too large. A 2-day story doesn't need splitting.
Pitfall 3: Meaningless Splits
Symptom: "Story 1: First half of feature. Story 2: Second half of feature."
Consequence: Arbitrary splits that don't map to user value or workflow.
Fix: Use one of the 8 splitting patterns—each split should have a clear rationale.
Pitfall 4: Creating Hard Dependencies
Symptom: "Story 2 can't start until Story 1 is 100% done, tested, and deployed."
Consequence: No parallelization, slows delivery.
Fix: Split in a way that allows independent development. If dependencies are unavoidable, prioritize Story 1.
Pitfall 5: Ignoring the "So That"
Symptom: Split stories have the same "so that" statement.
Consequence: You've split the action but not the outcome—likely a task decomposition, not a story split.
Fix: Ensure each split has a distinct user outcome. If not, reconsider the split pattern.
References
Related Skills
skills/user-story/SKILL.md — Format for writing the split storiesskills/epic-hypothesis/SKILL.md — Epics often need splitting before becoming storiesskills/jobs-to-be-done/SKILL.md — Helps identify meaningful splits along user jobsExternal Frameworks
Dean's Work
Provenance
prompts/user-story-splitting-prompt-template.md in the https://github.com/deanpeters/product-manager-prompts repo.Skill type: Component
Suggested filename: user-story-splitting.md
Suggested placement: /skills/components/
Dependencies: References skills/user-story/SKILL.md, skills/epic-hypothesis/SKILL.md
Applies to: User stories, epics, and any work that's too large to complete in a single sprint