Slicing Product Backlog Items
Determine the task
Quality characteristics (priority order)
Apply these in order — when they conflict, higher-ranked characteristics take precedence.
| # |
Characteristic |
Test |
| 1 |
Valuable |
Can a stakeholder observe the value this delivers? |
| 2 |
Completable |
Is there a binary pass/fail condition for "done"? |
| 3 |
Negotiable |
Is the implementation approach open for the team to adjust? |
| 4 |
Independent |
Can this PBI be released without waiting for another? |
| 5 |
Commensurate |
Is this PBI roughly the same size as the others in the backlog? |
| 6 |
Small |
Can this be completed within a single sprint? |
When characteristics conflict: prefer value over smallness, independence over smallness, completability over negotiability. Stop splitting when further division would break a higher-ranked characteristic.
The splitting meta-pattern
All splitting techniques follow one pattern:
- Find the core complexity. What part is most likely to surprise the team? (Human preferences, external integrations, variable business rules.)
- Identify the variations. What are there many of? (User roles, business rules, data formats, workflow paths, edge cases, platforms.)
- Reduce all variations to one. Find a single, complete path through the complex part → this is the first slice. Each subsequent slice reintroduces one variation.
This produces vertical slices by default — reducing to a single variation through the core complexity naturally cuts across all system layers.
Splitting patterns (quick reference)
Pick based on the dominant source of variation:
| Pattern |
When to use |
First slice delivers |
| Workflow steps |
Multi-step process |
Beginning and end steps (most value and risk) |
| Business rules |
Behavior branches on conditions |
Most common or highest-value rule |
| Data variations |
Multiple data types or formats |
Highest-traffic variation |
| User role |
Different user groups, different needs |
Highest-value role |
| Interface/platform |
Multiple platforms |
Highest-traffic interface |
| Happy path / edge cases |
Complex error handling |
Happy path only |
| CRUD operations |
Full lifecycle management |
Read or create (whichever unlocks more) |
| Major / minor effort |
One large core + incremental add-ons |
The major integration effort |
| Spike / implementation |
Uncertainty is the blocker |
Time-boxed spike (research, not code) |
For detailed examples of each pattern, see references/02-hierarchy-and-slicing.md.
Workflow: Splitting a PBI
- Run the "Should this PBI be split?" checklist (Checklist B in references/03-sizing-dependencies-antipatterns.md) to confirm splitting is needed.
- Apply the meta-pattern: find core complexity → identify variations → reduce to one.
- Choose the splitting pattern matching the dominant variation type.
- For each resulting slice, validate against the quality characteristics table above.
- Verify each slice is vertically sliced — it cuts through all necessary system layers, not just one.
- Write 1–3 binary, behavior-focused acceptance criteria per slice.
- Check: the first slice carries the most value and risk. Low-value slices are clearly deprioritizable.
- If any slice fails validation at steps 4–6, re-split it by returning to step 2.
Guard rails:
- Every slice must deliver observable stakeholder value. A slice that looks like a developer task fails.
- A PBI should represent ≤ 1/5 to 1/10 of sprint capacity.
- 4+ acceptance criteria on a single slice means split further.
- The first slice is the thinnest possible end-to-end happy path — do not gold-plate it.
Workflow: Reviewing PBIs
- For each PBI, run the well-formedness checklist (Checklist A in references/03-sizing-dependencies-antipatterns.md).
- Run the splitting checklist (Checklist B) to identify split candidates.
- Check for common anti-patterns — see Anti-Patterns in references/03-sizing-dependencies-antipatterns.md.
- For PBIs approaching sprint readiness, run the sprint-readiness checklist (Checklist C).
- For each issue found, propose a specific fix with a rewritten PBI.
Common anti-patterns to flag: horizontal slicing, tasks disguised as stories, over-splitting, premature splitting, gold-plating the first slice, confusing epics with categories.
Workflow: Writing new PBIs
- Start from the stakeholder problem — not the solution.
- Write the PBI description covering: Problem, Proposed Solution, Expected Impact, and Acceptance Criteria. Add Timelines and Dependencies only when applicable.
For description format details, see references/01-quality-and-description.md.
- Slice vertically — every PBI cuts through all system layers needed to deliver one complete scenario.
- Write 1–3 binary, independently verifiable, behavior-focused acceptance criteria per PBI.
- Validate each PBI against the quality characteristics table above.
- If the PBI is too large (fails Commensurate or Small), apply the splitting workflow above.
Acceptance criteria rules:
- Binary pass/fail. No partial credit.
- Independently verifiable. Each criterion stands alone.
- Behavior-focused. Describe what the system does, not how it is built.
- 1–3 per PBI. More than 3 signals the PBI should be split.
Edge cases
- Technical work without direct stakeholder value (e.g., infrastructure migration): Write as a task with clear problem/solution/impact. Do not force it into a user-story format. It may belong as a sub-item under a value-delivering PBI.
- Unavoidable dependencies: Make them explicit. Prefer eliminating by restructuring > merging > decoupling with interfaces > stubbing > sequencing explicitly. See references/03-sizing-dependencies-antipatterns.md.
- High uncertainty: Split into a time-boxed spike (research) + subsequent implementation item. The spike produces knowledge, not production code.
- Epics: Use for outcome-oriented grouping with a clear completion condition. Not permanent categories. "Reduce page load time below 2s" is an epic; "Performance" is a label.
Reference material
- Quality characteristics and description format: references/01-quality-and-description.md — the six characteristics in detail, conflict resolution, acceptance criteria guidance, three amigos
- Hierarchy, vertical slicing, and splitting techniques: references/02-hierarchy-and-slicing.md — epic/work-item/sub-item hierarchy, vertical vs. horizontal slicing, all splitting patterns with examples
- Sizing, dependencies, anti-patterns, and checklists: references/03-sizing-dependencies-antipatterns.md — commensurate sizing, throughput forecasting, dependency strategies, seven anti-patterns, three refinement checklists
1---2name: slicing-pbis3description: Slices, reviews, and writes product backlog items (PBIs) using priority-ordered quality characteristics (Valuable > Completable > Negotiable > Independent > Commensurate > Small), vertical slicing, and the splitting meta-pattern. Produces well-formed, commensurately sized PBIs with binary acceptance criteria. Use when splitting large PBIs or user stories, reviewing backlog items for quality, writing new PBIs from requirements, refining a product backlog, decomposing epics into stories, or when the user mentions PBI slicing, story splitting, backlog refinement, or vertical slices.4---56# Slicing Product Backlog Items78## Determine the task910| Task | Workflow |11|---|---|12| **Splitting a large PBI** into smaller ones | → [Splitting workflow](#workflow-splitting-a-pbi) |13| **Reviewing existing PBIs** for quality | → [Review workflow](#workflow-reviewing-pbis) |14| **Writing new PBIs** from requirements | → [Writing workflow](#workflow-writing-new-pbis) |1516## Quality characteristics (priority order)1718Apply these in order — when they conflict, higher-ranked characteristics take precedence.1920| # | Characteristic | Test |21|---|---|---|22| 1 | **Valuable** | Can a stakeholder observe the value this delivers? |23| 2 | **Completable** | Is there a binary pass/fail condition for "done"? |24| 3 | **Negotiable** | Is the implementation approach open for the team to adjust? |25| 4 | **Independent** | Can this PBI be released without waiting for another? |26| 5 | **Commensurate** | Is this PBI roughly the same size as the others in the backlog? |27| 6 | **Small** | Can this be completed within a single sprint? |2829When characteristics conflict: prefer value over smallness, independence over smallness, completability over negotiability. Stop splitting when further division would break a higher-ranked characteristic.3031## The splitting meta-pattern3233All splitting techniques follow one pattern:34351. **Find the core complexity.** What part is most likely to surprise the team? (Human preferences, external integrations, variable business rules.)362. **Identify the variations.** What are there many of? (User roles, business rules, data formats, workflow paths, edge cases, platforms.)373. **Reduce all variations to one.** Find a single, complete path through the complex part → this is the first slice. Each subsequent slice reintroduces one variation.3839This produces vertical slices by default — reducing to a single variation through the core complexity naturally cuts across all system layers.4041## Splitting patterns (quick reference)4243Pick based on the dominant source of variation:4445| Pattern | When to use | First slice delivers |46|---|---|---|47| Workflow steps | Multi-step process | Beginning and end steps (most value and risk) |48| Business rules | Behavior branches on conditions | Most common or highest-value rule |49| Data variations | Multiple data types or formats | Highest-traffic variation |50| User role | Different user groups, different needs | Highest-value role |51| Interface/platform | Multiple platforms | Highest-traffic interface |52| Happy path / edge cases | Complex error handling | Happy path only |53| CRUD operations | Full lifecycle management | Read or create (whichever unlocks more) |54| Major / minor effort | One large core + incremental add-ons | The major integration effort |55| Spike / implementation | Uncertainty is the blocker | Time-boxed spike (research, not code) |5657For detailed examples of each pattern, see [references/02-hierarchy-and-slicing.md](references/02-hierarchy-and-slicing.md).5859## Workflow: Splitting a PBI60611. Run the "Should this PBI be split?" checklist (Checklist B in [references/03-sizing-dependencies-antipatterns.md](references/03-sizing-dependencies-antipatterns.md)) to confirm splitting is needed.622. Apply the meta-pattern: find core complexity → identify variations → reduce to one.633. Choose the splitting pattern matching the dominant variation type.644. For each resulting slice, validate against the quality characteristics table above.655. Verify each slice is vertically sliced — it cuts through all necessary system layers, not just one.666. Write 1–3 binary, behavior-focused acceptance criteria per slice.677. Check: the first slice carries the most value and risk. Low-value slices are clearly deprioritizable.688. If any slice fails validation at steps 4–6, re-split it by returning to step 2.6970**Guard rails:**71- Every slice must deliver observable stakeholder value. A slice that looks like a developer task fails.72- A PBI should represent ≤ 1/5 to 1/10 of sprint capacity.73- 4+ acceptance criteria on a single slice means split further.74- The first slice is the thinnest possible end-to-end happy path — do not gold-plate it.7576## Workflow: Reviewing PBIs77781. For each PBI, run the well-formedness checklist (Checklist A in [references/03-sizing-dependencies-antipatterns.md](references/03-sizing-dependencies-antipatterns.md)).792. Run the splitting checklist (Checklist B) to identify split candidates.803. Check for common anti-patterns — see [Anti-Patterns in references/03-sizing-dependencies-antipatterns.md](references/03-sizing-dependencies-antipatterns.md).814. For PBIs approaching sprint readiness, run the sprint-readiness checklist (Checklist C).825. For each issue found, propose a specific fix with a rewritten PBI.8384**Common anti-patterns to flag:** horizontal slicing, tasks disguised as stories, over-splitting, premature splitting, gold-plating the first slice, confusing epics with categories.8586## Workflow: Writing new PBIs87881. Start from the stakeholder problem — not the solution.892. Write the PBI description covering: **Problem**, **Proposed Solution**, **Expected Impact**, and **Acceptance Criteria**. Add **Timelines** and **Dependencies** only when applicable.90 For description format details, see [references/01-quality-and-description.md](references/01-quality-and-description.md).913. Slice vertically — every PBI cuts through all system layers needed to deliver one complete scenario.924. Write 1–3 binary, independently verifiable, behavior-focused acceptance criteria per PBI.935. Validate each PBI against the quality characteristics table above.946. If the PBI is too large (fails Commensurate or Small), apply the splitting workflow above.9596**Acceptance criteria rules:**97- Binary pass/fail. No partial credit.98- Independently verifiable. Each criterion stands alone.99- Behavior-focused. Describe what the system does, not how it is built.100- 1–3 per PBI. More than 3 signals the PBI should be split.101102## Edge cases103104- **Technical work without direct stakeholder value** (e.g., infrastructure migration): Write as a task with clear problem/solution/impact. Do not force it into a user-story format. It may belong as a sub-item under a value-delivering PBI.105- **Unavoidable dependencies:** Make them explicit. Prefer eliminating by restructuring > merging > decoupling with interfaces > stubbing > sequencing explicitly. See [references/03-sizing-dependencies-antipatterns.md](references/03-sizing-dependencies-antipatterns.md).106- **High uncertainty:** Split into a time-boxed spike (research) + subsequent implementation item. The spike produces knowledge, not production code.107- **Epics:** Use for outcome-oriented grouping with a clear completion condition. Not permanent categories. "Reduce page load time below 2s" is an epic; "Performance" is a label.108109## Reference material110111- **Quality characteristics and description format**: [references/01-quality-and-description.md](references/01-quality-and-description.md) — the six characteristics in detail, conflict resolution, acceptance criteria guidance, three amigos112- **Hierarchy, vertical slicing, and splitting techniques**: [references/02-hierarchy-and-slicing.md](references/02-hierarchy-and-slicing.md) — epic/work-item/sub-item hierarchy, vertical vs. horizontal slicing, all splitting patterns with examples113- **Sizing, dependencies, anti-patterns, and checklists**: [references/03-sizing-dependencies-antipatterns.md](references/03-sizing-dependencies-antipatterns.md) — commensurate sizing, throughput forecasting, dependency strategies, seven anti-patterns, three refinement checklists