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/uber/submitqueue/agents-mdgit clone --depth 1 https://github.com/uber/submitqueueWhat 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.08360 | $0.08360 |
| Opus 5 | $0.04180 | $0.04180 |
| Sonnet 5 | $0.01672 | $0.01672 |
| Haiku 4.5 | $0.00836 | $0.00836 |
Grade A, and why
submitqueue 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 — 377 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SubmitQueue Repository Guide
Key Concepts
SubmitQueue is a distributed system for managing code submission workflows. It follows clean architecture with interface-driven extensibility.
Immutability and Eventual Consistency:
- Immutable entities — once created, don't modify in place. Create new versions with updated fields.
- Eventual consistency — handle stale reads, idempotent operations, and convergence over time.
- Event sourcing — store events (what happened) rather than just current state for critical changes.
- Optimistic locking — use version numbers instead of pessimistic locks. Avoid transactions; prefer optimistic concurrency and retries. Version arithmetic lives in the controller, not the storage layer. Update methods take both
oldVersion(the where-clause guard) andnewVersion(the value to write); the store performs a pure conditional write. Controllers computenewVersion = oldVersion + 1, call the store, and only assignentity.Version = newVersionafter the call succeeds. Pre-incrementing in memory before the call is a bug pattern — on error the in-memory version drifts ahead of the database. See submitqueue/extension/storage/README.md. - Idempotency keys — include unique request IDs, check for duplicates before executing.
- Persist before you publish — when a message hands work to a later stage, write the state first and publish only once the write has succeeded. Publishing first races the consumer against the write: it can load an entity that was never recorded, or a version older than the one the message describes, and then build on an assumption that was never true. Ordered write-then-publish, a failed publish leaves the state durable and the retry re-publishes; the reverse leaves a message describing a state nothing wrote. The exception is a message that depends on nothing the write does — a status log recording a transition, or an idempotent nudge whose consumer re-derives everything from current state. Those publish first on purpose, so that a failure leaves nothing written and the retry redoes the whole step rather than stranding a durable state change with no way to announce it; see
submitqueue/orchestrator/controller/speculate/finalize.goand.../buildsignal/buildsignal.gofor the reasoning at those two sites.
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 · 377 lines · 8,360 tokens per session scan A 4d0893bd1ef1
submitqueue AGENTS.md is an instructions file published in the GitHub repository uber/submitqueue (211 stars, last pushed 3d ago), licensed Apache-2.0. It adds 8,360 tokens to every session, about $0.0418 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
go-micro CLAUDE.md
Instructions for micro/go-micro, covering claude.md - go micro project guide, project overview, build & test, run all tests and run tests for a specific package.
go-micro AGENTS.md
Instructions for micro/go-micro, covering repository agent instructions and pull requests from codex tasks.
My-Distributed-Bookstore CLAUDE.md
Instructions for Youngermaster/My-Distributed-Bookstore, covering claude.md, project overview, tech stack, architecture principles and microservices design.
ollama CLAUDE.md
Instructions for ollama/ollama: See AGENTS.md for the shared agent instructions for this repository.
azure-sdk-for-go go-code.instructions.md
Instructions for Azure/azure-sdk-for-go: All code should follow the guidelines from the Azure Go SDK Guidelines. This document is a summary of the most important guidelines to follow when contributing to the Azure Go SDK.
gorest AGENTS.md
Instructions for pilinux/gorest, covering agents.md, project overview, build and run commands, build and tidy dependencies.