check_acceptance_criterion
Mark an acceptance criterion as completed in a story file by specifying its index or text, updating backlog status for project tracking.
Instructions
Mark a single acceptance criterion as checked (- [ ] → - [x]) in a story file. Identify the target by criterion_index (0-based) or criterion_text (case-insensitive exact match). Exactly one must be provided. Returns {story_id, criterion, checked, path}. Errors if the story is not found, the criterion is not found, or it is already checked.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| criterion_index | No | 0-based index of the criterion to check. Use when you know the position. Mutually exclusive with criterion_text. | |
| criterion_text | No | Exact text of the criterion to check (case-insensitive). Use when you know the text. Mutually exclusive with criterion_index. | |
| story_id | Yes | Story ID to update, e.g. STORY-047 |