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 agentmods add instructions/jarmstrong158/conductor/claude-mdgit clone --depth 1 https://github.com/jarmstrong158/ConductorWrote 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/instructions/jarmstrong158/conductor/claude-md)<a href="https://agentmods.dev/instructions/jarmstrong158/conductor/claude-md"><img src="https://agentmods.dev/badge/instructions/jarmstrong158/conductor/claude-md.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 | $0.02365 | $0.02365 |
| Opus 5 | $0.01182 | $0.01182 |
| Sonnet 5 | $0.00473 | $0.00473 |
| Haiku 4.5 | $0.00236 | $0.00236 |
Grade A, and why
Conductor CLAUDE.md 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 4d 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 — 145 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Conductor — Claude Context
Conductor is a local web dashboard for managing scheduled Python and batch workers via APScheduler + SQLite. It runs at http://127.0.0.1:5000 and exposes a REST API that this MCP server wraps.
The MCP server auto-launches the installed Conductor.exe from %APPDATA%/Redis Operator/ if it's not already running.
Redis is not used. It was advertised and bundled but every piece of state lives in SQLite; the client was assigned and never read. Removed.
Running from source is supported (python launch.py) and is how the test suite runs. The old "never run from source" rule was written when the frozen exe was assumed to be the only working mode — in fact it was the broken one (see below). The real caveat is only that source runs default to the repo's conductor.db, not the exe's AppData copy.
Running user scripts — do not use sys.executable
conductor.spec freezes launch.py, so inside the exe sys.executable is Conductor.exe, not a Python. Building a worker command as [sys.executable, task_path] produced Conductor.exe user_script.py; launch.py ignores sys.argv, so it printed a banner, opened a browser tab and exited 0 — and Conductor recorded success for a script that never ran.
Always resolve an interpreter with _resolve_python() and guard the command with _assert_not_self(). _resolve_python() checks CONDUCTOR_PYTHON, a bundled python, the py launcher, PATH, then the Windows registry, and raises InterpreterNotFound rather than ever returning the Conductor binary. Never silently succeed.
What it does
Users register scripts (.py, .bat, .sh, .cmd) and give them a schedule. Conductor fires them on time, logs the results, and shows everything in a browser dashboard. No terminal needed after launch.
Scripts can be chained together into sequential or parallel pipelines. Workers can be grouped for organization. Everything persists in SQLite.
Core concepts
Workers
A worker is one script on one schedule. Key fields:
task_path— absolute path to the script filesched_type— "fixed", "interval", or "cron"sched_value— "09:00,14:30" / "2h 30m" / "0 9 * * 1-5"timeout_minutes— kills the process after N minutes (0 = no timeout)env_vars— KEY=VALUE lines injected into subprocess environmentrequirements— comma-separated pip packages auto-installed before first runnew_console— opens a new terminal window (Windows only, suppresses stdout capture)output_dir— working directory for the subprocessgroup_id— optional group assignment
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.
- 4d ago First seen · 145 lines · 2,365 tokens per session scan A f58f37c760d7
Conductor CLAUDE.md is an instructions file published in the GitHub repository jarmstrong158/Conductor (0 stars, last pushed 1mo ago), licensed MIT. It adds 2,365 tokens to every session, about $0.0118 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 instructions, from other repositories
enferno AGENTS.md
Instructions for level09/enferno, covering agents.md, framework overview, project structure, development commands and setup & installation.
Vibe-Research AGENTS.md
AGENTS.md instructions for simonlin1212/Vibe-Research, covering vibe-research-agent 金融研究宪法, 0. 三条不可越线, 1. 数据纪律(五问 gate:给出任何数字或结论前逐条自问), 2. 研究哲学(评估框架,不是预测工具) and 3. 估值口径(你只选输入、解释输出;计算交给 calc/).
worldmonitor AGENTS.md
AGENTS.md instructions for koala73/worldmonitor, covering agents.md, task mode and authority, start here, surface routing and architecture invariants.
vizro copilot-instructions.md
Copilot instructions for mckinsey/vizro, covering github copilot instructions for vizro, pull requests from bots and automated tooling and everything else.
redis-vl-python CLAUDE.md
Claude Code instructions for redis/redis-vl-python, covering claude.md - redisvl project context, frequently used commands, development workflow, redis setup and documentation.
metabase copilot-instructions.md
Copilot instructions for metabase/metabase, covering metabase developer assistant instructions, code review standards, security critical issues, performance red flags and code quality essentials.