active_harness CLAUDE.md

active_harness CLAUDE.md is an instructions file for Claude Code from the-teacher/active_harness. It costs 2,354 tokens per session, scanned A, original, MIT.

Repository instructions for ActiveHarness, a Ruby gem for building workflows that use language models, such as generating or processing text with AI services.

In plain words
What is it for?
Use them when developing ActiveHarness, understanding its agent, pipeline, and decision components, building the gem, or changing and releasing its version.
Why use it?
They record the project's architecture, supported Ruby version, release commands, and current testing limits so agents can make compatible changes.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions CLAUDE.md; 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/the-teacher/active_harness/claude-md
Clone the repo
git clone --depth 1 https://github.com/the-teacher/active_harness

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/the-teacher/active_harness/claude-md.svg)](https://agentmods.dev/instructions/the-teacher/active_harness/claude-md)
Your own site
<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>
Per session 2,354 This file is loaded in full into every session.
When invoked 2,354 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.02354 $0.02354
Opus 5 $0.01177 $0.01177
Sonnet 5 $0.00471 $0.00471
Haiku 4.5 $0.00235 $0.00235

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

Security

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.

CLAUDE.md · 123 lines

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

Read the full file on GitHub · 123 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 · 123 lines · 2,354 tokens per session scan A 9a75c3bb4d08

Subscribe to this mod's changes

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.