Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Agent Workflow Designer

Designs production-grade multi-agent workflows with the right pattern, explicit handoff contracts, failure handling, and cost/context budgets.

AutomationAdvanced26,2603,699AI score 7/10Last updated: Aug 30, 2026

What it does

  • Picks the right workflow pattern (sequential, parallel, router, orchestrator, evaluator) based on dependency shape and risk.
  • Scaffolds a JSON workflow config skeleton via the bundled scaffolder script.
  • Forces explicit, bounded handoff contracts between agents.
  • Adds retries, timeouts, output validation gates, and per-step cost/context budgets.
  • Flags anti-patterns such as over-orchestrating a task a single good prompt could solve.

Who it's for

  • AI/backend engineers shipping LLM agent pipelines to production.
  • Teams refactoring workflows that suffer from context bloat or flaky handoffs.
  • Tech leads deciding between single-agent and multi-agent architectures.

Example uses

  1. "Design a content production pipeline" → sequential skeleton plus per-edge handoff fields.
  2. "Build incident triage with a planner and specialists" → orchestrator config saved to workflows/incident-triage.json.
  3. "My agent chain burns too many tokens" → redesign to pass targeted artifacts only, with budget and timeout limits per step.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/alirezarezvani/claude-skills/HEAD/.gemini/skills/agent-workflow-designer/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the .gemini/skills/agent-workflow-designer folder from the GitHub repo alirezarezvani/claude-skills into my ~/.claude/skills/agent-workflow-designer/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/alirezarezvani/claude-skills.git /tmp/claude-skills && mkdir -p ~/.claude/skills && cp -r /tmp/claude-skills/.gemini/skills/agent-workflow-designer ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal and clone the repo: git clone https://github.com/alirezarezvani/claude-skills.git
  2. Create the skills directory: mkdir -p ~/.claude/skills
  3. Copy just this skill: cp -r claude-skills/.gemini/skills/agent-workflow-designer ~/.claude/skills/
  4. Verify contents with ls ~/.claude/skills/agent-workflow-designer — look for SKILL.md, scripts/, references/. If scripts/ is missing, skip the Quick Start commands and use the design guidance only.
  5. Confirm Python is available: python3 --version
  6. Restart Claude Code and ask something like "design a multi-agent workflow for ..." to trigger the skill.