# Agile Scrum

> Staff Management expertise in Agile workflows, Sprint planning, and Story Points.

- Skill: `j4flmao/agile-scrum` (Agent Skill)
- Install (CLI): `npx skillmds@latest add j4flmao/agile-scrum`
- Raw SKILL.md: https://api.skillmd.com/api/skills/j4flmao/agile-scrum/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: j4flmao (https://skillmd.com/u/j4flmao)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/j4flmao/agile-scrum

---


# Agile Scrum Management

## Key Concepts
- **Sprints**: 2-week iterations for focused delivery.
- **Story Points**: Use Fibonacci sequence (1, 2, 3, 5, 8, 13) for complexity sizing.

## Workflow
```mermaid
%%{init: {"theme": "default", "flowchart": {"useMaxWidth": true}}}%%
flowchart TD
    A[Backlog Refinement] --> B[Sprint Planning]
    B --> C[Daily Standup]
    C --> D[Sprint Review]
    D --> E[Sprint Retrospective]
```

## Template: Sprint Config
```yaml
sprint:
  duration_weeks: 2
  capacity_points: 50
  meetings:
    standup: "10:00 AM Daily"
    planning: "Monday 9:00 AM"
    review: "Friday 3:00 PM"
```

