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/peterjthomson/ledger/agents-mdgit clone --depth 1 https://github.com/peterjthomson/ledgerWhat 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 | $0.02129 | $0.02129 |
| Opus 5 | $0.01064 | $0.01064 |
| Sonnet 5 | $0.00426 | $0.00426 |
| Haiku 4.5 | $0.00213 | $0.00213 |
Grade A, and why
ledger AGENTS.md scanned grade A with 1 finding 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 2d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s http://127.0.0.1:9222/json How it starts
The opening of the file, as written. The whole thing — 266 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
This file helps AI assistants understand and work with the Ledger codebase.
Project Overview
Ledger is a macOS desktop app for viewing git branches, worktrees, and pull requests. Built with Electron + React + TypeScript.
Quick Facts
| Aspect | Details |
|---|---|
| Type | Electron desktop app |
| Platform | macOS (Apple Silicon) |
| Language | TypeScript (strict mode) |
| UI | React 19 + custom CSS |
| Git | simple-git library |
| PRs | GitHub CLI (gh) |
| Tests | Playwright E2E |
| Build | electron-vite + electron-builder |
Key Files to Know
lib/main/main.ts # IPC handlers, app lifecycle
lib/services/ # Git operations as pure functions (branch, commit, stash, etc.)
lib/services/codegraph/ # Code dependency graph parsing (PHP, Ruby, TypeScript)
lib/conveyor/ # Typed IPC with Zod validation (schemas, handlers, APIs)
lib/preload/preload.ts # API exposed to renderer
app/app.tsx # Main React component (large)
app/styles/app.css # All styling (large)
app/types/electron.d.ts # TypeScript types for IPC
app/components/ # UI components (panels, canvas, window)
resources/scripts/ # External parser scripts (PHP, Ruby)
Common Tasks
Adding a new git operation
- Add pure function to appropriate service in
lib/services/(e.g.,branch-service.ts) - Add Zod schema in
lib/conveyor/schemas/ - Add handler in
lib/conveyor/handlers/ - Add API method in
lib/conveyor/api/ - Call via
window.conveyor.*from renderer
Adding UI elements
Main UI is in app/app.tsx. Components are in app/components/:
panels/editor/- Editor panels (BranchDetail, PRReview, Staging, etc.)panels/viz/- Visualization panels (GitGraph, ERD, CodeGraph)panels/viz/codegraph/- Code dependency graph visualizationcanvas/- Canvas layout systemwindow/- Window chrome (Titlebar, menus)
Styling in app/styles/app.css uses CSS variables for theming.
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.
- 2d ago First seen · 266 lines · 2,129 tokens per session scan A fa5b1b796e18
ledger AGENTS.md is an instructions file published in the GitHub repository peterjthomson/ledger (325 stars, last pushed 1mo ago), licensed MIT. It adds 2,129 tokens to every session, about $0.0106 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
tutti AGENTS.md
AGENTS.md instructions for tutti-os/tutti, covering agents.md, shape, routing, agent host boundary and contribution workflow.
zvm CLAUDE.md
Instructions for tristanisham/zvm, covering claude.md, project overview, build & test commands, architecture and packaging & generated files.
relay AGENTS.md
Instructions for AgentWorkforce/relay, covering git workflow rules, never push directly to main, correct workflow, ... do work .. and stop here - let user merge.
Grace AGENTS.md
Instructions for ScottArbeit/Grace, covering agent instructions, agent quickstart (local), issue tracking, development process and markdown guidelines.
agent-bridge CLAUDE.md
Instructions for raysonmeng/agent-bridge, covering claude.md, 语言 / language, commands, architecture and data flow invariants.
zvm AGENTS.md
Instructions for tristanisham/zvm, covering repository guidelines, project structure & module organization, build, test, and development commands, coding style & naming conventions and testing guidelines.