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.
npx skills add mturac/hermes-supercode-skills --skill mcp-conductorgit clone --depth 1 https://github.com/mturac/hermes-supercode-skillsWrote 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/skills/mturac/hermes-supercode-skills/mcp-conductor)<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>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.00133 | $0.01307 |
| Opus 5 | $0.00067 | $0.00654 |
| Sonnet 5 | $0.00027 | $0.00261 |
| Haiku 4.5 | $0.00013 | $0.00131 |
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.
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
- Decompose before executing — never start work on a complex task without first mapping out the full dependency graph
- Route to the right tool — each subtask should use the most appropriate skill or tool, not a generalist approach
- Parallelize independent work — tasks without dependencies on each other should run concurrently
- Fail gracefully — if one subtask fails, assess whether dependent tasks can still proceed or need to wait for a retry
- 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]
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.
- 8d ago First seen · 179 lines · 133 tokens per session scan A bc5a7220ac72
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.
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.
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.
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.
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…
[object Object]
Rules, skills, and guidelines for AI coding assistants – Claude, Cursor, and beyond.
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…