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/the-teacher/active_harness/claude-mdgit clone --depth 1 https://github.com/the-teacher/active_harnessWrote 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/the-teacher/active_harness/claude-md)<a href="https://agentmods.dev/instructions/the-teacher/active_harness/claude-md"><img src="https://agentmods.dev/badge/instructions/the-teacher/active_harness/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.1 | $0.02354 | $0.02354 |
| Opus 5 | $0.01177 | $0.01177 |
| Sonnet 5 | $0.00471 | $0.00471 |
| Haiku 4.5 | $0.00235 | $0.00235 |
Grade A, and why
active_harness 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.
How it starts
The opening of the file, as written. The whole thing — 123 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
What This Is
ActiveHarness is a Ruby gem (active_harness) for building production-grade LLM pipelines. It wraps individual LLM calls with retry logic, fallback chains, observability hooks, cost tracking, streaming, and consensus-based decisions. Works in plain Ruby and Rails. Current version: 0.2.x.
Commands
# Install dependencies (gem has no Gemfile — use bundler in consuming apps)
bundle install
# Build gem artifact
make build
# Bump patch version, sync, and release to RubyGems
make up
# Bump minor version
make up/minor
# Bump major version
make up/major
There is no automated test suite in this repo yet (no test/ directory, no Rakefile) and no linter. Ruby 2.6+ compatibility is required — no endless def, no numbered block params.
Architecture
Three Primary Abstractions
ActiveHarness::Agent (lib/active_harness/agent.rb + lib/active_harness/agent/)
Single LLM call with a model chain, system prompt, hooks, retry policy, and optional streaming. Call pattern: MyAgent.call(input: "...", context: {}, params: {}, memory: nil, models: nil, token: nil, stream: nil). Returns self; result is on agent.result (a Result struct). Can also be instantiated and called inline: agent.call("new input").
ActiveHarness::Tribunal (lib/active_harness/tribunal.rb + subdirs)
Runs multiple agents in parallel via concurrent-ruby's Concurrent::Future. Computes a verdict from all successful results using either a :unanimous/:majority built-in strategy or a custom process { |results| ... } block. Tolerates partial failure via may_fail: N. Returns self; verdict is on tribunal.verdict.
ActiveHarness::Pipeline (lib/active_harness/pipeline.rb + subdirs)
Sequential chain of agents, tribunals, and lambdas as named steps. Each step can have a stop_if lambda; when it fires, pipeline.stopped? becomes true and subsequent steps are skipped. Step results are readable via the pipeline.steps enumerator (yields step_name, executor, result) and are also forwarded as context[step_name] to downstream steps. Each step's output replaces the payload only when step.transform? is true (i.e., a use agent rather than a tribunal that only produces a verdict).
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.
- 6d ago First seen · 123 lines · 2,354 tokens per session scan A 9a75c3bb4d08
active_harness CLAUDE.md is an instructions file published in the GitHub repository the-teacher/active_harness (89 stars, last pushed 27d ago), licensed MIT. It adds 2,354 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-30.
Other instructions, from other repositories
dominando-agentes-ia copilot-instructions.md
Copilot instructions for woliveiras/dominando-agentes-ia, covering instruções github copilot, padrões de escrita, formato, exercícios and exercícios práticos.
langgraph AGENTS.md
AGENTS.md instructions for langchain-ai/langgraph, covering agents instructions, corridor security analysis, libraries and dependency map.
hatch3r CLAUDE.md
Claude Code instructions for hatch3r/hatch3r, covering hatch3r — development instructions, architecture, development commands, two-axis pillar framework (2.0.0) and orchestrator self-discipline (bypass protection).
aeon CLAUDE.md
Claude Code instructions for aeonfun/aeon, covering aeon, how aeon works, strategy, voice and soul file hierarchy (read in this order).
ken CLAUDE.md
Claude Code instructions for townsendmerino/ken, covering claude.md, what this is, repository ownership (read this first), commands and embedding parity & golden fixtures (now in aikit).
cortex AGENTS.md
AGENTS.md instructions for tools-for-agents/cortex, covering agents.md — cortex, setup, the rules this repo is built on, tests and ci.