← ClaudeAtlas

st-full-workflowlisted

Use when the user asks to run the complete end-to-end Strikethroo workflow for a work order in one shot in this repository — triggers include full workflow, end-to-end, plan and execute, do everything, run the whole strikethroo workflow. Do not use when the user wants only one stage (create a plan, generate tasks, or execute a blueprint); use the dedicated skill for that stage instead.
e0ipso/strikethroo · ★ 46 · AI & Automation · score 76
Install: claude install-skill e0ipso/strikethroo
# st-full-workflow Drive the complete end-to-end Strikethroo workflow from initial plan creation through final blueprint execution and archival. The skill is assistant-agnostic and self-contained: every script it invokes lives under this skill's `scripts/` directory and is referenced by relative path. ## Critical Rule Execute all three steps sequentially without waiting for user input between them. This is a fully automated orchestration workflow. Progress indicators are for user visibility only and do not pause execution. ## Inputs The user supplies the work order conversationally. Treat it as the only authoritative source of intent. Do not invent answers to clarifying questions — prompt the user instead. ## Context Passing Between Steps Information flows through the workflow via structured output parsing: 1. **Step 1 → Step 2**: Extract the numeric `Plan ID` from the Step 1 structured summary output. Use this exact ID to drive Step 2. 2. **Step 2 → Step 3**: Extract the `Tasks` count from the Step 2 structured summary output. Use this count for progress tracking during Step 3. Do not proceed to the next step until the structured output from the current step has been successfully parsed. ## Progress Indicators Display progress indicators at key transition points to provide visual feedback without interrupting execution: - `⬛⬜⬜ 33%` — Step 1: Plan Creation Complete - `⬛⬛⬜ 66%` — Step 2: Task Generation Complete - `⬛⬛⬛ 100%` — Step 3: Blueprint Execution Complete