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/tombaldwin/ebman/claude-mdgit clone --depth 1 https://github.com/tombaldwin/ebmanWrote 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.
[](https://agentmods.dev/instructions/tombaldwin/ebman/claude-md)<a href="https://agentmods.dev/instructions/tombaldwin/ebman/claude-md"><img src="https://agentmods.dev/badge/instructions/tombaldwin/ebman/claude-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.04529 | $0.04529 |
| Opus 5 | $0.02264 | $0.02264 |
| Sonnet 5 | $0.00906 | $0.00906 |
| Haiku 4.5 | $0.00453 | $0.00453 |
Grade A, and why
ebman 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.
How it starts
The opening of the file, as written. The whole thing — 205 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AI working rules for ebman
This file is read by Claude Code (and similar agents) on session start. Follow it.
What this project is
ebman is a Rust + ratatui TUI for AWS Elastic Beanstalk, k9s-styled. Source under src/. Backlog in BACKLOG.md. Tests live alongside the code in #[cfg(test)] mod tests blocks.
Where to start
PLAN.md is the rolling window of active work — read it first, work it
top-down, prune and refill it before finishing. BACKLOG.md is the
reservoir behind it. An item lives in exactly one of the two.
PLAN.md also carries the item classes (which stages an item needs) and
the verify-the-claim gate. This file stays what it has always been: how
to build, what green means, and the stop conditions.
Mandatory loop for autonomous work
When the user asks for autonomous work (e.g. "run autonomously", "build all the above", "next", or any directive to ship multiple items without per-step approval), you must:
-
Build green before claiming done. All three, in this order:
cargo fmt --all cargo clippy --all-targets -- -D warnings cargo testNot
cargo build. It does not run clippy, and it does not compile test targets — which is where most of the recent work lives, so "no new warnings" from a bare build covers none of it. CI runs fmt and clippy and will reject what a build-only check passed.Two gates run in CI that you cannot easily reproduce and should think about before pushing, not after: candor (a render path that reaches the network / LLM / filesystem fails the build) and cargo-deny.
-
Self-review every meaningful change. After each substantive feature or pass, perform a code review against the changes you made and surface bugs, design issues, dead code, missed edge cases, and inconsistencies. The review goes in your message back to the user — not just internal thinking.
-
Act on review findings — don't just list them, but keep them separable. Fix them in the same run; put them in separate commits. "Same turn" was being read as "same commit", which mixed a feature, three drive-by fixes and a refactor into one diff and destroyed
git bisecton precisely the class of subtle regression this codebase keeps hitting. CONTRIBUTING.md asks contributors for a change that does one thing; the same applies here.
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.
- 5d ago First seen · 205 lines · 4,529 tokens per session scan A 0c1ca6e2ee53
ebman CLAUDE.md is an instructions file published in the GitHub repository tombaldwin/ebman (1 stars, last pushed 4d ago), licensed Apache-2.0. It adds 4,529 tokens to every session, about $0.0226 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.
Other instructions, from other repositories
langchain-aws AGENTS.md
AGENTS.md instructions for langchain-ai/langchain-aws, covering global development guidelines for the langchain monorepo, project architecture and context, langchain-aws structure, key components and langgraph-checkpoint-aws structure.
pvetui AGENTS.md
AGENTS.md instructions for devnullvoid/pvetui, covering agent instructions, initial setup, development workflow, quick reference and code quality standards.
aws-bench AGENTS.md
AGENTS.md instructions for aws-bench/aws-bench, covering agents.md, setup, commands, project structure and code style.
drawio-ai-kit AGENTS.md
Instructions for sparklabx/drawio-ai-kit, covering repository guidelines, tech stack & runtime and code conventions & common patterns.
spring-ai-agentcore AGENTS.md
AGENTS.md instructions for spring-ai-community/spring-ai-agentcore, covering agents.md, project overview, architecture, key components and artifact store classes.
awsmux AGENTS.md
Instructions for 0hardik1/awsmux, covering agents.md, what awsmux is, build, test, verify, layout and the safety model — invariants you must not weaken.