workflow-orchestration

workflow-orchestration is a skill for Claude Code from AnastasiyaW/codex-claude-code-config. It costs 266 tokens per session (4,394 once invoked), scanned A, original, MIT.

A way to run complex coding or research work through a fixed program that coordinates many AI agents. It stores intermediate results and can resume an interrupted run.

In plain words
What is it for?
Use it for large codebase audits, migrations, cross-checked research, and other jobs that need many agents working in parallel or in defined stages.
Why use it?
It reduces the risk that a long task loses track of its steps or produces inconsistent handoffs between agents.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths; mentions subagents; mentions Claude Code.

Part of the claude-code-config plugin — 57 skills, 8 agents shipped together

Good fit Use it for large codebase audits, migrations, cross-checked research, and other jobs that need many agents working in parallel or in defined stages.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/anastasiyaw/codex-claude-code-config/workflow-orchestration
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 AnastasiyaW/codex-claude-code-config --skill workflow-orchestration
Clone the repo
git clone --depth 1 https://github.com/AnastasiyaW/codex-claude-code-config

Made for: Claude Code.

Or install claude-code-config, the plugin that ships this one along with the rest of its 57 skills, 8 agents.

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-orchestration

README.md
[![agentmods](https://agentmods.dev/badge/skills/anastasiyaw/codex-claude-code-config/workflow-orchestration.svg)](https://agentmods.dev/skills/anastasiyaw/codex-claude-code-config/workflow-orchestration)
Your own site
<a href="https://agentmods.dev/skills/anastasiyaw/codex-claude-code-config/workflow-orchestration"><img src="https://agentmods.dev/badge/skills/anastasiyaw/codex-claude-code-config/workflow-orchestration.svg" alt="Measured on agentmods" height="20"></a>
Per session 266 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,394 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium analysis-evasion · line 1
    Suspicious Unicode normalization or mixed-script content
    Fix: Review the flagged content for security risks. Ensure no credentials, secrets, or sensitive data are exposed.
How audits are shown
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.00266 $0.04394
Opus 5 $0.00133 $0.02197
Sonnet 5 $0.00053 $0.00879
Haiku 4.5 $0.00027 $0.00439

Measured today against content hash 8ef74d57d050, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

workflow-orchestration 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 today.

The scan reads SKILL.md. This mod also ships 3 executable files (references/workflow-template.js, scripts/test_accounting.mjs, scripts/validate.mjs), 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.

skills/development/workflow-orchestration/SKILL.md · 226 lines

How it starts

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

Workflow Orchestration

Claude Code dynamic workflows - JS-скрипт, который оркестрирует недетерминированных субагентов. Скрипт = «рельсы» (loop, branching, промежуточные результаты в переменных); агенты = «поезда». Надёжность даёт код вокруг агентов, а не агенты сами. Доступность зависит от плана, текущей конфигурации и runtime: на Pro включи Dynamic workflows в /config; перед запуском проверь доступность в текущей сессии.

Этот skill - наш свод поверх официального API: что платформа уже даёт, и что мы добавляем сами для задач, где нужна доказуемая полнота batch-результата.

Текущая опора (проверено 2026-09-06): официальная документация, официальный разбор и официальный cookbook. Дата обновления docs/cookbook на странице не указана; blog датирован 2026-06-02.

Когда workflow, а когда нет

Subagent Skill Agent Team Workflow
Что воркер, спавнится разово инструкции для Claude сварм, коллаборация скрипт, исполняет runtime
Кто решает что дальше Claude, ход за ходом Claude по промпту Claude + обмен между агентами скрипт (детерминизм)
Где промежуточные результаты контекст Claude контекст Claude контекст Claude переменные скрипта
Масштаб пара задач/ход как subagent х2-х10 агентов десятки-сотни, лимит 1000
Прерывание рестарт хода рестарт хода рестарт хода resumable в той же сессии

Бери workflow когда: задаче нужно больше агентов, чем удержит один контекст; нужна повторяемая оркестрация как читаемый скрипт; нужен repeatable quality-паттерн (агенты adversarially проверяют находки друг друга перед тем как их вернуть).

Практический тест: бери workflow, когда работа больше контекста одного агента или один и тот же шаг надо повторить по множеству независимых элементов, а orchestration полезно сохранить и повторить. Для 1--3 одноразовых делегаций бери subagent. Это не правило «все три условия», а выбор масштаба и повторяемости.

Read the full file on GitHub · 226 lines

Files

What ships with it

6 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. today Changed · +29 lines · -10 tokens per session 8ef74d57d050
  2. 8d ago First seen · 197 lines · 276 tokens per session scan A 9a4ad6641fa2

Subscribe to this mod's changes

workflow-orchestration is a skill published in the GitHub repository AnastasiyaW/codex-claude-code-config (149 stars, last pushed today), licensed MIT. It adds 266 tokens to every session and 4,394 once invoked, about $0.0013 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-30.