48 lines
1.5 KiB
Markdown
48 lines
1.5 KiB
Markdown
# workflow-status Workflow Rule
|
|
|
|
This rule defines the workflow-status workflow.
|
|
|
|
## Workflow Description
|
|
|
|
Lightweight status checker - answers "what should I do now?" for any agent. Reads YAML status file for workflow tracking. Use workflow-init for new projects.
|
|
|
|
## Workflow Definition
|
|
|
|
# Workflow Status - Master Router and Status Tracker
|
|
name: workflow-status
|
|
description: 'Lightweight status checker - answers "what should I do now?" for any agent. Reads YAML status file for workflow tracking. Use workflow-init for new projects.'
|
|
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"
|
|
document_output_language: "{config_source}:document_output_language"
|
|
user_skill_level: "{config_source}:user_skill_level"
|
|
date: system-generated
|
|
|
|
# Workflow components
|
|
installed_path: "{project-root}/.bmad/bmm/workflows/workflow-status"
|
|
instructions: "{installed_path}/instructions.md"
|
|
|
|
# Template for status file creation (used by workflow-init)
|
|
template: "{installed_path}/workflow-status-template.yaml"
|
|
|
|
# Path definitions for project types
|
|
path_files: "{installed_path}/paths/"
|
|
|
|
# Output configuration - reads existing status
|
|
default_output_file: "{output_folder}/bmm-workflow-status.yaml"
|
|
|
|
standalone: true
|
|
|
|
|
|
## Usage
|
|
|
|
Reference this workflow with `@workflow-workflow-status` to execute the guided workflow.
|
|
|
|
## Module
|
|
|
|
Part of the BMAD BMM module.
|