qm AGENTS.md

Repository instructions for working on the QM codebase, including how to make changes, test them, and keep them consistent across the project. QM is the software project covered by these instructions.

In plain words
What is it for?
Use them when changing QM code, searching for related instances of a bug, deciding where a fix belongs, and checking that the result follows the repository's conventions.
Why use it?
They reduce the chance of fixing only one occurrence of a problem, adding unnecessary complexity, or leaving outdated code and comments behind.

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/yc-software/qm/agents-md
Clone the repo
git clone --depth 1 https://github.com/yc-software/qm

Made for: Codex, OpenCode.

Per session 1,797 This file is loaded in full into every session.
When invoked 1,797 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.01797 $0.01797
Opus 5 $0.00898 $0.00898
Sonnet 5 $0.00359 $0.00359
Haiku 4.5 $0.00180 $0.00180

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

Security

Grade A, and why

qm 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 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.

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

How it starts

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

qm

To run and test, see README.md.

Working on the code

Two habits that keep task-focused changes from scarring the rest of the repo:

  • Fix every instance, not just the reported one. When you find a bug or a pattern worth changing, grep the whole repo (src/, plugins/, test/, scripts/) for the same pattern and fix all of it in the same change. One autocorrected call site with five untouched siblings is a regression waiting to be rediscovered.
  • Fixes should make the system simpler, not more complex. Prefer removing or consolidating code over adding a new layer, flag, or special case. If a fix grows the system's surface area, look for the version that shrinks it.
  • Never leave comments in the repo. The standard is zero comments: no explanatory comments or docblocks, TODO/FIXME notes, lint/type suppression directives, or commented-out code. Express intent through names, structure, and tests; put rationale in commit messages or PR descriptions. Interpreter shebangs are executable directives, not comments.
  • Solve at the layer all paths flow through. Before patching a call site, ask whether the fix belongs in the shared helper, the store interface, or the base module instead. Check for an existing helper before writing a new one-liner. The helper homes: src/util/errors.ts (errMessage/swallow), src/util/async.ts (sleep, createKeyedQueue), src/util/sweeper.ts (periodic loops), src/sandbox/process-poll.ts (process polling/liveness), src/memory/notebook.ts (memory line grammar). Plugins are separate packages and keep their own local copies rather than importing core code — the one exception is the shared plugins/chassis package (the sanctioned home for the plugin↔core plumbing: source-auth signer, signed core-client, node:http helpers, error helpers, CORE_* env), imported by relative path and never importing core. The bar cuts both ways: don't manufacture an abstraction for a pattern with one caller.
  • Never merge to main without a fresh-context pass that tries to break the change. Not a blessing — hunt for the bug, the missed edge case, the unstated assumption, the thing that regresses. Always dispatch /code-review or an independent review agent that did not watch you write the change: the context that produced a diff already believes it is correct, and that belief is the bias review exists to defeat. Never self-review in the authoring context, however small the diff; a green CI run is not review either. What scales with risk is how deep the reviewer goes — a change with a narrow blast radius warrants one reviewer at modest effort scoped to the diff, while core control flow, auth and credentials, data loss or migrations, concurrency and retry logic, spend, public API contracts, the shared helpers above that every path flows through, or a diff too large to hold in your head warrant high effort and several reviewers with distinct lenses. Judge blast radius by checking callers, not by counting files — a one-line edit to a helper with fifty importers is not a small change. The reviewer, not the author, has the last word on depth: a modest pass that spots risk it wasn't scoped for escalates on its own initiative rather than staying in its lane. Resolve what they find before merging.
  • Verify locally with the affected tests, not the whole suite. Run the tests covering what you changed plus typecheck and lint, then push and let CI be the full gate — CI shards the suite across parallel runners, and reproducing that serially costs several times the wall clock for the same signal. Judge "affected" by callers rather than by diff size, for the same reason as above; run everything locally when you can't tell what a change reaches.
  • Verify non-trivial behavior changes in a live dev instance before opening a PR. When a change is substantial enough that unit tests alone won't prove it works end-to-end — new or changed agent behavior, or anything touching the Slack/web surfaces, orchestrator, directory, or cron flows — boot this worktree with the /dev-instance skill and exercise it through a browser against the configured Slack development workspace before opening a PR. Do this Slack QA in Firefox, never the Slack Mac app, and don't ask permission first — do it on your own; don't wait to be asked. Skip it for trivial refactors, docs, config, or pure-logic changes already covered by tests.
  • Demo every front-end change in the PR. Anything an operator or user sees rendered — admin/web/portal UI, Slack surfaces, emails — ships with a way for a reviewer to see the result without booting it. Prefer a link to a live demo app (e.g. the built UI served against a small mock API, published internally) so the reviewer can click around the real thing; note in the PR what's mocked. Fall back to screenshots only when a live demo isn't practical (e.g. Slack surfaces, emails), and then show the after state (before/after for changes to something that existed), rendered against realistic data.

Read the full file on GitHub · 111 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. 2d ago First seen · 111 lines · 1,797 tokens per session scan A 8a67f75a2c3c

Subscribe to this mod's changes

qm AGENTS.md is an instructions file published in the GitHub repository yc-software/qm (14,428 stars, last pushed today), licensed MIT. It adds 1,797 tokens to every session, about $0.0090 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.