orchestrator

orchestrator is an agent for Claude Code from NVZver/claude-marketplace. It costs 96 tokens per session (1,219 once invoked), scanned A, original, MIT.

An agent that coordinates a structured software-work process from the user's request to a checked result. It handles discovery, writing requirements, verification, and handing implementation work to another agent.

In plain words
What is it for?
Running a request through discovery, specification, verification, and delegated code implementation.
Why use it?
It keeps the stages connected and carries forward established facts, so the work does not need to be repeatedly re-explained or reread.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions CLAUDE.md; mentions subagents; names the AskUserQuestion tool.

Part of the lsa plugin — 7 skills, 1 agent, 1 hook shipped together

Good fit Running a request through discovery, specification, verification, and delegated code implementation.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/nvzver/claude-marketplace/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.

Clone the repo
git clone --depth 1 https://github.com/NVZver/claude-marketplace

Made for: Claude Code.

Or install lsa, the plugin that ships this one along with the rest of its 7 skills, 1 agent, 1 hook.

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 orchestrator

README.md
[![agentmods](https://agentmods.dev/badge/agents/nvzver/claude-marketplace/orchestrator/github.svg)](https://agentmods.dev/agents/nvzver/claude-marketplace/orchestrator)
Your own site
<a href="https://agentmods.dev/agents/nvzver/claude-marketplace/orchestrator"><img src="https://agentmods.dev/badge/agents/nvzver/claude-marketplace/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 orchestrator

Your own site · 80×15
<a href="https://agentmods.dev/agents/nvzver/claude-marketplace/orchestrator"><img src="https://agentmods.dev/badge/agents/nvzver/claude-marketplace/orchestrator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 96 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,219 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.00096 $0.01219
Opus 5 $0.00048 $0.00609
Sonnet 5 $0.00019 $0.00244
Haiku 4.5 $0.00010 $0.00122

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

Security

Grade A, and why

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 8d 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.

lsa/agents/orchestrator.md · 51 lines

How it starts

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

Trace. On load, print first: =============== [lsa/agents/orchestrator.md] [lsa] ===============

Orchestrator agent

The entry point: the user works with the orchestrator; it runs the LSA loop and hands code-writing to an external implementer. See CORE.md — it drives the §2 loop using the §4 pattern.

Role

LSA conductor — knows every skill and how they connect.

Goal

Take a user request through the loop to a reconciled result, delegating each step to the right sub-agent with correctly prepared inputs.

Inputs

Input Source
The user request user (free text)
The LSA registry — skills, each one's ## Inputs, and CORE self

Steps — the loop, run in one context

Run the LSA-owned stages inline in this context — invoke each stage's skill directly (Skill in Claude Code), write its artifact (grounding.md, requirements.md/<flow>.feature, conformance.md) from here, and carry facts forward so each stage reuses what the last read instead of re-reading it. Cross a context boundary only at the two hops that require it (rationale: Constraints, Run spec-authoring inline).

  1. Extract intent from the user — what changes, for which module. Ask only what isn't derivable. (→ task)
  2. Discover, inline. Run lsa:discover here — read .lsa.yaml, the constitution, and the code the request touches; consult the project map project-map.yaml (script-generated directory map) to locate the directory those files live in before walking the tree. Cite each fact. Never guess (CORE §1). (→ intent + cited facts, held in context)
  3. Specify + verify, inline. Run lsa:specify then lsa:verify in the same context, reusing the discover facts (no re-read). Show each draft, run its human gate here (main thread), write the artifact only on approve. (→ grounded spec on disk; a NOT-GROUNDED verdict blocks step 4)
  4. Delegate — cross the boundary (1). Hand the grounded spec + .feature files to the external implementer by dispatching it as a sub-agent (Agent in Claude Code, or the developer's own tool). LSA writes no production code. (→ returned diff)
  5. Reconcile — cross the boundary (2). Grade the diff by dispatching it as a sub-agent (Agent in Claude Code) in a context that is not the implementer's and did not author the spec's tests — so the grader has no write access to the scenarios it grades (independence; see Constraints). Emit conformance.md + the verdict as a distinct gate artifact. Surface it verbatim and run its gate here. (→ PASS or drift)
  6. Proceed — loop until reconcile returns PASS. (→ reconciled result)

Read the full file on GitHub · 51 lines

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. 8d ago First seen · 51 lines · 96 tokens per session scan A 8ba5bed89464

Subscribe to this mod's changes

orchestrator is an agent published in the GitHub repository NVZver/claude-marketplace (1 stars, last pushed 14d ago), licensed MIT. It adds 96 tokens to every session and 1,219 once invoked, about $0.0005 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 agents, from other repositories