mcp-conductor

mcp-conductor is a skill for Claude Code from mturac/hermes-supercode-skills. It costs 133 tokens per session (1,307 once invoked), scanned A, original, MIT.

A task-orchestration guide for breaking complex requests into dependent subtasks and coordinating tools or agents. It can plan parallel work, manage dependencies, combine results, and handle conflicts.

In plain words
What is it for?
Use it for requests such as collecting data from several sites, comparing the results, and producing one combined deliverable.
Why use it?
It makes multi-part work easier to organize when different tasks require different tools or must happen in a particular order.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the api-sculptor plugin — 13 skills shipped together , and of auth-architect, db-whisperer, deploy-ninja, ghost-scraper, infra-automation, mcp-conductor, obs-guardian, pipeline-architect, prediction-alpha, prompt-forge, quantum-debugger, security-sentinel

Good fit Use it for requests such as collecting data from several sites, comparing the results, and producing one combined deliverable.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mturac/hermes-supercode-skills/mcp-conductor
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 mturac/hermes-supercode-skills --skill mcp-conductor
Clone the repo
git clone --depth 1 https://github.com/mturac/hermes-supercode-skills

Made for: Claude Code.

Or install api-sculptor, the plugin that ships this one along with the rest of its 13 skills.

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 mcp-conductor

README.md
[![agentmods](https://agentmods.dev/badge/skills/mturac/hermes-supercode-skills/mcp-conductor.svg)](https://agentmods.dev/skills/mturac/hermes-supercode-skills/mcp-conductor)
Your own site
<a href="https://agentmods.dev/skills/mturac/hermes-supercode-skills/mcp-conductor"><img src="https://agentmods.dev/badge/skills/mturac/hermes-supercode-skills/mcp-conductor.svg" alt="Measured on agentmods" height="20"></a>
Per session 133 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,307 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.00133 $0.01307
Opus 5 $0.00067 $0.00654
Sonnet 5 $0.00027 $0.00261
Haiku 4.5 $0.00013 $0.00131

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

Security

Grade A, and why

mcp-conductor 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.

skills/mcp-conductor/SKILL.md · 179 lines

How it starts

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

MCP Conductor

You are a task orchestration specialist. Your job is to take complex, multi-domain requests and break them into a dependency graph of subtasks, route each subtask to the right tool or approach, manage execution order (parallel where possible, sequential where required), and merge the results into a coherent deliverable.

Core Principles

  1. Decompose before executing — never start work on a complex task without first mapping out the full dependency graph
  2. Route to the right tool — each subtask should use the most appropriate skill or tool, not a generalist approach
  3. Parallelize independent work — tasks without dependencies on each other should run concurrently
  4. Fail gracefully — if one subtask fails, assess whether dependent tasks can still proceed or need to wait for a retry
  5. Merge with conflict awareness — when combining results from multiple sources, detect and resolve contradictions

Workflow

1. Task Analysis

When the user describes a complex task, analyze it before acting:

Task: "Scrape 5 e-commerce sites, compare laptop prices, generate report"

Decomposition:
  subtasks: 7
  parallel_groups: 3
  sequential_dependencies: 2
  estimated_complexity: HIGH
  
  group_1 (parallel):
    - scrape_site_1
    - scrape_site_2
    - scrape_site_3
    - scrape_site_4
    - scrape_site_5
  
  group_2 (sequential, depends on group_1):
    - merge_and_compare_data
  
  group_3 (sequential, depends on group_2):
    - generate_report

Present this decomposition to the user before executing. They should understand and approve the plan.

2. Dependency Graph (DAG)

Build an explicit directed acyclic graph of task dependencies:

     [scrape_1] [scrape_2] [scrape_3] [scrape_4] [scrape_5]
          \         \         |         /         /
           \         \        |        /         /
            +---------+-------+-------+---------+
                              |
                       [merge_and_compare]
                              |
                       [generate_report]

Read the full file on GitHub · 179 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 · 179 lines · 133 tokens per session scan A bc5a7220ac72

Subscribe to this mod's changes

mcp-conductor is a skill published in the GitHub repository mturac/hermes-supercode-skills (2 stars, last pushed 3mo ago), licensed MIT. It adds 133 tokens to every session and 1,307 once invoked, about $0.0007 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 skills, from other repositories

csharp-coding-standards

Defines the C# coding standards, patterns, and conventions to be applied consistently across all C# projects. Rules cover naming, structure, async patterns, null handling, dependency injection, logging, result patterns, and formatting. Apply these rules uniformly in all production code.

linuxchata/ai-playbook · 61 tokens

csharp-api-controller-standards

Defines the coding standards, patterns, and conventions for ASP.NET Core REST API controllers. Rules cover routing, HTTP verbs, response types, XML documentation, dependency injection, and asynchronous execution. Apply these rules uniformly to ensure a consistent, predictable, and well-documented API surface.

linuxchata/ai-playbook · 63 tokens

csharp-testing-standards

Defines the testing standards, patterns, and conventions for all C# unit and integration test projects. Rules cover test framework usage, naming, structure, mocking, assertions, and parameterization. Apply these rules uniformly across all test projects.

linuxchata/ai-playbook · 53 tokens

swift-networking

Builds a protocol-based async/await networking layer with URLSession, testable abstractions, error handling, and mock support for Swift projects. Use when user says "add networking", "create an API layer", "fetch data from API", "build a network service", "add URLSession", "implement HTTP requests", "create a REST…

jeremieb/swift-unit-test-instructions · 82 tokens

[object Object]

Rules, skills, and guidelines for AI coding assistants – Claude, Cursor, and beyond.

linuxchata/ai-playbook · 8 tokens

swift-architecture-audit

Audits an existing Swift/SwiftUI/UIKit codebase for MVVM compliance, testability issues, architectural violations, concurrency problems, and anti-patterns. Use when user says "audit the codebase", "review the architecture", "why is this hard to test", "onboard to this project", "analyze the code structure", "find…

jeremieb/swift-unit-test-instructions · 88 tokens