Conductor CLAUDE.md

Conductor CLAUDE.md is an instructions file for coding agents from jarmstrong158/Conductor. It costs 2,365 tokens per session, scanned A, original, MIT.

A set of Claude Code instructions describing Conductor, a local dashboard for scheduling Python and batch workers. It documents how Conductor runs, where its data is stored, and how worker scripts should be launched.

In plain words
What is it for?
Providing coding guidance for Conductor, including its REST API, SQLite storage, source and executable modes, and worker-command setup.
Why use it?
It gives the coding agent project-specific facts and warnings that prevent incorrect assumptions about the dashboard, database, and Python runtime.

Instructions file

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.

agentmods
npx agentmods add instructions/jarmstrong158/conductor/claude-md
Clone the repo
git clone --depth 1 https://github.com/jarmstrong158/Conductor

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 Conductor CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/jarmstrong158/conductor/claude-md.svg)](https://agentmods.dev/instructions/jarmstrong158/conductor/claude-md)
Your own site
<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>
Per session 2,365 This file is loaded in full into every session.
When invoked 2,365 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.02365 $0.02365
Opus 5 $0.01182 $0.01182
Sonnet 5 $0.00473 $0.00473
Haiku 4.5 $0.00236 $0.00236

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

Security

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.

CLAUDE.md · 145 lines

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 file
  • sched_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 environment
  • requirements — comma-separated pip packages auto-installed before first run
  • new_console — opens a new terminal window (Windows only, suppresses stdout capture)
  • output_dir — working directory for the subprocess
  • group_id — optional group assignment

Read the full file on GitHub · 145 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. 4d ago First seen · 145 lines · 2,365 tokens per session scan A f58f37c760d7

Subscribe to this mod's changes

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.

Related

Other instructions, from other repositories

enferno AGENTS.md

Instructions for level09/enferno, covering agents.md, framework overview, project structure, development commands and setup & installation.

level09/enferno · 6,870 tokens

Vibe-Research AGENTS.md

AGENTS.md instructions for simonlin1212/Vibe-Research, covering vibe-research-agent 金融研究宪法, 0. 三条不可越线, 1. 数据纪律(五问 gate:给出任何数字或结论前逐条自问), 2. 研究哲学(评估框架,不是预测工具) and 3. 估值口径(你只选输入、解释输出;计算交给 calc/).

simonlin1212/Vibe-Research · 4,469 tokens

worldmonitor AGENTS.md

AGENTS.md instructions for koala73/worldmonitor, covering agents.md, task mode and authority, start here, surface routing and architecture invariants.

koala73/worldmonitor · 2,568 tokens

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.

mckinsey/vizro · 332 tokens

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.

redis/redis-vl-python · 1,033 tokens

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.

metabase/metabase · 377 tokens