pull

A command that downloads a community workflow from an orchestration registry or directly from a GitHub repository. A workflow is a saved sequence of instructions for carrying out a development task.

In plain words
What is it for?
Use it to fetch a named workflow from the official registry or download a specific .flow file from GitHub into the local workspace.
Why use it?
It avoids manually finding, copying, and saving workflow files. The command can use a registry name or a GitHub path and reports available workflows if a registry name is not found.

Command

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.

agentmods
npx agentmods add commands/mbruhler/claude-orchestration/pull
Clone the repo
git clone --depth 1 https://github.com/mbruhler/claude-orchestration
Per session 12 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 427 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00012 $0.00427
Opus 5 $0.00006 $0.00214
Sonnet 5 $0.00002 $0.00085
Haiku 4.5 $0.00001 $0.00043

Measured 2d ago against content hash e59b6c02747e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

pull scanned grade A with 1 finding 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 2d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s https://raw.githubusercontent.com/mbruhler/claude-orchestration/main/registry/index.json
commands/pull.md · 50 lines

What it actually says

Pulling Workflows

Downloads a workflow from the community registry or directly from a GitHub repository and saves it to your local workspace.

Arguments: {{ARGS}}

The workflow identifier to pull. This can be:

  1. A name from the official registry (e.g. tdd-autopilot)
  2. A direct GitHub path (e.g. username/repo/path/to/workflow.flow)

Execution Process

Phase 1: Determine Source

Check the argument to see if it's a direct GitHub path (contains a /) or a registry name (no /).

Phase 2: Fetch Registry (If applicable)

If it's a registry name, fetch the official registry index using bash:

curl -s https://raw.githubusercontent.com/mbruhler/claude-orchestration/main/registry/index.json

Parse the JSON and find the URL for the requested workflow. If not found, show an error and list available workflows.

Phase 3: Construct Raw URL (If direct GitHub path)

If the user provided username/repo/workflow.flow, convert it to a raw GitHub URL: https://raw.githubusercontent.com/username/repo/main/workflow.flow (You may need to ask the user if the branch is main or master if the first attempt fails).

Phase 4: Download the Workflow

Use curl or wget to download the file content. Save the downloaded content into the ./examples/ directory in the current working directory, using the workflow's filename.

mkdir -p ./examples
curl -sL "<URL>" -o "./examples/<workflow-name>.flow"

Phase 5: Confirm

Display a success message to the user:

✅ Successfully pulled workflow: <workflow-name>
Saved to: ./examples/<workflow-name>.flow

To run it, type:
/orchestration:run ./examples/<workflow-name>.flow
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. 2d ago First seen · 50 lines · 12 tokens per session scan A e59b6c02747e

Subscribe to this mod's changes

pull is a command published in the GitHub repository mbruhler/claude-orchestration (218 stars, last pushed 3mo ago), licensed MIT. It adds 12 tokens to every session and 427 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.