pipeline-orchestrator-engineer

pipeline-orchestrator-engineer is an agent for Claude Code from notque/vexjoy-agent. It costs 23 tokens per session (3,573 once invoked), scanned A, original, MIT.

An agent role for designing workflows that coordinate several components, including parallel work followed by a combined result. It also finds reusable project components and connects new pieces to the project's routing system.

In plain words
What is it for?
Use it to scaffold multi-component pipelines, divide work into subdomains, run parallel creation steps, combine their outputs, and update routing for the finished components.
Why use it?
It helps break large creation tasks into smaller coordinated parts while keeping the result consistent with existing templates and components. The workflow is intended to reduce duplicate work and integration gaps.

Agent for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths; mentions subagents.

Good fit Use it to scaffold multi-component pipelines, divide work into subdomains, run parallel creation steps, combine their outputs, and update routing for the finished components.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/notque/vexjoy-agent/pipeline-orchestrator-engineer
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/notque/vexjoy-agent

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 pipeline-orchestrator-engineer

README.md
[![agentmods](https://agentmods.dev/badge/agents/notque/vexjoy-agent/pipeline-orchestrator-engineer.svg)](https://agentmods.dev/agents/notque/vexjoy-agent/pipeline-orchestrator-engineer)
Your own site
<a href="https://agentmods.dev/agents/notque/vexjoy-agent/pipeline-orchestrator-engineer"><img src="https://agentmods.dev/badge/agents/notque/vexjoy-agent/pipeline-orchestrator-engineer.svg" alt="Measured on agentmods" height="20"></a>
Per session 23 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,573 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.03573
Opus 5 $0.00012 $0.01786
Sonnet 5 $0.00005 $0.00715
Haiku 4.5 $0.00002 $0.00357

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

Security

Grade A, and why

pipeline-orchestrator-engineer 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 3d 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.

agents/pipeline-orchestrator-engineer.md · 220 lines

How it starts

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

Scaffold multi-component pipelines using fan-out/fan-in, component reuse, template validation, and routing integration.

Priority order: (1) reuse existing components, (2) parallel scaffolding, (3) template compliance, (4) routing integration.

Operator Context

Hardcoded Behaviors (Always Apply)

  • Over-Engineering Prevention: Only scaffold components that are genuinely needed. If an existing agent or skill covers the requirement, bind it rather than creating a duplicate.
  • Discovery Before Creation: Run codebase-overview (or an equivalent scan) before scaffolding, so existing components are found before new ones are created. The environmental state JSON from pipeline-context-detector provides the baseline — use it.
  • Template Enforcement: Every generated agent follows AGENT_TEMPLATE_V2.md; every skill follows the standard SKILL.md frontmatter + operator context pattern, because the validators and routing tables parse those shapes.
  • Single-Purpose Components: Each scaffolded component (agent, skill, hook) must serve exactly one purpose. If a component does two things, split it.
  • Parallel Research: When the generated pipeline includes an information-gathering phase, dispatch N parallel research agents (default 4) rather than sequential searches.
  • Domain Research First: For domain pipeline requests, Call the Skill tool with workflow. Use its research phase before composing chains to discover subdomains; the old DISCOVER phase checked only existing components.
  • Chain Validation Required: Run scripts/artifact-utils.py validate-chain on every composed chain and scaffold only from chains that pass.
  • Skills >> Agents: Produce more skills than agents. When an existing agent covers 70%+ of the domain, bind new skills to it rather than creating a new agent.
  • Tool Restriction Enforcement (ADR-063): Every scaffolded agent includes allowed-tools in frontmatter. Match role type: reviewers get read-only, research gets no Edit/Write/Bash, code modifiers get full access. Pipeline components inherit restrictions from their role. Validate with python3 ~/.claude/scripts/audit-tool-restrictions.py --audit.

Read the full file on GitHub · 220 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. 3d ago Changed · -20 lines 5465bea606d6
  2. 4d ago Changed 96f84f983a48
  3. 8d ago First seen · 240 lines · 23 tokens per session scan A f8d10d219b3e

Subscribe to this mod's changes

pipeline-orchestrator-engineer is an agent published in the GitHub repository notque/vexjoy-agent (419 stars, last pushed 3d ago), licensed MIT. It adds 23 tokens to every session and 3,573 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-30.

Related

Other agents, from other repositories

godot-game-dev

Use this agent when the user needs help implementing Godot Engine features, including GDScript or C# coding, scene/node setup, player controllers, enemy AI, inventory systems, dialogue, save/load, HUD, cameras, multiplayer, or any Godot-specific implementation. Examples: Context: User needs to implement enemy AI.…

jame581/GodotPrompter · 357 tokens

code-reviewer

Expert code review specialist with severity-rated feedback, logic defect detection, SOLID principle checks, style, performance, and quality strategy.

kingkingburger/plugin-mh · 29 tokens

Demonstrate

Agent for demonstrating VS Code features.

microsoft/vscode · 10 tokens

playwright-test-generator

Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.

microsoft/playwright · 151 tokens

AVM Owner Triage

Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.

github/awesome-copilot · 61 tokens

Ultimate Transparent Thinking Beast Mode

Agent "Ultimate Transparent Thinking Beast Mode" from github/awesome-copilot, covering quantum cognitive architecture, phase 2: adversarial intelligence & red-team analysis, phase 3: implementation & iterative refinement and phase 4: comprehensive verification & completion.

github/awesome-copilot · 11 tokens