~i: Inspect — SCRUM Definition of Done

The single gate that prevents incomplete work from being called "done"

What It Is

"A formal description of the state of the Increment when it meets the quality measures required for the product. Once the Definition of Done is met, the Increment is Done and can be delivered."
— 2020 Scrum Guide

The DoD is a non-negotiable quality gate. Work that doesn't pass every item on the checklist is not Done. Not "mostly done." Not "done except for." Not Done. It goes back to the backlog.

The Gate Mechanism

  1. Work is developed
  2. Each DoD criterion is checked
  3. If ALL pass → work is "Done" and counts as part of the Increment
  4. If ANY fails → work is "Not Done" — returns to backlog
  5. Only Done work can be presented, shipped, or counted as progress

This is binary. There is no partial credit.

DoD vs Acceptance Criteria

AspectDefinition of DoneAcceptance Criteria
ScopeApplied to every work itemSpecific to individual items
FocusHow it's done (quality)What must work (function)
StabilitySame across all workChanges per item
ContentTesting, commits, docs, deployExpected behavior

Both must be satisfied. A feature that works but wasn't tested/committed/shipped properly is not Done.

Why It Prevents Work Loss

How This Maps to Be's Problem

Be currently has no DoD. The chain reaction defines steps (build → report → telemetry → commit → push) but doesn't gate on them. If a step is skipped, work is still called "done." Evidence:

The chain reaction is a workflow. A DoD is a gate. Be has the workflow. It's missing the gate.

The Key Insight

The 5-guard plan from the previous ~P proposed scattered tactics: pre-flight checklist, stewardship rule, chain completion flag, source-of-truth declaration, Done-means-Done board rule. These are all symptoms of a missing DoD.

A single Definition of Done — enforced as a gate after every work command — replaces guards 3, 4, and 5 entirely. Guards 1 and 2 survive as a Definition of Ready (pre-condition) and a project convention (source of truth), respectively.

One gate. Not five.

Open Questions