workflow-orchestrator

workflow-orchestrator is a skill for Claude Code from k1lgor/virtual-company. It costs 29 tokens per session (3,318 once invoked), scanned A, original, MIT.

A method for designing workflows made of multiple steps, states, agents, or skills. It can represent state machines, which describe allowed stages and transitions in a process.

In plain words
What is it for?
Use it to design multi-step processes, order-processing state machines, parallel batch jobs, data-migration failure handling, and coordinated work across agents.
Why use it?
It helps make dependencies, error boundaries, and safe parallel work explicit. This reduces conflicts when several workers or agents coordinate on one task.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md.

Part of the virtual-company plugin — 27 skills, 1 command, 6 agents, 3 hooks shipped together

Good fit Use it to design multi-step processes, order-processing state machines, parallel batch jobs, data-migration failure handling, and coordinated work across agents.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/k1lgor/virtual-company/24-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 k1lgor/virtual-company --skill 24-workflow-orchestrator
Clone the repo
git clone --depth 1 https://github.com/k1lgor/virtual-company

Made for: Claude Code.

Or install virtual-company, the plugin that ships this one along with the rest of its 27 skills, 1 command, 6 agents, 3 hooks.

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/k1lgor/virtual-company/24-workflow-orchestrator/github.svg)](https://agentmods.dev/skills/k1lgor/virtual-company/24-workflow-orchestrator)
Your own site
<a href="https://agentmods.dev/skills/k1lgor/virtual-company/24-workflow-orchestrator"><img src="https://agentmods.dev/badge/skills/k1lgor/virtual-company/24-workflow-orchestrator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for workflow-orchestrator

Your own site · 80×15
<a href="https://agentmods.dev/skills/k1lgor/virtual-company/24-workflow-orchestrator"><img src="https://agentmods.dev/badge/skills/k1lgor/virtual-company/24-workflow-orchestrator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,318 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.00029 $0.03318
Opus 5 $0.00015 $0.01659
Sonnet 5 $0.00006 $0.00664
Haiku 4.5 $0.00003 $0.00332

Measured 10d ago against content hash 7e9cabc43cc2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, 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 10d ago.

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.

skills/24-workflow-orchestrator/SKILL.md · 361 lines

How it starts

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

🤖 Workflow Orchestrator / Systems Architect

You are the Master of Process. You design the "State Machines" of software — complex, multi-step workflows that coordinate human, machine, and AI interactions into seamless execution.

🛑 The Iron Law

NO PARALLEL DISPATCH WITHOUT INDEPENDENCE VERIFICATION

Before dispatching agents in parallel, you MUST verify the tasks have no shared state or sequential dependencies. Parallel agents that interfere with each other create more bugs than they fix.

🛠️ Tool Guidance

  • Deep Audit: Use Read to audit existing business processes or sequence diagrams.
  • Mapping: Use Glob to identify existing "Workers", "Handlers", or "Task" definitions.
  • Execution: Use Edit to generate workflow definitions (YAML/JSON) or state-machine code.

📍 When to Apply

  • "How should we coordinate these 4 microservices for this checkout flow?"
  • "Design a state-machine for our order processing."
  • "What is the best way to parallelize this offline batch job?"
  • "Define the error-boundary for this multi-step data migration."
  • "Coordinate multiple domain experts to build a feature."

Decision Tree: Parallel vs Sequential

graph TD
    A[Complex Task] --> B{Subtasks independent?}
    B -->|Yes, no shared state| C{Can they run concurrently?}
    B -->|No, shared state| D[Sequential chain]
    C -->|Yes| E[Parallel dispatch]
    C -->|No (resource limits)| F[Batched parallel]
    E --> G[Monitor all agents]
    D --> H[Execute step → review → next step]
    F --> G
    G --> I{All completed?}
    I -->|Yes| J{Conflicts detected?}
    I -->|Agent failed| K[Handle failure mode]
    J -->|Yes| L[Merge conflicts manually]
    J -->|No| M[Integration verification]
    L --> M
    K --> N{Retry or escalate?}
    N -->|Retry| O[Re-dispatch with fix]
    N -->|Escalate| P[Alert human]
    O --> G
    M --> Q[✅ Workflow complete]

Read the full file on GitHub · 361 lines

Files

What ships with it

1 file 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. 10d ago First seen · 361 lines · 29 tokens per session scan A 7e9cabc43cc2

Subscribe to this mod's changes

workflow-orchestrator is a skill published in the GitHub repository k1lgor/virtual-company (4 stars, last pushed 2mo ago), licensed MIT. It adds 29 tokens to every session and 3,318 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.

Related

Other skills, from other repositories