claudectl CLAUDE.md

claudectl CLAUDE.md is an instructions file for Claude Code from mercurialsolo/claudectl. It costs 4,378 tokens per session, scanned A, original, MIT.

Repository instructions for claudectl, a Rust application that coordinates groups of Claude Code agents using a local language model. They describe its Cargo workspace, layered crates, build commands, and testing rules.

In plain words
What is it for?
Use them when changing claudectl’s agent coordination, terminal interface, core runtime, workspace dependencies, or release checks.
Why use it?
They clarify how the core, terminal interface, and orchestration layers may depend on one another, reducing architectural and build errors.

Instructions file for Claude Code

Written for Claude Code: PreToolUse hook event. Also seen: reads .claude/ paths; mentions Claude Code.

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/mercurialsolo/claudectl/claude-md
Clone the repo
git clone --depth 1 https://github.com/mercurialsolo/claudectl

Made for: Claude Code.

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/mercurialsolo/claudectl/claude-md.svg)](https://agentmods.dev/instructions/mercurialsolo/claudectl/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/mercurialsolo/claudectl/claude-md"><img src="https://agentmods.dev/badge/instructions/mercurialsolo/claudectl/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 4,378 This file is loaded in full into every session.
When invoked 4,378 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.1 $0.04378 $0.04378
Opus 5 $0.02189 $0.02189
Sonnet 5 $0.00876 $0.00876
Haiku 4.5 $0.00438 $0.00438

Measured 6d ago against content hash 2c2289ff9b4c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

claudectl 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 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.

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

claudectl

Orchestrate a swarm of Claude Code agents with a local-LLM brain that learns from you.

Build & Test

cargo build                  # Debug build
cargo build --release        # Release build, default features (bus+coord+relay+hive) — ~6.3 MB; matches the Homebrew bottle
cargo build --release --no-default-features --features hive   # Minimal sync-only build — ~3.5 MB
cargo test                   # Run all tests
cargo clippy -- -D warnings  # Lint (warnings are errors in CI)
cargo fmt --check            # Check formatting

Architecture

Workspace layout

This is a Cargo workspace with three crates. Dependencies flow strictly downward — claudectl → claudectl-tui → claudectl-core — and CI enforces it (Layering grep on core, plus standalone build jobs for each crate). Adding upward arrows is what the workspace exists to prevent.

crates/
├── claudectl-core/    # foundational types, IO, the UI↔runtime trait contract
│                      #   session, discovery, monitor, process, transcript,
│                      #   models, theme, logger, helpers, history, terminals/,
│                      #   health, rules, config, hooks, launch, skills, runtime
└── claudectl-tui/     # terminal UI + recording + demo fixtures
                       #   app.rs, ui/*, recorder.rs, session_recorder.rs, demo.rs
                       #   Depends on claudectl-core. Never on the binary.
src/                   # the binary crate `claudectl`
                       #   main.rs + brain/ + bus/ + coord/ + hive/ + relay/ +
                       #   orchestrator + init + commands + config.rs +
                       #   brain_screen.rs.
                       #   Implements the runtime traits over the real
                       #   subsystems via `src/runtime/`.

UI ↔ runtime contract lives at crates/claudectl-core/src/runtime.rs. Eight traits — SessionSource, BrainView, CoordView, BusView, Actions, BrainReviewView, Orchestrator, HiveActions, plus the stateful BrainDriver — wrapped in a Runtime aggregate. Core-owned DTOs (SessionSnapshot, DecisionSummary, LeaseSummary, HiveViewSnapshot, etc.) so the contract doesn't drag brain / coord / bus types upward. The binary's src/runtime/ provides Live* adapters that implement each trait over the real subsystem.

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. 6d ago First seen · 179 lines · 4,378 tokens per session scan A 2c2289ff9b4c

Subscribe to this mod's changes

claudectl CLAUDE.md is an instructions file published in the GitHub repository mercurialsolo/claudectl (197 stars, last pushed 1mo ago), licensed MIT. It adds 4,378 tokens to every session, about $0.0219 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.