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/libtmux/libtmux-go/agents-mdgit clone --depth 1 https://github.com/libtmux/libtmux-goWhat 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.00746 | $0.00746 |
| Opus 5 | $0.00373 | $0.00373 |
| Sonnet 5 | $0.00149 | $0.00149 |
| Haiku 4.5 | $0.00075 | $0.00075 |
Grade A, and why
libtmux-go 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 yesterday.
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 — 64 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Rules for this repository: libtmux for Go, a port of the Python library of
the same name. Nothing here is Python — a convention you recognise from that
project (uv, ruff, mypy, pytest, doctests, NumPy docstrings) does not apply
unless a file here says so.
Follow the conventions already in the tree, and keep a change scoped to what was asked for.
What is here
Five Go modules, each with its own go.mod:
| Path | Module | What it is |
|---|---|---|
. |
the tmux module | Server, sessions, windows, panes, options, hooks, formats, filters, snapshots, connections, and plans. Zero runtime dependencies. |
workspace/ |
consumer | Loads tmuxp-style YAML workspaces and builds them |
mcp/ |
consumer | Serves one tmux server to Model Context Protocol clients |
examples/ |
consumer | Compiles the examples quoted in generated documentation |
benchmarks/ |
tool | Prints what each way of reaching tmux costs |
Inside the tmux module, tmuxq holds model-free generics, tmuxtest gives
tests a real tmux server that cleans itself up, and internal/ holds the
subprocess transport, the checked-in generators, and internal/integration.
examples/ is a module of its own.
Which policy applies
- Documentation, user-facing text,
CHANGELOG.md, release notes, commit messages, doc comments, and source comments: .github/WRITING.md - Building, testing, linting, the Go floor, the tmux matrix, and pull requests: .github/CONTRIBUTING.md
- Anything under
mcp/: mcp/AGENTS.md - Reporting or assessing a vulnerability: SECURITY.md
Each of those is the single home for its subject. Where a rule seems to be stated twice, the file listed above is the one that governs.
Change discipline
- Make the smallest coherent change that solves the verified problem; keep unrelated cleanup out of it.
- Reuse an existing file, helper, API, or test before adding a new one.
- Keep new APIs unexported until a caller outside the package needs them.
- Add a file only for a durable boundary — a distinct responsibility, independent reuse, or splitting an oversized module — not for a single-use helper or a one-line re-export.
- A passing gate is evidence only once it has been shown capable of failing. Pair a new test with a deliberate break that proves it bites.
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.
- yesterday First seen · 64 lines · 746 tokens per session scan A a590d61bae48
libtmux-go AGENTS.md is an instructions file published in the GitHub repository libtmux/libtmux-go (0 stars, last pushed 2d ago), licensed MIT. It adds 746 tokens to every session, about $0.0037 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.
Other instructions, from other repositories
agent-of-empires AGENTS.md
AGENTS.md instructions for agent-of-empires/agent-of-empires, covering repository guidelines, where to look, commands, code rules and tests.
psmux AGENTS.md
AGENTS.md instructions for psmux/psmux, covering agent instructions and test isolation.
waveloom AGENTS.md
Instructions for Menfre01/waveloom, covering waveloom, 项目概要, 编码规范, 代码审查 and 开发流程.
tmuxy CLAUDE.md
Claude Code instructions for flplima/tmuxy, covering tmuxy, project structure, cli usage, pane operations and tab operations.
CommandMate CLAUDE.md
Instructions for Kewton/CommandMate, covering claude.md, ⚠️ 重要: モジュール詳細を claude.md に書かないこと, プロジェクト概要, 基本情報 and 技術スタック.
CommandMate AGENTS.md
Instructions for Kewton/CommandMate, covering agents.md, scope, project context, working principles and coding rules.