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/paulnsorensen/easy-cheese/shellgit clone --depth 1 https://github.com/paulnsorensen/easy-cheeseWrote 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/paulnsorensen/easy-cheese/shell)<a href="https://agentmods.dev/instructions/paulnsorensen/easy-cheese/shell"><img src="https://agentmods.dev/badge/instructions/paulnsorensen/easy-cheese/shell.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 | $0.00715 | $0.00715 |
| Opus 5 | $0.00358 | $0.00358 |
| Sonnet 5 | $0.00143 | $0.00143 |
| Haiku 4.5 | $0.00072 | $0.00072 |
Grade C, and why
easy-cheese shell.instructions.md scanned grade C with 2 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 3d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
- `rm -rf "$var"` without guarding against empty `$var`. Use Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- New external commands (`curl`, `jq`, `bats`, `brew`, etc.) need a preflight How it starts
The opening of the file, as written. The whole thing — 59 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Shell review checklist (install script and bats tests)
scripts/install.sh is the only entry point most users see. tests/bash/
exercises it under bats. ShellCheck runs in CI (just lint-sh), so don't
spend review budget on lint nits — focus on behavior.
Hard rules
set -euo pipefailat the top of any new shell script. Missing it is a blocker, not a nit.- Quote every expansion:
"$var","${arr[@]}". Unquoted$varin a filename or path is a security finding, not a style one. [[ ... ]]over[ ... ]. Bash-only repo, no POSIX-sh constraint.- Use
printffor any output that contains user-supplied data or escape sequences. Reserveechofor literal static strings. - New external commands (
curl,jq,bats,brew, etc.) need a preflight check with a clear error message — don't let the script die three lines later oncommand not found.
What to flag
- Functions over ~30 lines or scripts over ~500 lines without decomposition.
- Network calls without timeout flags (
curl --max-time,--connect-timeout). evalorbash -c "$var"— almost always avoidable, almost always a vulnerability when$vartouches user input.rm -rf "$var"without guarding against empty$var. Userm -rf -- "${var:?}"or check first.- Silent failures in
install.sh— every failed step should print what failed and exit non-zero. This is the user's first impression of the repo; a half-installed state is worse than a clean abort. - bats tests that exercise the happy path only. Each new flag or branch in
install.shshould have a failure-mode test intest_install.bats.
What not to flag
- Anything ShellCheck already catches (SC2086, SC2046, etc.) — CI runs it.
localplacement, alignment, double-vs-single quote on static strings.- Cheese / Dune / Mad Max / LOTR / Princess Bride flavor in user-facing
echolines. Intentional repo voice. - Bashism vs POSIX-sh portability — this is a Bash repo.
bats specifics
- Each
@testdoes one thing. Name the test after the behavior, not the function:@test "install fails fast when curl missing", not@test "test_check_deps". - Use
runfor the command under test, then assert on$statusand$output— don't assert beforerunreturns. - Stub external commands (
curl,brew,claude,gh) viaPATHinjection or helper wrappers. A bats test that actually hits the network or shells out to realbrewis a flake waiting to happen. - The real-install smoke test in
validate.yml(the--skip-mcpjob) intentionally bypasses stubs to catch breakage in upstream package resolution. Don't add stubbing there; do add it totest_install.bats.
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.
- 3d ago First seen · 59 lines · 715 tokens per session scan C afde43176a4d
easy-cheese shell.instructions.md is an instructions file published in the GitHub repository paulnsorensen/easy-cheese (18 stars, last pushed 4d ago), licensed MIT. It adds 715 tokens to every session, about $0.0036 per session on Opus 5. A static security scan graded it C with 2 findings (recursive force delete, 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
crystal CLAUDE.md
Instructions for stravu/crystal, covering crystal - multi-session claude code manager, project overview, references, implementation status: ✅ complete and ✅ implemented features.
plan-forge database.instructions.md
Database patterns for .NET — Dapper/EF Core, parameterized queries, migration strategy.
plan-forge naming.instructions.md
Azure naming conventions — Microsoft CAF abbreviations, constraints, uniqueness, tagging.
claude-bridge AGENTS.md
Instructions for kadaba/claude-bridge, covering agents.md — using claude-bridge from any ai coding cli, two independent channels, 1. coordination (the conversation), 2. file transfer (the bytes) — same for every tool and workflows.
AmbyKit CLAUDE.md
Instructions for ambystechcom/AmbyKit, covering claude code — notes for the ambykit repo and claude-specific.
sugar AGENTS.md
AGENTS.md instructions for roboticforce/sugar, covering sugar - agents.md, git branching rules (strict), always create branches from develop, after work is complete and then create pr targeting develop.