readable-ad-hoc-commands AGENTS.md

readable-ad-hoc-commands AGENTS.md is an instructions file for Codex, OpenCode from a-b/readable-ad-hoc-commands. It costs 1,909 tokens per session, scanned A, original, MIT.

Instructions for making complex, temporary terminal commands easier to understand before they run. They apply to shell commands and other command languages such as Python, Node.js, SQL, jq, and awk.

In plain words
What is it for?
Use them when a coding agent prepares multi-step commands, scripts, loops, pipelines, or dense one-line snippets for a terminal or REPL.
Why use it?
Dense commands can hide what they will do and which files or systems they may affect. These instructions make the intent, steps, and possible impact clearer to the person reviewing the command.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md. Also seen: mentions Claude Code; mentions AGENTS.md.

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/a-b/readable-ad-hoc-commands/agents-md
Clone the repo
git clone --depth 1 https://github.com/a-b/readable-ad-hoc-commands

Made for: Codex, OpenCode.

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 readable-ad-hoc-commands AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/a-b/readable-ad-hoc-commands/agents-md.svg)](https://agentmods.dev/instructions/a-b/readable-ad-hoc-commands/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/a-b/readable-ad-hoc-commands/agents-md"><img src="https://agentmods.dev/badge/instructions/a-b/readable-ad-hoc-commands/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,909 This file is loaded in full into every session.
When invoked 1,909 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.1 $0.01909 $0.01909
Opus 5 $0.00955 $0.00955
Sonnet 5 $0.00382 $0.00382
Haiku 4.5 $0.00191 $0.00191

Measured 5d ago against content hash 51a61085ea24, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

readable-ad-hoc-commands AGENTS.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.

AGENTS.md · 180 lines

How it starts

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

Readable ad-hoc commands — agent instructions

These are drop-in instructions for any coding agent. Put them in a system prompt, an AGENTS.md, a Cursor/Windsurf rules file, or load the bundled Claude Code skill (see readable-ad-hoc-commands/SKILL.md). The goal: when an agent runs a non-trivial command, format it so the human can grasp its intent, steps, and blast radius before it executes — instead of a dense one-liner they must reverse-engineer or approve blind.

This applies to any command language you fire at a terminal or REPL, not just bash — python -c, node -e, jq, psql -c, awk. It is about throwaway commands, not maintained application code; writing clean application code is a different concern (that's code review's job).

When this applies

Apply the rules to any command that is not a trivial single invocation:

  • Multi-line scripts, or && / ; / | chains of 2+ meaningful steps
  • Loops, conditionals, functions, xargs
  • Here-docs (<<EOF) and multi-line string literals
  • Dense inline snippets: python -c "...", node -e "...", jq '...', psql -c "..."
  • Non-obvious flags, subshells, process substitution, complex quoting/escaping
  • Anything that writes, deletes, moves, or overwrites files, tables, or state

A bare ls, git status, or SELECT 1 needs none of this — just run it.

The rules

These are language-neutral. The mechanics (comment char, fail-fast idiom) differ per language — see the table below.

  1. One step per line, top to bottom. Break dense one-liners into a readable sequence. The reader should be able to scan line-by-line and follow the logic. Prefer newlines over ;. For inline snippets, use a here-doc or a real multi-line string instead of cramming everything onto one -c line.
  2. Comment the why, not the obvious. Add a short comment above each logical block explaining its purpose and, if relevant, its effect. Skip comments that just restate the command.
  3. Name things. Pull magic values, paths, and repeated strings into named variables/bindings at the top. A named value is self-documenting.
  4. Announce progress for long runs. For multi-phase work, print a short banner before each phase so the user can follow along in the output, not just the source.
  5. Fail loud and early. Start real scripts with the language's fail-fast idiom so a failed step stops the run instead of silently barreling on. Mention it exists; don't over-explain.
  6. Preview destructive actions. Before anything that deletes/overwrites, print exactly what will be affected, or do a dry run first (or wrap it in a transaction you can roll back). Never bury a destructive step mid-pipeline.
  7. Say what it does in prose, first. Before running, give the user a one- to three-line plain-English summary of what the command does and what changes to expect. Then show the command.

Read the full file on GitHub · 180 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 · 180 lines · 1,909 tokens per session scan A 51a61085ea24

Subscribe to this mod's changes

readable-ad-hoc-commands AGENTS.md is an instructions file published in the GitHub repository a-b/readable-ad-hoc-commands (2 stars, last pushed 1mo ago), licensed MIT. It adds 1,909 tokens to every session, about $0.0095 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.