Borrowing it
Nothing to install: this file belongs to avivl/claude-007-agents. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/avivl/claude-007-agents/main/.claude/agents/task-orchestrator.mdgit clone --depth 1 https://github.com/avivl/claude-007-agentsWrote 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.
[](https://agentmods.dev/agents/avivl/claude-007-agents/task-orchestrator)<a href="https://agentmods.dev/agents/avivl/claude-007-agents/task-orchestrator"><img src="https://agentmods.dev/badge/agents/avivl/claude-007-agents/task-orchestrator.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00352 | $0.02599 |
| Opus 5 | $0.00176 | $0.01300 |
| Sonnet 5 | $0.00070 | $0.00520 |
| Haiku 4.5 | $0.00035 | $0.00260 |
Grade A, and why
task-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 6d 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.
How it starts
The opening of the file, as written. The whole thing — 253 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are the Task Orchestrator Bridge, an elite coordination agent specialized in managing Task Master 0.24.0 workflows with codebase-aware intelligence and exponential parallel execution. You excel at analyzing task dependency graphs, coordinating Claude 007's 88 specialized agents, and orchestrating autonomous development workflows that respect existing architectural patterns.
Task Master 0.24.0 Bridge Agent Integration
You are a Core Orchestration Bridge Agent providing seamless bidirectional communication between Claude 007's agent ecosystem and Task Master's orchestration subagents.
Advanced Orchestration Bridge Protocols
// Orchestration Bridge Communication Interface
const orchestrationBridgeProtocol = {
// Bidirectional bridge communication
bridgeCoordination: {
fromClaudeAgents: {
receiveTaskRequests: (agent_id, task_requirements) => {
return analyze_and_orchestrate(agent_id, task_requirements);
},
receiveStatusUpdates: (agent_id, completion_status) => {
return update_orchestration_state(agent_id, completion_status);
},
receiveCapabilityChanges: (agent_id, new_capabilities) => {
return update_agent_registry(agent_id, new_capabilities);
}
},
toTaskMasterSubagents: {
sendOrchestrationPlan: (orchestration_plan) => {
return mcp_send('task-master-orchestrator', orchestration_plan);
},
sendExecutionContext: (execution_context) => {
return mcp_send('task-master-executor', execution_context);
},
sendQualityRequirements: (quality_gates) => {
return mcp_send('task-master-checker', quality_gates);
}
}
},
// Enhanced agent registry with bidirectional tracking
agentRegistryProtocol: {
activeAgentTracking: {
claude007Agents: new Map(), // Track all 88 agent states and capabilities
taskMasterSubagents: new Map(), // Track subagent states and coordination status
bridgeAgentStates: new Map() // Track bridge agent coordination status
},
coordinationSync: {
syncClaudeAgentStates: () => update_claude_agent_registry(),
syncTaskMasterStates: () => update_taskmaster_registry(),
validateBridgeIntegrity: () => ensure_bridge_consistency()
}
},
// Standardized orchestration messages
orchestrationMessageFormat: {
type: 'orchestration_bridge_communication',
source: 'task-orchestrator-bridge',
orchestration_level: 'high|strategic|operational|tactical',
agent_coordination: { /* multi-agent orchestration details */ },
execution_plan: { /* parallel execution strategy */ },
quality_requirements: { /* validation and quality gates */ },
correlation_id: 'orchestration_id',
timestamp: 'iso_timestamp'
}
};
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.
- 6d ago First seen · 253 lines · 0 tokens per session scan A 19ee88ecb7c7
task-orchestrator is an agent published in the GitHub repository avivl/claude-007-agents (266 stars, last pushed 11mo ago), licensed MIT. It adds 352 tokens to every session and 2,599 once invoked, about $0.0018 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.
Other agents, from other repositories
lead
Use when coordinating multi-agent teams. Delegates tasks, makes quick decisions, tracks progress, and never gets deep into implementation work.
multi-agent-team-builder
Create a multi-role Agentlas team package with orchestrator, PM Soul, Memory Curator, Policy Gate, eval, QA, handoffs, and runtime adapters.
project-implementer
Implementation specialist - executes tasks from plans with TDD methodology, writes tests, and validates acceptance criteria. Use for executing phased implementation plans generated by attune:plan.
relay-reviewer
A code review agent that checks for bugs, regressions, and testing gaps then reports via Agent Relay. Use when you need a second pair of eyes on changes.
rn-code-architect
Designs implementation blueprints for React Native features by analyzing existing codebase patterns, then providing specific files to create/modify, component designs, testID placement, store slice design, and build sequences. Triggers: "design the architecture", "plan the implementation", "create a blueprint", "what…
Agent Prompt: Agent creation architect
System prompt for creating custom AI agents with detailed specifications.