Workflow Orchestrator

Workflow Orchestrator is a skill for Claude Code from Razaib-khan/ForgeWeave. It costs 23 tokens per session (731 once invoked), scanned A, original, MIT.

A coordinator for running several agent skills as a connected workflow. A skill is a reusable procedure an AI coding agent can follow, such as researching, planning, building, or testing.

In plain words
What is it for?
Defining or automatically arranging skill pipelines, running independent steps in parallel when possible, retrying or skipping failed steps, and returning the final result with an execution trace.
Why use it?
It passes results between steps, handles dependencies, and can recover from failures in a multi-step task.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions OpenCode.

Good fit Defining or automatically arranging skill pipelines, running independent steps in parallel when possible, retrying or skipping failed steps, and returning the final result with an execution trace.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/razaib-khan/forgeweave/workflow-orchestrator
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Razaib-khan/ForgeWeave --skill workflow-orchestrator
Clone the repo
git clone --depth 1 https://github.com/Razaib-khan/ForgeWeave

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for Workflow Orchestrator

README.md
[![agentmods](https://agentmods.dev/badge/skills/razaib-khan/forgeweave/workflow-orchestrator.svg)](https://agentmods.dev/skills/razaib-khan/forgeweave/workflow-orchestrator)
Your own site
<a href="https://agentmods.dev/skills/razaib-khan/forgeweave/workflow-orchestrator"><img src="https://agentmods.dev/badge/skills/razaib-khan/forgeweave/workflow-orchestrator.svg" alt="Measured on agentmods" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 731 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00023 $0.00731
Opus 5 $0.00012 $0.00365
Sonnet 5 $0.00005 $0.00146
Haiku 4.5 $0.00002 $0.00073

Measured 7d ago against content hash 823fe002edcf, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

Workflow Orchestrator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/execute_pipeline.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

src/forgeweave/templates/claude/.claude/skills/workflow-orchestrator/SKILL.md · 97 lines

How it starts

The opening of the file, as written. The whole thing — 97 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Workflow Orchestrator

Purpose

Coordinate the execution of multiple skills in sequence or parallel to achieve a complex goal. Handles dependency resolution, data passing between skills, error recovery, and progress reporting. The top-level orchestrator that makes multi-step agentic workflows reliable.

When to Use

  • A complex goal requires 3+ skills in sequence (e.g., research → plan → build → test)
  • Multiple independent subtasks can run in parallel
  • A pipeline needs retry logic or error recovery
  • The user wants a multi-step workflow executed end-to-end

When Not to Use

  • Only one skill is needed — invoke it directly
  • The steps are manual and need user approval at each stage
  • The workflow is a simple linear script — use a script instead

Inputs

Input Type Required Description
goal string Yes The overall objective
pipeline_definition array No Explicit skill order if known (auto-generated if omitted)
fallback_strategy enum No (default: stop) stop, retry, skip

Expected Outputs

Output Description
Pipeline result The output of the final skill
Execution trace What ran, in what order, what each produced
Status report Success, failures, and retries

Exact Workflow Steps

  1. Accept the goal from the user or from a command
  2. Decompose the goal into ordered skills using planner skill
  3. Identify dependencies between skills (blocking, parallel, sequential)
  4. Execute skills in dependency order:
    • Parallel skills run concurrently
    • Sequential skills run in order, passing outputs
  5. After each skill, validate output using validation-engine
  6. On failure: retry, skip, or stop based on fallback strategy
  7. Report results to user with execution trace

Required Checks

  • All skills in the pipeline are available
  • Dependency order is correct (no cycles)
  • Each skill's output is valid before passing to next
  • Fallback strategy is defined for every pipeline step

Read the full file on GitHub · 97 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 97 lines · 23 tokens per session scan A 823fe002edcf

Subscribe to this mod's changes

Workflow Orchestrator is a skill published in the GitHub repository Razaib-khan/ForgeWeave (1 stars, last pushed 2mo ago), licensed MIT. It adds 23 tokens to every session and 731 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.