name: normies-workflow description: Orchestrate Docker-isolated, branch-based multi-agent git workflows with normies. Use for parallel edits, retries, and explicit review/integration gates.
Normies Workflow
When To Use
Use this skill when work should be parallelized across multiple agents or needs branch-isolated execution with review gates.
Run Sequence
normies doctor --repo <repo>normies init --template baseline --output normies.spec.json --repo <repo> --yesnormies run --repo <repo> --spec normies.spec.json --jobs <N>normies retry --run-id <run_id> --failed --jobs <N>(if needed)normies review --run-id <run_id>normies integrate --run-id <run_id>normies cleanup --run-id <run_id>
Default Guardrails
- Keep
needs_networkdisabled unless required. - Keep commands idempotent and non-interactive.
- Keep
review.required_checksexplicit.