| name | implement |
| version | 0.4.0 |
| description | Story-to-code workflow that takes a Jira Story, plans the implementation, writes contract-based tests and production code via TDD, validates against the project's CI expectations, and manages review via GitHub PRs. Use when implementing Jira stories produced by the design workflow. Activated by commands: /ingest, /plan, /revise, /code, /validate, /publish, /respond. |
Implement Workflow Orchestrator
Quick Start
- If the user invoked a specific command (e.g.,
/plan, /code), read
commands/{command}.md and follow it.
- Otherwise, read
skills/controller.md to load the workflow controller:
- If the user provided a Jira issue key or URL, execute the
/ingest phase
- Otherwise, execute the first phase the user requests
If a step fails or produces unexpected output (e.g., Jira MCP errors, test
failures, build errors), stop and report the error to the user. Do not
advance to the next phase. Offer to retry the failed step or escalate.
For principles, hard limits, safety, quality, and escalation rules, see guidelines.md.