From antigravity-awesome-skills
Plan, orchestrate, and adversarially verify parallel AI coding agents across multiple tools like Claude, Codex, and Antigravity.
How this skill is triggered — by the user, by Claude, or both
Slash command
/antigravity-awesome-skills:open-dynamic-workflowsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Open Dynamic Workflows (ODW) is an open-source dynamic multi-agent workflow engine for AI coding agents such as OpenCode, Codex, Antigravity, and VS Code. It lets you plan a task, orchestrate multiple agents working in parallel, and adversarially verify their output before it lands. ODW ships a Codex/Antigravity skill folder (`SKILL.md` plus a daemon bridge) and an OpenCode plugin, and it is br...
Open Dynamic Workflows (ODW) is an open-source dynamic multi-agent workflow engine for AI coding agents such as OpenCode, Codex, Antigravity, and VS Code. It lets you plan a task, orchestrate multiple agents working in parallel, and adversarially verify their output before it lands. ODW ships a Codex/Antigravity skill folder (SKILL.md plus a daemon bridge) and an OpenCode plugin, and it is bring-your-own-model (Anthropic, OpenAI-compatible, or Ollama). This skill is adapted from the community project at Suraj1235/open-dynamic-workflows.
ODW takes a high-level goal and produces a dynamic workflow graph of subtasks, identifying which can run in parallel and which have dependencies.
The engine dispatches subtasks to parallel agents through the OpenCode plugin or the Codex/Antigravity daemon bridge, using your configured model provider (Anthropic, OpenAI-compatible, or Ollama).
Completed work is routed through an adversarial verification pass that challenges the output before results are synthesized and returned.
ODW is installed from source (clone the repo, then npm install). The CLI is
odw-daemon — run it as npm run odw -- <args> from inside the repo, or as
npx odw-daemon <args> / a global odw-daemon if you link the bin.
# Configure your model provider (bring-your-own-model)
export ANTHROPIC_API_KEY=... # or an OpenAI-compatible / Ollama endpoint
# One-time setup: generate ~/.odw/config.json
npm run setup
# Start the local workflow daemon (once)
npm run odw -- start
# Plan, orchestrate, and verify a task across parallel agents
npm run odw -- run --prompt "refactor the auth module and add tests"
# ODW ships a SKILL.md + daemon bridge consumed by Codex / Antigravity.
# Start the daemon, then run a saved orchestration script through it:
npm run odw -- start
npm run odw -- run --script examples/workflows/studio-prime.workflow.js --cwd .
@multi-agent-orchestration - When coordinating multiple agents on one goal.@code-review - How adversarial verification complements human review.npx claudepluginhub sickn33/antigravity-awesome-skills --plugin antigravity-bundle-aas-mobile-app-builderOrchestrates Claude Code's native agents for parallel multi-domain tasks like comprehensive code analysis, feature reviews, and security audits requiring diverse expertise.
Orchestrates multi-agent work at scale—research swarms, parallel builds, wave dispatch, build-review-fix pipelines, and any task needing 3+ agents. Selects strategy by work shape and partitions agents for true parallelism.
Orchestrates multiple parallel agents to decompose large tasks like migrations, multi-file refactors, or batch work using the Double Diamond methodology.