cli-printing-press AGENTS.md

cli-printing-press AGENTS.md is an instructions file for Codex, OpenCode from mvanhorn/cli-printing-press. It costs 10,106 tokens per session, scanned A, original, MIT.

Development instructions for CLI Printing Press, a project that generates command-line tools. They explain how to decide whether a change belongs in the generator or in one generated tool.

In plain words
What is it for?
Use them when modifying the generator, templates, shared skills, or a generated CLI, and when building or testing the project.
Why use it?
They reduce inconsistent fixes and help changes work across future generated command-line tools.

Instructions file for CodexOpenCode

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/mvanhorn/cli-printing-press/agents-md
Clone the repo
git clone --depth 1 https://github.com/mvanhorn/cli-printing-press

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 cli-printing-press AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/mvanhorn/cli-printing-press/agents-md.svg)](https://agentmods.dev/instructions/mvanhorn/cli-printing-press/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/mvanhorn/cli-printing-press/agents-md"><img src="https://agentmods.dev/badge/instructions/mvanhorn/cli-printing-press/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 10,106 This file is loaded in full into every session.
When invoked 10,106 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.10106 $0.10106
Opus 5 $0.05053 $0.05053
Sonnet 5 $0.02021 $0.02021
Haiku 4.5 $0.01011 $0.01011

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

Security

Grade A, and why

cli-printing-press 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 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.

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 · 324 lines

How it starts

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

CLI Printing Press - Development Conventions

Machine vs Printed CLI

This repo is the machine (generator, templates, binary, skills) that produces printed CLIs. When fixing a bug or adding a feature, ask: machine change or printed-CLI change?

  • Machine changes (generator, templates, parser, skills) affect every future CLI and must generalize across APIs, spec formats, and auth patterns.
  • Printed-CLI changes (~/printing-press/library/<api-slug>/) fix one CLI and do not compound.
  • Default to machine changes. If a problem appears in a printed CLI, ask first whether the generator should have gotten it right. Only fix the printed CLI directly when the issue is genuinely API-specific.
  • Don't change the machine for one CLI's edge case. If a fix helps one API but breaks another, guard it with a clear conditional or leave it as a printed-CLI fix.
  • Don't hardcode API/site names in reusable artifacts. Skills, templates, generator code, prompts, and shared docs must use placeholders (<api>, <site>, "the target site") unless the text is explicitly an example or test fixture.
  • Update dependent verifiers in the same change. A new generator capability that affects scoring requires a scorer update; one that changes the MCP surface requires an audit update. When iterating on a printed CLI to discover issues, classify findings as systemic (retro candidate) vs specific (printed-CLI fix).

Anti-reimplementation

A printed CLI wraps an API; it does not replace one. Novel-feature commands must call the real endpoint or read from the local store populated by sync.

  • Reject hand-rolled response builders that return constants, hardcoded JSON, or struct literals shaped like an API payload.
  • Reject endpoint stubs that return "OK" or a canned success message without calling the client.
  • Reject aggregations computed in-process when the API has an aggregation endpoint.
  • Reject enum mappings and reference data synthesized locally when the API returns them.
  • Carve-outs: commands that read from internal/store; commands that operate on the local SQLite file via database/sql; commands that call the API and then cache to the store; commands whose data is curated static content via // pp:novel-static-reference; commands that make a real hidden client call via // pp:client-call, but only when the hidden helper performs a real external API call. Do not use // pp:client-call for hardcoded payloads, local-only transforms, or fake endpoint stubs. Enforced by the absorb manifest's Kill Check (skills/printing-press/references/absorb-scoring.md) and dogfood's reimplementation_check, which flags handler files showing neither a client call nor a store access without an opt-out.

Read the full file on GitHub · 324 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. 3d ago First seen · 324 lines · 10,106 tokens per session scan A 642c4b075f78

Subscribe to this mod's changes

cli-printing-press AGENTS.md is an instructions file published in the GitHub repository mvanhorn/cli-printing-press (4,611 stars, last pushed today), licensed MIT. It adds 10,106 tokens to every session, about $0.0505 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.