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/trafficguard/typedai/agents-mdgit clone --depth 1 https://github.com/TrafficGuard/typedaiWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/trafficguard/typedai/agents-md)<a href="https://agentmods.dev/instructions/trafficguard/typedai/agents-md"><img src="https://agentmods.dev/badge/instructions/trafficguard/typedai/agents-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.04307 | $0.04307 |
| Opus 5 | $0.02153 | $0.02153 |
| Sonnet 5 | $0.00861 | $0.00861 |
| Haiku 4.5 | $0.00431 | $0.00431 |
Grade A, and why
typedai 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 4d 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 — 524 lines — stays where its author put it; the contents beside it link to each section on GitHub.
General code standards
Do not update project level configuration files unless explicitly instructed to.
Use async/await where possible
Test exceptional cases first and return/throw early.
Never edit files name CONVENTIONS.md, .cursorrules, DOCS.md unless explicitly instructed to.
Prefer composing small descriptive functions over large complex functions.
Clean Code style guidelines
Example
Original code
async function cloneProject(projectPathWithOrg: string, branchOrCommit: string): Promise<string> {
const paths = projectPathWithOrg.split('/');
if(paths.length !== 2) {
throw new Error(`${projectPathWithOrg} must be in the format organisation/project`);
}
const org = paths[0];
const project = paths[1];
const agent = agentContext();
// Determine base path: system-wide or agent-specific
const basePath = agent?.useSharedRepos ? join(systemDir(), 'github') : agent ? join(agentDir(), 'github') : join(systemDir(), 'github'); // Default to systemDir if no agent context
// Construct the full target path for the project
const targetPath = join(basePath, org, project);
// Ensure the base directory and organization directory exist
await fs.mkdir(basePath, {recursive: true});
await fs.mkdir(join(basePath, org), {recursive: true});
// remainder of the clone function ...
}
Analysis
paths.length validation can be on one line. The assignment to basePath is too complex with multiple ternary statements. 'github' is repeated many times. The variable which changes in the ternary expression should be extract out. Group together the statements which setup the folder. Add a comment at the start of the block of statements for readability. Change targetPath to repoPath, which has more relevant meaning. "Ensure the base directory and organization directory exist" comment doesn't add value. We can assume the reader knows fundamental built in APIs like fs.mkdir Having two fs.mkdir() calls is unnecessary
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.
- 4d ago First seen · 524 lines · 4,307 tokens per session scan A afcebed73959
typedai AGENTS.md is an instructions file published in the GitHub repository TrafficGuard/typedai (1,192 stars, last pushed 8mo ago), licensed MIT. It adds 4,307 tokens to every session, about $0.0215 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
ai-agents-for-beginners AGENTS.md
Instructions for microsoft/ai-agents-for-beginners, covering agents.md, project overview, setup commands, prerequisites and initial setup.
neuron-ai AGENTS.md
AGENTS.md instructions for neuron-core/neuron-ai, covering neuron ai - project overview, the mental model: neuron is a composable workflow, development commands, architecture and modules.
neuron-ai CLAUDE.md
Claude Code instructions for neuron-core/neuron-ai, covering project overview, code standards, think before coding, simplicity first and surgical changes.
AutoAgents AGENTS.md
Instructions for liquidos-ai/AutoAgents, covering autoagents repository guidelines, project structure & module organization, code quality, naming conventions and error handling.
zypher-agent CLAUDE.md
Instructions for corespeed-io/zypher-agent, covering claude.md, development commands, code quality, architecture overview and monorepo structure.
oneringai AGENTS.md
AGENTS.md instructions for aantich/oneringai, covering oneringai agent guide, fast facts, determine your operating mode, using oneringai as a dependency and modifying the oneringai repository.