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/adaline/gateway/agents-mdgit clone --depth 1 https://github.com/adaline/gatewayWhat 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.00502 | $0.00502 |
| Opus 5 | $0.00251 | $0.00251 |
| Sonnet 5 | $0.00100 | $0.00100 |
| Haiku 4.5 | $0.00050 | $0.00050 |
Grade A, and why
gateway 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 — 58 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
This repository ships the Adaline Gateway SDK: a local, typed TypeScript SDK for calling many LLM providers through one interface.
Stack
- Node.js 18+
- pnpm 9+ only
- Turborepo
- TypeScript + tsup
- Vitest
- ESLint + Prettier
- Changesets for releases
Working Agreement
- Use
pnpm, nevernpmoryarn. - Prefer the smallest possible change in the relevant package instead of broad refactors.
- Preserve dual-output package behavior: ESM, CJS, and type declarations.
- Keep imports and exports aligned with existing package barrel patterns.
- Do not hand-edit release artifacts or
.changesetfiles unless the task is explicitly about release/versioning. - When changing provider behavior, review the matching provider package and shared contracts in
packages/typesandpackages/provider.
Repository Map
core/gateway/: gateway orchestrator, plugins, handlers, errorscore/providers/: provider implementationspackages/types/: shared Zod schemas and inferred typespackages/provider/: base provider contractstools/: shared eslint and tsconfig packages
Commands
- Install:
pnpm install - Build all:
pnpm run build - Test all:
pnpm run test - Lint all:
pnpm run lint - Format all:
pnpm run format - Clean:
pnpm run clean
Validation
- For provider or shared type changes, run the narrowest package test/build that proves the change works.
- Before finishing a non-trivial change, run at least
pnpm run lintand the relevantpnpm run testscope. - If a change affects published behavior or package surfaces, mention whether a changeset is required.
Coding Rules
- Use Zod schemas at runtime boundaries and export both schema and inferred type when the package already follows that pattern.
- Prefer
unknownplus validation overany. - Add or update tests for public API behavior, edge cases, and provider-specific error handling.
- Mock external provider calls in tests. Do not hit live APIs from test code.
Nested Instructions
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 · 58 lines · 502 tokens per session scan A 460c289cb96b
gateway AGENTS.md is an instructions file published in the GitHub repository adaline/gateway (605 stars, last pushed 1mo ago), licensed MIT. It adds 502 tokens to every session, about $0.0025 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
synalinks AGENTS.md
Instructions for SynaLinks/synalinks, covering agents.md, project overview, development commands, install dependencies and run tests with coverage.
synalinks CLAUDE.md
Instructions for SynaLinks/synalinks, covering claude.md, project overview, development commands, install dependencies and run tests with coverage.
promptfoo AGENTS.md
AGENTS.md instructions for promptfoo/promptfoo, covering agents.md, project overview, project structure, build commands and core commands.
langroid CLAUDE.md
Claude Code instructions for langroid/langroid, covering claude.md, commands, development, testing and linting and type checking.
openllmetry CLAUDE.md
Instructions for traceloop/openllmetry, covering openllmetry repository guide, repository structure, nx workspace commands, run tests across all packages and run linting across all packages.
openlit AGENTS.md
AGENTS.md instructions for openlit/openlit, covering openlit agent rules, ce/oss boundary, extension points, project hierarchy and ui and security.