Back to glossary

Acceptance Criteria

Specific, testable conditions that a user story must satisfy to be considered complete. Acceptance criteria define the boundaries of a feature by specifying expected behavior, edge cases, and quality requirements in unambiguous terms.

Well-written acceptance criteria eliminate ambiguity about what done means for a given user story. They are typically written in Given-When-Then format: Given a specific context, When the user takes an action, Then the system produces a defined result. Each criterion should be independently testable and verifiable by anyone on the team.

For AI features, acceptance criteria require careful thought because AI behavior is probabilistic rather than deterministic. Instead of specifying exact outputs, criteria might define acceptable accuracy ranges, maximum response times, and graceful degradation behavior. For example: Given a user query in English, When the AI generates a response, Then the response is factually accurate at least 95% of the time as measured by human evaluation. Growth teams should ensure acceptance criteria include analytics instrumentation requirements, so every shipped feature produces the data needed to measure its impact on growth metrics. Missing instrumentation is one of the most common and costly oversights in AI feature development.

Related Terms