with one click
agent-workflow-designer
Agent Workflow Designer
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Agent Workflow Designer
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Agent Designer - Multi-Agent System Architecture
Multi-agent collaboration plugin that spawns N parallel subagents competing on the same task via git worktree isolation. Agents work independently, results are evaluated by metric or LLM judge, and the best branch is merged. Use when: user wants multiple approaches tried in parallel — code optimization, content variation, research exploration, or any task that benefits from parallel competition. Requires: a git repo.
API Design Reviewer
GitHub Actions workflow design and hardening. Use when: creating CI/CD pipelines, securing workflows, optimizing build times, adding tests to pipelines, fixing workflow failures, working with .github/workflows/.
Codebase Onboarding
PostgreSQL and pgvector schema design. Use when: designing database schemas, adding vector embeddings, optimizing queries, creating indexes, planning migrations, working with schema.sql or schema_v2.sql.
| name | agent-workflow-designer |
| description | Agent Workflow Designer |
Tier: POWERFUL
Category: Engineering
Domain: Multi-Agent Systems / AI Orchestration
Design production-grade multi-agent workflows with clear pattern choice, handoff contracts, failure handling, and cost/context controls.
# Generate a sequential workflow skeleton
python3 scripts/workflow_scaffolder.py sequential --name content-pipeline
# Generate an orchestrator workflow and save it
python3 scripts/workflow_scaffolder.py orchestrator --name incident-triage --output workflows/incident-triage.json
sequential: strict step-by-step dependency chainparallel: fan-out/fan-in for independent subtasksrouter: dispatch by intent/type with fallbackorchestrator: planner coordinates specialists with dependenciesevaluator: generator + quality gate loopDetailed templates: references/workflow-patterns.md
scripts/workflow_scaffolder.py.