Claude-skill-registry aico-pm-acceptance-criteria
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/aico-pm-acceptance-criteria" ~/.claude/skills/majiayu000-claude-skill-registry-aico-pm-acceptance-criteria && rm -rf "$T"
manifest:
skills/data/aico-pm-acceptance-criteria/SKILL.mdsource content
Acceptance Criteria
⚠️ CRITICAL RULES - READ FIRST
- READ STORY FIRST: Always read the story file from
before writing criteriadocs/reference/pm/stories/ - USE GIVEN/WHEN/THEN: All criteria must follow this format
- UPDATE STORY FILE: Add criteria to existing story file, don't create new files
Language Configuration
Before generating any content, check
aico.json in project root for language field to determine the output language. If not set, default to English.
Process
- Review story/feature: Understand what needs to be done
- Identify success scenarios: Happy paths first
- Write Given/When/Then: For each scenario
- Add edge cases: Boundary conditions and errors
- Verify testability: Each criterion must be independently verifiable
Acceptance Criteria Template
### Acceptance Criteria for [Story/Feature] #### Scenario 1: [Scenario Name] - **Given** [precondition/context] - **When** [action/trigger] - **Then** [expected outcome] #### Scenario 2: [Scenario Name] - **Given** [precondition/context] - **When** [action/trigger] - **Then** [expected outcome] #### Edge Cases - **Given** [edge case condition] - **When** [action] - **Then** [expected behavior]
Criteria Categories
| Category | Examples |
|---|---|
| Functional | Feature works as specified |
| Validation | Input validation rules |
| Error handling | Error messages and recovery |
| Performance | Response time expectations |
| Accessibility | A11y requirements |
Quality Checklist
- Each criterion is independently testable
- No ambiguous language ("should", "might", "could")
- Edge cases are covered
- Error states are defined
- Performance expectations stated (if relevant)
Key Rules
- ALWAYS use Given/When/Then structure
- MUST make each criterion independently testable
- ALWAYS include edge cases and error scenarios
- NEVER use vague language - be specific
Common Mistakes
- ❌ Vague criteria ("works correctly") → ✅ Specific conditions
- ❌ Missing edge cases → ✅ Include boundary conditions
- ❌ Implementation details → ✅ Focus on observable behavior