lauren CLAUDE.md

lauren CLAUDE.md is an instructions file for coding agents from ofux/lauren. It costs 3,213 tokens per session, scanned A, original, MIT.

A set of repository instructions for Lauren, covering its commands, architecture, four-phase coding pipeline, tests, and external command-line dependencies. The documented project uses TypeScript, Node.js, Vitest, and Biome.

In plain words
What is it for?
Use it when modifying Lauren’s implementation, pipeline phases, tests, or command-line interface. It describes the build, lint, formatting, test, and manual verification commands.
Why use it?
It tells an AI coding assistant how the repository is organized and how changes are checked. It also prevents confusion about the required Claude and Codex command-line tools.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/ofux/lauren/claude-md.svg)](https://agentmods.dev/instructions/ofux/lauren/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/ofux/lauren/claude-md"><img src="https://agentmods.dev/badge/instructions/ofux/lauren/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 3,213 This file is loaded in full into every session.
When invoked 3,213 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.03213 $0.03213
Opus 5 $0.01606 $0.01606
Sonnet 5 $0.00643 $0.00643
Haiku 4.5 $0.00321 $0.00321

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

Security

Grade A, and why

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

CLAUDE.md · 113 lines

How it starts

The opening of the file, as written. The whole thing — 113 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.

Commands

npm run build       # tsc → dist/, then chmod +x the lauren bin
npm run watch       # tsc --watch
npm run clean       # remove dist/
npm run check       # biome check --write (lint + format + organize-imports)
npm run lint        # biome lint only
npm run format      # biome format --write
npm test            # vitest run (one-shot)
npm run test:watch  # vitest in watch mode

Tests live next to source as *.test.ts (Vitest, ESM, Node >=20). Verify changes by npm run build && npm run check && npm test. Manual smoke test: from a throwaway repo, run lauren vibe --dry-run to print the queue, and lauren --list to inspect state (plain table; omit --list for the interactive TUI).

External binaries

The runtime shells out to two CLIs that must be on $PATH:

  • claude — used interactively (planning, spec) and as the default agent for the implement / fix pipeline phases, brain JSON decisions, and merger conflict resolution.
  • codex — used as the default agent for the review pipeline phase (codex exec review -o <file> <prompt>).

Per-phase agent selection is configurable in .lauren/config.json under agents: each of implement, review, fix, merger, and brain independently accepts "claude" or "codex". The adapters live in src/agents/ and implement the CodingAgent port (runEdit, runReview, runJson) — see src/agents/types.ts.

If a binary is missing for any role configured to use it, lauren vibe will fail at the corresponding step.

Architecture

Lauren is a single-daemon system that drains a plan queue end-to-end without further human input.

lauren CLI (src/bin/lauren.ts) — the single public executable. lauren plan spawns interactive claude with PLAN_SYSTEM_PROMPT; that claude session writes .lauren/plans/<slug>.md and re-invokes the CLI as lauren _register <slug> --path ... --title ... (a hidden subcommand) to add a row with status enqueued to .lauren/plans.json. The default lauren (no subcommand) is an interactive Ink TUI (src/tui/TodoApp.tsx) showing the queue; --list (or non-TTY) prints a static colored table instead. Selecting a row dispatches to cancelPlan (src/cancel.ts) which routes by status (see Cancellation below). The TUI also supports two queue-level actions: t on a failed row resets it to ready via retryPlan (src/retry.ts), and r triggers a brain reorganize pass that re-thinks the whole ready queue (refused while lauren vibe is running, detected via .lauren/vibe.pid).

Read the full file on GitHub · 113 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 · 113 lines · 3,213 tokens per session scan A c4fd5a934ba0

Subscribe to this mod's changes

lauren CLAUDE.md is an instructions file published in the GitHub repository ofux/lauren (12 stars, last pushed 3mo ago), licensed MIT. It adds 3,213 tokens to every session, about $0.0161 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.