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/anomalyco/opentui/agents-mdgit clone --depth 1 https://github.com/anomalyco/opentuiWhat 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.00958 | $0.00958 |
| Opus 5 | $0.00479 | $0.00479 |
| Sonnet 5 | $0.00192 | $0.00192 |
| Haiku 4.5 | $0.00096 | $0.00096 |
Grade A, and why
opentui 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.
How it starts
The opening of the file, as written. The whole thing — 56 lines — stays where its author put it; the contents beside it link to each section on GitHub.
OpenTUI Agent Guide
Engineering
- Reuse existing seams; do not duplicate policy, ownership, or state across TypeScript, Zig, and framework layers.
- For bug fixes, first add a focused regression test of observable behavior or invariants. If automation is impossible, record the evidence and remaining manual verification; do not substitute contract sketches or guesses.
- Make native ownership explicit; clean up handles, callbacks, buffers, and listeners on every exit path. Bound input-driven work and test lifecycle failures.
- Do not interchange byte lengths, code points, graphemes, and terminal display-cell widths.
oxfmtis the formatting source of truth (semi: false,printWidth: 120); avoid unrelated formatting churn.
Tooling And Runtimes
- Use Bun for dependency management and development commands:
bun install,bun run <script>,bun test, andbun <file>. - Run package scripts from the package directory unless the script is defined at the repository root.
- Shared runtime code must preserve the supported Bun and Node paths. Keep runtime-specific behavior behind existing
platform/runtime/build seams; do not introduce Bun-only APIs into shared modules. Node checks use the minimum
version enforced by
scripts/node26.mjs.
Verification
- Run the narrowest relevant test first, then the affected package suite.
- Ordinary TypeScript source changes do not require the root build. Use the affected package's
test,typecheck,build, or validation scripts as applicable. - Run
bun run buildfrom the repository root after native or cross-package build/output changes, or when tests report a missing/stale native artifact. It does not build web or examples; use their package scripts. - For native changes, run
bun run test:nativefrompackages/core. Filter withbun run test:native -Dtest-filter="test name"while iterating. - For runtime, FFI, build, or export changes, run the relevant Node and packed-distribution scripts from that package
(such as
test:js:nodeortest:dist) when present. - Use root
bun run fmt:checkandbun run lintfor final static checks when relevant.
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 · 56 lines · 958 tokens per session scan A 506ce119580e
opentui AGENTS.md is an instructions file published in the GitHub repository anomalyco/opentui (13,206 stars, last pushed yesterday), licensed MIT. It adds 958 tokens to every session, about $0.0048 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.
Other instructions, from other repositories
critique AGENTS.md
Instructions for remorses/critique, covering opentui, using unreleased opentui versions, bun, react and rules.
Monoloth AGENTS.md
Instructions for noahain/Monoloth, covering agents.md, stack, layout, build / test commands and from repo root.
goder AGENTS.md
AGENTS.md instructions for nullism/goder, covering agent architecture, configuration, review loop behavior, safety model and key files.
plannotator AGENTS.md
AGENTS.md instructions for backnotprop/plannotator, covering plannotator, project structure, server runtimes, installation and environment variables.
golembot CLAUDE.md
Instructions for 0xranx/golembot, covering golembot — project conventions for claude code, architecture hard constraints, things you must never do, interface change rules and file responsibility boundaries.
solo AGENTS.md
Instructions for solo-agent/solo, covering project testing rules and project service lifecycle rules.