Chain your brainstorm → plan → execute → review → fix → ship pattern into one autonomous workflow that runs end-to-end from a Linear ticket ID. Parallel sub-agents handle implementation slices concurrently, a reviewer pool critiques each slice in isolation, and a coordinator agent reconciles findings before opening the MR—turning your current 8-step manual sequence (visible across TATO-2575, TATO-2582, etc.) into a single command.
Getting started: Build a custom slash command in your dev-workflow plugin that composes existing ba:propose, ba:execute, and review skills using the Task tool to spawn parallel sub-agents, with AskUserQuestion gates only at major decision points (plan approval, MR description).
Paste into Claude Code:
I want to extend my dev-workflow plugin with a new /dev-workflow:ba:autopilot command that takes a Linear ticket ID and autonomously: (1) fetches the ticket and runs the brainstorm skill, (2) generates an implementation plan with slices, (3) for each slice spawns a sub-agent via the Task tool to implement it in parallel where dependencies allow, (4) after implementation spawns 6 parallel reviewer sub-agents (architecture, tests, a11y, types, performance, copy) on the diff, (5) consolidates findings and auto-applies high-confidence fixes, (6) opens the MR with screenshots and description. Add AskUserQuestion gates ONLY at: plan approval, slice-execution-order confirmation, and final MR description review. Study my existing skills in the dev-workflow plugin, propose the command architecture, identify which steps are safe to fully automate vs. need gates based on my friction history (wrong_approach=18, misunderstood_request=9), and implement it with tests.
Chain your brainstorm → plan → execute → review → fix → ship pattern into one autonomous workflow that runs end-to-end from a Linear ticket ID. Parallel sub-agents handle implementation slices concurrently, a reviewer pool critiques each slice in isolation, and a coordinator agent reconciles findings before opening the MR—turning your current 8-step manual sequence (visible across TATO-2575, TATO-2582, etc.) into a single command.
Paste into Claude Code:
I want to extend my dev-workflow plugin with a new /dev-workflow:ba:autopilot command that takes a Linear ticket ID and autonomously: (1) fetches the ticket and runs the brainstorm skill, (2) generates an implementation plan with slices, (3) for each slice spawns a sub-agent via the Task tool to implement it in parallel where dependencies allow, (4) after implementation spawns 6 parallel reviewer sub-agents (architecture, tests, a11y, types, performance, copy) on the diff, (5) consolidates findings and auto-applies high-confidence fixes, (6) opens the MR with screenshots and description. Add AskUserQuestion gates ONLY at: plan approval, slice-execution-order confirmation, and final MR description review. Study my existing skills in the dev-workflow plugin, propose the command architecture, identify which steps are safe to fully automate vs. need gates based on my friction history (wrong_approach=18, misunderstood_request=9), and implement it with tests.