Methodologies & SDLC Deep Dive · 9 of 10

Scrum Roles & Ceremonies — In Detail

The Scrum Guide is famously short — under 14 pages. But each role and event has a specific purpose, a time-box, and a few failure modes that recur in every team. This is the working reference: what each thing is for, who attends, and how it goes wrong.

RolesEventsTime-boxesDefinition of Done
← Back to Methodologies & SDLC
Roles

Three Accountabilities

RoleOwnsCommon pitfall
Product OwnerProduct backlog, ordering, value maximizationTreated as a backlog secretary, not a decision-maker.
Scrum MasterEffectiveness of the team and Scrum adoptionActs as a project manager or status-reporter.
DevelopersCreating the increment and the Definition of DoneExternalize commitment ("the PO promised it") instead of owning it.
Events

Five Time-Boxed Meetings

EventTime-box (2-week sprint)Purpose
The Sprint2 weeksThe container for everything else. A mini-project with a goal.
Sprint Planning≤ 4 hoursPick the Sprint Goal; pick backlog items; build the plan.
Daily Scrum15 minutesDevs synchronize on progress toward the Sprint Goal & adjust.
Sprint Review≤ 2 hoursDemo the increment; collect stakeholder feedback; adapt the backlog.
Retrospective≤ 1.5 hoursInspect how the team works; commit to one or two improvements.

Time-boxes are maximums, not targets. A 5-minute Daily Scrum that achieves the sync is fine.

Artifacts & Commitments

Three Things You Track

ArtifactCommitmentWhat it answers
Product BacklogProduct GoalWhat is this product trying to become?
Sprint BacklogSprint GoalWhat are we trying to achieve this sprint?
IncrementDefinition of DoneWhat does "finished" look like?
Definition of Done

The Hidden Lever

  • Code merged to main and reviewed.
  • Tests written and passing at the agreed coverage level.
  • Deployed to staging (or behind a flag in prod).
  • Docs updated — runbook, API spec, changelog.
  • Telemetry in place — logs, metrics, alerts.
  • Accepted by the PO against the acceptance criteria.

DoD is the team's quality contract with themselves. Loose DoD = "done-ish" = inflated velocity that hides real work.

Continue

Other Methodologies