45 lines
1.4 KiB
Markdown
45 lines
1.4 KiB
Markdown
# story-ready Workflow Rule
|
|
|
|
This rule defines the story-ready workflow.
|
|
|
|
## Workflow Description
|
|
|
|
Marks a drafted story as ready for development and moves it from TODO → IN PROGRESS in the status file. Simple status-update workflow with no searching required.
|
|
|
|
## Workflow Definition
|
|
|
|
# Story Ready Workflow (SM Agent)
|
|
name: story-ready
|
|
description: "Marks a drafted story as ready for development and moves it from TODO → IN PROGRESS in the status file. Simple status-update workflow with no searching required."
|
|
author: "BMad"
|
|
|
|
# Critical variables from config
|
|
config_source: "{project-root}/.bmad/bmm/config.yaml"
|
|
output_folder: "{config_source}:output_folder"
|
|
user_name: "{config_source}:user_name"
|
|
communication_language: "{config_source}:communication_language"
|
|
date: system-generated
|
|
sprint_status: "{context_dir}/sprint-status.yaml || {output_folder}/sprint-status.yaml"
|
|
|
|
# Workflow components
|
|
installed_path: "{project-root}/.bmad/bmm/workflows/4-implementation/story-ready"
|
|
instructions: "{installed_path}/instructions.md"
|
|
|
|
# Variables and inputs
|
|
variables:
|
|
story_dir: "{config_source}:dev_ephemeral_location/stories" # Directory where stories are stored
|
|
|
|
# Output configuration - no output file, just status updates
|
|
default_output_file: ""
|
|
|
|
standalone: true
|
|
|
|
|
|
## Usage
|
|
|
|
Reference this workflow with `@workflow-story-ready` to execute the guided workflow.
|
|
|
|
## Module
|
|
|
|
Part of the BMAD BMM module.
|