← ClaudeAtlas

iw-workflowlisted

IW AI Core workflow orchestration rules, manifest schema, and agent contract definitions. Use when executing work item workflows, parsing agent results, managing fix cycles, or understanding the automated development pipeline.
innovation-ways/iw-ai-core · ★ 0 · AI & Automation · score 67
Install: claude install-skill innovation-ways/iw-ai-core
# IW Workflow Orchestration Rules This skill defines the rules for automated workflow execution in the IW AI Core development pipeline. ## Global agent constraints All step agents MUST respect the rules in `docs/IW_AI_Core_Agent_Constraints.md`. The orchestrator MUST surface these rules when enumerating constraints for a step prompt if it is possible to do so programmatically. At minimum: the "⛔ Docker is off-limits" rule applies to every agent without exception. Summary of the Docker rule (full text in the policy doc): - No docker kill / stop / rm / restart - No docker compose up / down / restart (and the docker-compose v1 variants) - No docker volume rm / prune - No docker system / container / image prune - Exceptions: testcontainers (pytest fixtures), read-only introspection (docker ps / inspect / logs), invoking ./ai-core.sh or make targets. ## Platform Architecture Work items flow through these phases: 1. **Design** — `/iw-new-incident`, `/iw-new-feature`, or `/iw-new-cr` creates design docs + manifest 2. **Register** — `iw register {ID} "title" --type {type} --steps-from workflow-manifest.json` 3. **Approve** — `iw approve {ID}` (human reviews design, then approves) 4. **Batch** — `iw batch-create {ID}` → `iw batch-approve BATCH-001` (daemon picks up) 5. **Execute** — Daemon creates worktree, launches agents per step 6. **Merge** — Daemon squash-merges to main after all steps pass 7. **Archive** — `iw archive {ID}` (design doc → DB, files compressed to .tar.zst)