baron CLAUDE.md

baron CLAUDE.md is an instructions file for coding agents from loncadev/baron. It costs 1,063 tokens per session, scanned A, original, Apache-2.0.

Project instructions for developing Baron, a TypeScript work-orchestration layer, including its architecture, tools, coding conventions, and test commands. A monorepo is a repository containing multiple related packages managed together.

In plain words
What is it for?
Guide Baron development with its TypeScript, Node.js, pnpm, Vitest, Biome, and build conventions, including how to test, type-check, lint, and package the code.
Why use it?
They give coding agents the project's technical rules and the commands needed to check changes, reducing inconsistent implementations and missed verification.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/loncadev/baron/claude-md.svg)](https://agentmods.dev/instructions/loncadev/baron/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/loncadev/baron/claude-md"><img src="https://agentmods.dev/badge/instructions/loncadev/baron/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,063 This file is loaded in full into every session.
When invoked 1,063 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.01063 $0.01063
Opus 5 $0.00531 $0.00531
Sonnet 5 $0.00213 $0.00213
Haiku 4.5 $0.00106 $0.00106

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

Security

Grade A, and why

baron 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 · 80 lines

How it starts

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

Baron — Project Rules

Baron is a platform-agnostic work-orchestration layer for AI coding agents. It lets an agent (or a CI pipeline) drive work tracking, source control, and notifications across many providers through one normalized contract, instead of hardwiring a single vendor's API and one team's process template into prompts.

Read ARCHITECTURE.md first — it is the single source of truth for the foundational decisions. This file is the day-to-day working contract.

Tech stack

  • TypeScript (NodeNext, strict), ESM only. Node >= 20.
  • pnpm workspaces monorepo.
  • vitest (tests), biome (lint + format), tsup (build for publish).

Local development

pnpm install
pnpm test          # vitest run (all packages)
pnpm typecheck     # tsc --noEmit per package
pnpm lint          # biome check
pnpm lint:fix      # biome check --write

Workspace packages resolve to source (src/index.ts) in dev — no build step needed to run tests or typecheck. publishConfig in each package.json flips main/types/exports to dist for release; pnpm build (tsup) produces it. Do not point dev consumers at dist.

Architecture invariants (do not violate without revisiting ARCHITECTURE.md)

  1. Capability ports, not "a tracker." Work is organized into independent ports — issues, scm, notify, docs — each bound to a provider independently. A consumer mixes providers (Linear issues + GitHub PRs + Slack notify). Never assume one provider spans all ports.
  2. Semantic role layer. Recipes and primitives speak abstract roles (backlog → ready → in_progress → in_review → done, plus blocked). Providers map their native states/columns/labels onto roles via config (baron init introspects + a human confirms). Never hardcode a provider-native state in core or recipe logic.
  3. Primitives in core, workflows in recipes. The core exposes primitives only (issue.create, issue.transition, ...). Workflow opinion (when to move to in_review, PR body shape, hierarchy rules) lives in declarative YAML recipes outside the core. Do not bake workflow opinion into the core or into an adapter.
  4. Adapters carry no translation logic. An adapter contributes only a CapabilityManifest and an IssuesTransport (provider I/O). All role↔native translation and gap negotiation live in the shared BaseIssuesAdapter. If you find yourself writing role/state mapping inside an adapter, it belongs in core.
  5. Capability gaps are never silent. When an operation needs a capability the provider lacks, behavior is decided by explicit policy: error (loud, actionable), emulate:<strategy> (synthesize, e.g. GitHub hierarchy via labels), or degrade (skip + warn log). A gap that is neither errored nor logged is a bug.

Read the full file on GitHub · 80 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 · 80 lines · 1,063 tokens per session scan A b6b219c9a874

Subscribe to this mod's changes

baron CLAUDE.md is an instructions file published in the GitHub repository loncadev/baron (1 stars, last pushed 13d ago), licensed Apache-2.0. It adds 1,063 tokens to every session, about $0.0053 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

agent-smith CLAUDE.md

Claude Code instructions for holgerleichsenring/agent-smith, covering agent-smith — ai agent instructions, context files (read in this order), phase directory structure, experiential memory (remember / recall) and minting a phase id.

holgerleichsenring/agent-smith · 2,302 tokens

teamxray copilot-instructions.md

Copilot instructions for AndreaGriffiths11/teamxray, covering github copilot instructions for mcp team x-ray extension, response style, build, test, and lint commands, validating extension changes and architecture.

AndreaGriffiths11/teamxray · 1,416 tokens

teamxray AGENTS.md

AGENTS.md instructions for AndreaGriffiths11/teamxray, covering agents.md, purpose, tagline, tech stack and architecture.

AndreaGriffiths11/teamxray · 1,656 tokens

github-mcp-server copilot-instructions.md

Copilot instructions for github/github-mcp-server, covering github mcp server - copilot instructions, project overview, critical build & validation steps, required commands (run before committing) and when modifying mcp tools/endpoints.

github/github-mcp-server · 3,217 tokens

av CLAUDE.md

Claude Code instructions for aviator-co/av, covering claude.md, project overview, documentation sources, command structure philosophy and development workflow.

aviator-co/av · 1,531 tokens

vscode-gitlens CLAUDE.md

Claude Code instructions for gitkraken/vscode-gitlens, a project described as: Supercharge Git inside VS Code and unlock untapped knowledge within each repository — Visualize code authorship at a glance via Git blame annotations and CodeLens, seamlessly navigate and explore Git repositories, gain valuable insights via…

gitkraken/vscode-gitlens · 5 tokens