Refine a product backlog item from Idea to Refinement status (PBI). A PBI is a user story, task, or bug. For user stories, ideally a mockup is provided. Also you should create a Acceptance Criteria feature file (.feature) (ATDD - Acceptance Test Driven Development). Link all those files as references to the PBI.
Refine a PBI in Idea status by moving it to Refinement, ensuring Definition of Done exists, creating mockups for user stories, and ATDD feature files.
backlog task <taskId> --plain
backlog task edit <taskId> -s "Refinement"
Verify DoD items exist (defaults from config.yml):
backlog task <taskId> --plain
If missing, add DoD items:
backlog task edit <taskId> --dod "Unit Tests written" --dod "Code reviewed"
For user stories, create a UI mockup:
create-mockup skillbacklog/assets/<task-prefix>-<taskId>.jpgCreate Gherkin feature file for acceptance criteria:
create-atdd skillbacklog/assets/<task-prefix>-<taskId>.featurebacklog task edit CLI only (never edit task markdown files directly)