MCP HubMCP Hub
스킬 목록으로 돌아가기

user-story-splitting

deanpeters
업데이트됨 Yesterday
1 조회
4,511
575
4,511
GitHub에서 보기
기타general

정보

이 스킬은 검증된 분할 패턴을 사용해 대규모 사용자 스토리나 에픽을 작고 실행 가능한 단위로 체계적으로 분해합니다. 백로그 항목이 너무 커서 추정, 순서 설정 또는 독립적 릴리스가 어려울 때 사용됩니다. 이를 통해 작업을 더 관리하기 쉽게 만들고 위험을 줄이며, 애자일 개발에서 더 빠른 피드백 사이클을 가능하게 합니다.

빠른 설치

Claude Code

추천
기본
npx skills add deanpeters/Product-Manager-Skills -a claude-code
플러그인 명령대체
/plugin add https://github.com/deanpeters/Product-Manager-Skills
Git 클론대체
git clone https://github.com/deanpeters/Product-Manager-Skills.git ~/.claude/skills/user-story-splitting

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

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.

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:

  1. Workflow steps: Split along sequential steps in a user's journey
  2. Business rule variations: Split by different rule scenarios (permissions, calculations, etc.)
  3. Data variations: Split by different data types or inputs
  4. Acceptance criteria complexity: Split when multiple "When" or "Then" statements exist
  5. Major effort: Split by technical milestones or implementation phases
  6. External dependencies: Split along dependency boundaries (APIs, third parties, etc.)
  7. DevOps steps: Split by deployment or infrastructure requirements
  8. Tiny Acts of Discovery (TADs): When none of the above apply, use small experiments to unpack unknowns

Why Split Stories?

  • Faster feedback: Smaller stories ship sooner, allowing earlier validation
  • Reduced risk: Less to build = less that can go wrong
  • Better estimation: Small stories are easier to estimate accurately
  • Maintain flow: Keeps work moving through the sprint without bottlenecks
  • Testability: Smaller scope = easier to write and run tests

Anti-Patterns (What This Is NOT)

  • Not horizontal slicing: Don't split into "front-end story" and "back-end story" (each story should deliver user value)
  • Not task decomposition: Stories aren't tasks ("Set up database," "Write API")
  • Not arbitrary chopping: Don't split "Add user management" into "Add user" and "Management" (meaningless)

When to Use This

  • Story is too large for a single sprint
  • Multiple "When" or "Then" statements in acceptance criteria
  • Epic needs to be broken down into deliverable increments
  • Team can't reach consensus on story size or scope
  • Story has multiple personas or workflows bundled together

When NOT to Use This

  • Story is already small and well-scoped (don't over-split)
  • Splitting would create dependencies that slow delivery
  • The story is a technical task (use engineering task breakdown instead)

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:

  • Original: "As a user, I want to sign up, verify my email, and complete onboarding"
  • Split:
    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:

  • Original: "As a user, I want to apply discounts (10% for members, 20% for VIPs, 5% for first-time buyers)"
  • Split:
    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:

  • Original: "As a user, I want to upload files (images, PDFs, videos)"
  • Split:
    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:

  • Original: "As a user, I want to manage my cart"
    • 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
  • Split:
    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:

  • Original: "As a user, I want real-time collaboration on documents"
  • Split:
    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:

  • Original: "As a user, I want to log in with Google, Facebook, or Twitter"
  • Split:
    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:

  • Original: "As a user, I want to upload large files to cloud storage"
  • Split:
    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:

  • Original: "As a user, I want AI-powered recommendations" (too vague, too many unknowns)
  • TADs:
    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:

  1. Does each split deliver user value? (Not just "front-end done")
  2. Can each split be developed independently? (No hard dependencies)
  3. Can each split be tested independently? (Clear acceptance criteria)
  4. Is each split small enough for a sprint? (1-5 days of work)
  5. Do the splits, when combined, equal the original? (Nothing lost in translation)

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 roles

Common 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 stories
  • skills/epic-hypothesis/SKILL.md — Epics often need splitting before becoming stories
  • skills/jobs-to-be-done/SKILL.md — Helps identify meaningful splits along user jobs

External Frameworks

  • Richard Lawrence & Peter Green, The Humanizing Work Guide to Splitting User Stories — Origin of the 8 splitting patterns
  • Bill Wake, INVEST in Good Stories (2003) — Criteria for well-formed stories (Independent, Negotiable, Valuable, Estimable, Small, Testable)
  • Mike Cohn, User Stories Applied (2004) — Story decomposition techniques

Dean's Work

  • User Story Splitting Prompt Template (based on Humanizing Work framework)

Provenance

  • Adapted from 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

GitHub 저장소

deanpeters/Product-Manager-Skills
경로: skills/user-story-splitting
0
ai-agentsai-product-managementclaude-skillspm-frameworksproduct-management

연관 스킬

llamaguard

기타

LlamaGuard는 폭력 및 혐오 발언 등 6가지 안전 범주에서 LLM 입력과 출력을 조정하기 위한 Meta의 70-80억 파라미터 모델입니다. 94-95% 정확도를 제공하며 vLLM, Hugging Face 또는 Amazon SageMaker를 사용해 배포할 수 있습니다. 이 기술을 사용하여 AI 애플리케이션에 콘텐츠 필터링 및 안전 가드레일을 손쉽게 통합하세요.

스킬 보기

cost-optimization

기타

이 Claude Skill은 리소스 적정화, 태깅 전략, 지출 분석을 통해 개발자들이 클라우드 비용을 최적화할 수 있도록 지원합니다. AWS, Azure, GCP에서 클라우드 비용을 절감하고 비용 거버넌스를 구현하기 위한 프레임워크를 제공합니다. 인프라 비용을 분석하거나, 리소스를 적정화하거나, 예산 제약을 충족해야 할 때 사용하세요.

스킬 보기

quantizing-models-bitsandbytes

기타

이 스킬은 bitsandbytes를 사용하여 LLM을 8비트 또는 4비트 정밀도로 양자화하며, 최소한의 정확도 손실로 50-75%의 메모리 감소를 달성합니다. 제한된 GPU 메모리에서 더 큰 모델을 실행하거나 추론을 가속화하는 데 이상적이며, INT8, NF4, FP4와 같은 형식을 지원합니다. 이 스킬은 HuggingFace Transformers와 통합되어 QLoRA 학습 및 8비트 옵티마이저를 가능하게 합니다.

스킬 보기

dispatching-parallel-agents

기타

이 Claude Skill은 3개 이상의 독립적인 문제를 동시에 조사하고 해결하기 위해 다중 에이전트를 배치합니다. 공유 상태나 의존성 없이 해결 가능한 무관련 장애 시나리오에 맞게 설계되었습니다. 핵심 기능은 병렬 문제 해결로, 각 독립 문제 영역마다 하나의 에이전트를 할당하여 효율성을 극대화합니다.

스킬 보기