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/gitcoder89431/tuitube/agents-mdgit clone --depth 1 https://github.com/gitcoder89431/tuitubeWhat 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.01807 | $0.01807 |
| Opus 5 | $0.00903 | $0.00903 |
| Sonnet 5 | $0.00361 | $0.00361 |
| Haiku 4.5 | $0.00181 | $0.00181 |
Grade A, and why
tuitube 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.
How it starts
The opening of the file, as written. The whole thing — 216 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Guidance for AI agents working in projects based on this template.
Project Intent
This is a personal Go TUI template built on the Charm stack (Bubble Tea v2, Lip Gloss v2, Bubbles). Treat the existing structure as the application shell — build product features on top of it, don't bypass the patterns it establishes.
Checklist for Adding a New Feature
Follow these steps in order. Run the verification commands before finishing.
- Add a screen in
internal/screens/implementing thescreens.Screeninterface (Init,Update,View,Title,KeyBindings). - Register the screen in
internal/app/app.go→registerScreens. Add its ID to thepreferredslice inrefreshScreenOrderif it belongs in the primary sidebar. - Register a command in
registerCommands(same file) so the screen is reachable viactrl+k. CommandRunfunctions must return atea.Cmdthat emits a message defined ininternal/app/messages.go. - Log key events via
logs.Info/logs.Errorso behavior is visible in the Logs screen (see Logging section below). - Verify:
go test ./...andgo build ./cmd/tuitubemust pass before committing.
Key Packages
| Package | Role |
|---|---|
internal/app |
Root model — routing, overlays, keymap, theme, message dispatch |
internal/screens |
Feature screens implementing screens.Screen |
internal/commands |
Command palette entries and registry |
internal/app/messages.go |
All app-level message types — add new ones here |
internal/debug |
In-memory log surfaced in the Logs screen |
internal/theme |
Semantic styles and theme definitions |
internal/layout |
Terminal size and region calculations |
Logging
Always log via internal/debug.Log — never fmt.Println or panic. Use the prefix convention package.Operation so log entries are easy to grep.
// info
logs.Info("myscreen.Load: loaded 42 items")
// error
logs.Error("myscreen.Load", err)
// produces: "ERROR myscreen.Load: <err message>"
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.
- 2d ago First seen · 216 lines · 1,807 tokens per session scan A 4784c02e91c0
tuitube AGENTS.md is an instructions file published in the GitHub repository gitcoder89431/tuitube (10 stars, last pushed 1mo ago), licensed MIT. It adds 1,807 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-31.
Other instructions, from other repositories
bagent AGENTS.md
AGENTS.md instructions for damienp199/bagent, covering bagent — consignes pour agents, plateforme, installer (méthode unique recommandée), pièges — à respecter impérativement and vérifier l'installation.
zot AGENTS.md
Instructions for patriceckhart/zot, covering working agreement for zot, product intent, starting a task, code ownership map and correctness contracts.
pvetui AGENTS.md
Instructions for devnullvoid/pvetui, covering agent instructions, initial setup, development workflow, quick reference and code quality standards.
waveloom AGENTS.md
Instructions for Menfre01/waveloom, covering waveloom, 项目概要, 编码规范, 代码审查 and 开发流程.
pvetui CLAUDE.md
Instructions for devnullvoid/pvetui: Canonical instructions live in AGENTS.md.
ssm AGENTS.md
Instructions for lfaoro/ssm, covering ssm — agent working instructions, the prime directive, 2. non-negotiable rules, 3. architecture contracts (must remain true) and ssh config parser (pkg/sshconf).