Definition of Ready
Ensures work items are ready for development before sprint intake. Combines PM requirements skills + architect design feasibility + security threat assessment.
Domain Context
A team's velocity (or lack thereof) is often determined not by how fast engineers code, but by how often they're blocked waiting for clarification, design direction, or security sign-off.
Definition of Ready (DoR) is a collective agreement about what information a work item must have before it can be brought into a sprint. It's not a checklist to optimize away; it's an investment that accelerates the entire team.
Who owns DoR?
- Product Manager — Writes clear problem statements, acceptance criteria, success metrics
- Architect — Confirms design feasibility, identifies complexity hotspots
- Security — Identifies threat surface, required security design
- Designer — Assesses UX implications and design work required
- Tech Lead — Estimates complexity, identifies dependencies
A work item is "ready" when the team that will execute it has everything needed to execute efficiently.
ISO/IEC 12207 Reference:
- 5.2.1 Stakeholder Needs and Requirements Definition
- 5.3.1 System Requirements Analysis (feasibility assessment)
Instructions
Step 1: Collect the Work Item
- Input: Work item (story, feature, task, spike)
- Ask: What's the title, description, acceptance criteria?
- Ask: Who wrote it? Is it from a user request, roadmap, technical debt, or incident?
Step 2: PM Perspective — Problem Statement and Acceptance Criteria
Check:
- Problem Statement: Is the "why" clear? (Who has the problem? What's the impact?)
- Success Metric: Can we measure success? (e.g., "reduce checkout time to <2s", "eliminate class of bugs")
- Acceptance Criteria: Are the requirements specific and testable? (Not vague like "improve performance")
- Out of Scope: Are assumptions and boundaries clear? (What's NOT included?)
- Dependencies: Are external dependencies identified? (API contracts, third-party services, data sources)
- Stakeholders: Who needs to sign off? (PM, architect, security, designer)
Output: Requirements completeness checklist
Step 3: Architect Perspective — Design Feasibility
Check:
- Is the approach feasible? Does it fit the existing architecture? (Or require architectural change?)
- Design Complexity: What's the complexity tier? (Trivial, simple, moderate, complex)
- Dependencies: Are there internal dependencies or integration points?
- Performance: Will this meet performance targets?
- Scalability: Will this scale to expected load?
- Integration Points: Are all integrations identified and scoped?
Output: Feasibility assessment
Step 4: Security Perspective — Threat Assessment
Check:
- Threat Surface: What new security boundaries does this create?
- Authentication/Authorization: Are access controls needed?
- Data Sensitivity: Is PII, secrets, or regulated data involved?
- Third-Party Risk: Are we calling external services? Trusted?
- Compliance: Does this touch regulated domains (payments, health, finance)?
- Design Review: Has security architecture been sketched?
Output: Security threat assessment
Step 5: Designer Perspective — UX and Accessibility
Check:
- User Flows: Are the user flows clear? (Happy path, error cases)
- Design Mockups: Are there design artifacts? (Wireframes, prototypes)
- Accessibility: Are accessibility requirements documented? (WCAG 2.1 AA minimum)
- Content: Is copy/messaging clear and reviewed?
- Interactions: Are complex interactions documented?
Output: Design feasibility assessment
Step 6: Tech Lead Perspective — Complexity and Effort
Check:
- Effort Estimate: Can the team estimate this? (If not, it's a spike)
- Team Skills: Does the team have the skills? (Or need training, hiring, or pairing?)
- Testing Strategy: Is the test strategy clear?
- Deployment Risk: Is this low-risk (feature flag, new code) or high-risk (shared libraries, data migrations)?
Output: Effort and complexity estimate
Step 7: Consolidate the DoR Checklist
DoR Checklist for [Work Item ID]: [Title]
[ ] PM
[ ] Problem statement is clear
[ ] Success metric is defined and measurable
[ ] Acceptance criteria are specific and testable
[ ] Out-of-scope items are documented
[ ] Dependencies are identified
[ ] Stakeholders identified
[ ] Architect
[ ] Approach is feasible within existing architecture
[ ] Complexity tier is assigned
[ ] Internal dependencies identified
[ ] Performance targets understood
[ ] Integration points scoped
[ ] Security
[ ] Threat surface identified
[ ] Auth/authz requirements documented (if needed)
[ ] Data sensitivity classified
[ ] Third-party risk assessed
[ ] Compliance impact assessed
[ ] Security design reviewed
[ ] Designer
[ ] User flows documented
[ ] Design artifacts exist (mockups/prototypes)
[ ] Accessibility requirements documented
[ ] Copy/messaging reviewed
[ ] Tech Lead
[ ] Effort can be estimated
[ ] Team has required skills (or pairing plan exists)
[ ] Test strategy is documented
[ ] Deployment strategy is clear
Ready? [ ] Yes (all boxes checked) [ ] No (see blocking issues below)
Step 8: Identify Blocking Issues
For each unchecked box:
- What's missing? (artifact, clarity, decision, design)
- Who provides it? (PM, architect, security, designer, tech lead)
- How long to fix? (estimate in hours or days)
Blocking issues prevent the work item from entering the sprint.
Step 9: Communicate Ready/Not Ready
Ready Decision:
- All boxes are checked
- No blocking issues remain
- Document: "Ready to intake into sprint [X]. Assigned to [engineer/team]. Est. [effort]. Start date: [date]."
Not Ready Decision:
- Blocking issues exist
- Document: "Not ready. Blockers: [list]. Required actions: [list]. Re-evaluate on [date]."
Anti-Patterns
DoR as a bottleneck
- Mistake: "PM must fill out a 50-field form before anything is ready"
- Correct: DoR should be lightweight and focused on unblocking the team
- Fix: Define 5-7 essential questions; everything else is detail
DoR only applies to features, not bugs or tech debt
- Mistake: "Bugs are ready immediately; no DoR needed"
- Correct: Even bugs benefit from clarity on root cause, reproduction, and priority
- Fix: Lightweight DoR for bugs: "Reproduction steps, severity, affected users, architect approval if cross-team impact"
Skipping the security review because "it's internal"
- Mistake: "We're only changing internal APIs, so no security risk"
- Correct: Internal code paths are attack vectors; threat model always
- Fix: Always include security in DoR; they can sign off in 30 min for low-risk items
DoR that's static and never evolves
- Mistake: "We defined DoR in 2019 and never changed it"
- Correct: DoR should evolve with team maturity, incident learnings, and tooling
- Fix: Retro question: "Should we add or remove anything from DoR?"
Using DoR as an excuse to ship incomplete planning
- Mistake: "DoR is checked, so we're done planning"
- Correct: DoR is the minimum; complex work still needs detailed design and spike time
- Fix: For complex items, plan spike time to reduce design uncertainty
Not using DoR to predict problems
- Mistake: "DoR is just paperwork"
- Correct: DoR should surface risks and misalignment before coding starts
- Fix: Ask after each sprint: "Which DoR items would have prevented our recent bugs?"
Further Reading
1---2name: definition-of-ready3description: Definition of Ready4---5# Definition of Ready67Ensures work items are ready for development before sprint intake. Combines PM requirements skills + architect design feasibility + security threat assessment.89## Domain Context1011A team's velocity (or lack thereof) is often determined not by how fast engineers code, but by how often they're blocked waiting for clarification, design direction, or security sign-off.1213**Definition of Ready** (DoR) is a collective agreement about what information a work item must have before it can be brought into a sprint. It's not a checklist to optimize away; it's an investment that accelerates the entire team.1415**Who owns DoR?**1617- **Product Manager** — Writes clear problem statements, acceptance criteria, success metrics18- **Architect** — Confirms design feasibility, identifies complexity hotspots19- **Security** — Identifies threat surface, required security design20- **Designer** — Assesses UX implications and design work required21- **Tech Lead** — Estimates complexity, identifies dependencies2223A work item is "ready" when the team that will execute it has everything needed to execute efficiently.2425**ISO/IEC 12207 Reference:**2627- 5.2.1 Stakeholder Needs and Requirements Definition28- 5.3.1 System Requirements Analysis (feasibility assessment)2930## Instructions3132### Step 1: Collect the Work Item3334- **Input**: Work item (story, feature, task, spike)35- **Ask**: What's the title, description, acceptance criteria?36- **Ask**: Who wrote it? Is it from a user request, roadmap, technical debt, or incident?3738### Step 2: PM Perspective — Problem Statement and Acceptance Criteria3940Check:4142- **Problem Statement**: Is the "why" clear? (Who has the problem? What's the impact?)43- **Success Metric**: Can we measure success? (e.g., "reduce checkout time to <2s", "eliminate class of bugs")44- **Acceptance Criteria**: Are the requirements specific and testable? (Not vague like "improve performance")45- **Out of Scope**: Are assumptions and boundaries clear? (What's NOT included?)46- **Dependencies**: Are external dependencies identified? (API contracts, third-party services, data sources)47- **Stakeholders**: Who needs to sign off? (PM, architect, security, designer)4849Output: Requirements completeness checklist5051### Step 3: Architect Perspective — Design Feasibility5253Check:5455- **Is the approach feasible?** Does it fit the existing architecture? (Or require architectural change?)56- **Design Complexity**: What's the complexity tier? (Trivial, simple, moderate, complex)57- **Dependencies**: Are there internal dependencies or integration points?58- **Performance**: Will this meet performance targets?59- **Scalability**: Will this scale to expected load?60- **Integration Points**: Are all integrations identified and scoped?6162Output: Feasibility assessment6364### Step 4: Security Perspective — Threat Assessment6566Check:6768- **Threat Surface**: What new security boundaries does this create?69- **Authentication/Authorization**: Are access controls needed?70- **Data Sensitivity**: Is PII, secrets, or regulated data involved?71- **Third-Party Risk**: Are we calling external services? Trusted?72- **Compliance**: Does this touch regulated domains (payments, health, finance)?73- **Design Review**: Has security architecture been sketched?7475Output: Security threat assessment7677### Step 5: Designer Perspective — UX and Accessibility7879Check:8081- **User Flows**: Are the user flows clear? (Happy path, error cases)82- **Design Mockups**: Are there design artifacts? (Wireframes, prototypes)83- **Accessibility**: Are accessibility requirements documented? (WCAG 2.1 AA minimum)84- **Content**: Is copy/messaging clear and reviewed?85- **Interactions**: Are complex interactions documented?8687Output: Design feasibility assessment8889### Step 6: Tech Lead Perspective — Complexity and Effort9091Check:9293- **Effort Estimate**: Can the team estimate this? (If not, it's a spike)94- **Team Skills**: Does the team have the skills? (Or need training, hiring, or pairing?)95- **Testing Strategy**: Is the test strategy clear?96- **Deployment Risk**: Is this low-risk (feature flag, new code) or high-risk (shared libraries, data migrations)?9798Output: Effort and complexity estimate99100### Step 7: Consolidate the DoR Checklist101```102103DoR Checklist for [Work Item ID]: [Title]104105[ ] PM106[ ] Problem statement is clear107[ ] Success metric is defined and measurable108[ ] Acceptance criteria are specific and testable109[ ] Out-of-scope items are documented110[ ] Dependencies are identified111[ ] Stakeholders identified112113[ ] Architect114[ ] Approach is feasible within existing architecture115[ ] Complexity tier is assigned116[ ] Internal dependencies identified117[ ] Performance targets understood118[ ] Integration points scoped119120[ ] Security121[ ] Threat surface identified122[ ] Auth/authz requirements documented (if needed)123[ ] Data sensitivity classified124[ ] Third-party risk assessed125[ ] Compliance impact assessed126[ ] Security design reviewed127128[ ] Designer129[ ] User flows documented130[ ] Design artifacts exist (mockups/prototypes)131[ ] Accessibility requirements documented132[ ] Copy/messaging reviewed133134[ ] Tech Lead135[ ] Effort can be estimated136[ ] Team has required skills (or pairing plan exists)137[ ] Test strategy is documented138[ ] Deployment strategy is clear139140Ready? [ ] Yes (all boxes checked) [ ] No (see blocking issues below)141142```143144### Step 8: Identify Blocking Issues145146For each unchecked box:147- **What's missing?** (artifact, clarity, decision, design)148- **Who provides it?** (PM, architect, security, designer, tech lead)149- **How long to fix?** (estimate in hours or days)150151Blocking issues prevent the work item from entering the sprint.152153### Step 9: Communicate Ready/Not Ready154155**Ready Decision:**156- All boxes are checked157- No blocking issues remain158- Document: "Ready to intake into sprint [X]. Assigned to [engineer/team]. Est. [effort]. Start date: [date]."159160**Not Ready Decision:**161- Blocking issues exist162- Document: "Not ready. Blockers: [list]. Required actions: [list]. Re-evaluate on [date]."163164## Anti-Patterns1651661. **DoR as a bottleneck**167 - Mistake: "PM must fill out a 50-field form before anything is ready"168 - Correct: DoR should be lightweight and focused on unblocking the team169 - Fix: Define 5-7 essential questions; everything else is detail1701712. **DoR only applies to features, not bugs or tech debt**172 - Mistake: "Bugs are ready immediately; no DoR needed"173 - Correct: Even bugs benefit from clarity on root cause, reproduction, and priority174 - Fix: Lightweight DoR for bugs: "Reproduction steps, severity, affected users, architect approval if cross-team impact"1751763. **Skipping the security review because "it's internal"**177 - Mistake: "We're only changing internal APIs, so no security risk"178 - Correct: Internal code paths are attack vectors; threat model always179 - Fix: Always include security in DoR; they can sign off in 30 min for low-risk items1801814. **DoR that's static and never evolves**182 - Mistake: "We defined DoR in 2019 and never changed it"183 - Correct: DoR should evolve with team maturity, incident learnings, and tooling184 - Fix: Retro question: "Should we add or remove anything from DoR?"1851865. **Using DoR as an excuse to ship incomplete planning**187 - Mistake: "DoR is checked, so we're done planning"188 - Correct: DoR is the minimum; complex work still needs detailed design and spike time189 - Fix: For complex items, plan spike time to reduce design uncertainty1901916. **Not using DoR to predict problems**192 - Mistake: "DoR is just paperwork"193 - Correct: DoR should surface risks and misalignment before coding starts194 - Fix: Ask after each sprint: "Which DoR items would have prevented our recent bugs?"195196## Further Reading197198- **Scrum Guide** — Schwaber, K. & Sutherland, J., Definition of Ready (https://scrumguides.org/)199- **Agile Requirements** — Cohn, M., "User Stories Applied" (Addison-Wesley)200- **Work Item Templates** — SAFe, "Lean Portfolio Management" (https://www.scaledagileframework.com/)