agentic-harness CLAUDE.md

agentic-harness CLAUDE.md is an instructions file for coding agents from sevenschulte/agentic-harness. It costs 2,076 tokens per session, scanned A, a copy of agentic-harness AGENTS.md, MIT.

A set of repository instructions for the agentic-harness project. It explains how the system works, the team’s conventions, its technology stack, architecture, and folder layout; placeholders show where project-specific details belong.

In plain words
What is it for?
Describing a project’s identity, team, stack, architecture, repository structure, and coding conventions.
Why use it?
It gives an agent shared project context and rules to follow when working in the repository.

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

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 agentic-harness CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/sevenschulte/agentic-harness/claude-md.svg)](https://agentmods.dev/instructions/sevenschulte/agentic-harness/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/sevenschulte/agentic-harness/claude-md"><img src="https://agentmods.dev/badge/instructions/sevenschulte/agentic-harness/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,076 This file is loaded in full into every session.
When invoked 2,076 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod 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.02076 $0.02076
Opus 5 $0.01038 $0.01038
Sonnet 5 $0.00415 $0.00415
Haiku 4.5 $0.00208 $0.00208

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

Security

Grade A, and why

agentic-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 5d 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.

Origin

This is a copy

100% identical to agentic-harness AGENTS.md — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

CLAUDE.md · 182 lines

How it starts

The opening of the file, as written. The whole thing — 182 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AGENTS.md — How This System Works

Edit me. Every <placeholder> below is a slot for your team's reality. Replace them all before you ship. The structure is what's portable; the contents are yours.

Identity

You are working inside <repo-name>, the codebase for <product or domain>.

The team is <team name or composition>. The primary maintainer is <name or handle>. Communication is direct, terse, and code-first. Explain reasoning in 2–3 sentences; expand only when asked.

Follow the conventions in .claude/rules/ at all times. Those rules win over your training defaults when they conflict.

Stack

  • Language(s): <e.g. Go 1.22, TypeScript 5.4, Python 3.12>
  • Backend: <framework or "n/a">
  • Frontend: <framework or "n/a">
  • Database: <engine + version, or "n/a">
  • Test runners: <go test, vitest, pytest, etc.>
  • CI: <GitHub Actions, GitLab CI, etc.>
  • Deployment target: <where this runs in production>

Architecture (one paragraph)

<2–3 sentences describing the shape of the system: monorepo vs polyrepo, what the main directories are, what talks to what, what's deployed where. Keep it short — this is orientation, not documentation.>

Repo layout

<repo-name>/
├── AGENTS.md            # This file — identity & orientation (cross-tool standard)
├── CLAUDE.md            # Mirror of AGENTS.md (kept in sync) for Claude Code
├── README.md            # Human-facing intro
├── .claude/             # Harness layer (Claude Code paths — see README "Adapting to other runtimes")
│   ├── rules/           # Must-never / must-always (auto-loaded by Claude Code)
│   ├── skills/          # Callable workflows (SKILL.md — open standard, see agentskills.io)
│   ├── hooks/           # Lifecycle scripts referenced by .claude/settings.json
│   └── settings.json    # Claude Code runtime config (wires hooks to events)
├── memory/              # Persistent knowledge between sessions
│   ├── MEMORY.md        # Curated facts (always loaded)
│   ├── ACTIVE.md        # Current work status (always loaded)
│   ├── projects/        # Per-project context (read on demand)
│   └── coding-standards/ # Per-language standards (lazy-load via README.md index)
├── cron/                # Scheduled agents (no human in the loop)
└── <your source dirs>   # Replace with the real top-level directories

Read the full file on GitHub · 182 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. 5d ago First seen · 182 lines · 2,076 tokens per session scan A 9dd1271b93e9

Subscribe to this mod's changes

agentic-harness CLAUDE.md is an instructions file published in the GitHub repository sevenschulte/agentic-harness (2 stars, last pushed 4mo ago), licensed MIT. It adds 2,076 tokens to every session, about $0.0104 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to agentic-harness AGENTS.md, differing in 0 lines, and is treated as a copy.

Related

Other instructions, from other repositories

domain-experts AGENTS.md

AGENTS.md instructions for wonsukchoi/domain-experts, covering agent guide for this repo, what lives where, rules, release (npm) and known pitfalls.

wonsukchoi/domain-experts · 1,486 tokens

domain-experts CLAUDE.md

Claude Code instructions for wonsukchoi/domain-experts, covering domain experts — session bootstrap, non-negotiables when adding or editing roles, dual-graph context policy, mandatory: always follow this order and token usage.

wonsukchoi/domain-experts · 1,300 tokens

coding-agent-rules AGENTS.md

Instructions for cskwork/coding-agent-rules, covering ten commandments for coding agents, response & documentation style and repository rules.

cskwork/coding-agent-rules · 861 tokens

coding-agent-rules CLAUDE.md

Instructions for cskwork/coding-agent-rules, covering ten commandments for coding agents, response & documentation style and repository rules.

cskwork/coding-agent-rules · 861 tokens

pixeltamer-gpt-image-skill CLAUDE.md

Instructions for gabelul/pixeltamer-gpt-image-skill, covering claude.md — pixeltamer, what this is, architecture, how the skill works and the two backends.

gabelul/pixeltamer-gpt-image-skill · 1,899 tokens

trellis copilot-instructions.md

Instructions for craigcossairt/trellis: Read and follow AGENTS.md at the repository root - it is the canonical instruction file for all AI agents on this project. Full methodology docs live in docs/methodology/: TDD workflow, bug-fix protocol, and session habits. Append bug patterns to docs/common-gotchas.md and…

craigcossairt/trellis · 84 tokens