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/mozilla-ai/any-agent/agents-mdgit clone --depth 1 https://github.com/mozilla-ai/any-agentWhat 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.01476 | $0.01476 |
| Opus 5 | $0.00738 | $0.00738 |
| Sonnet 5 | $0.00295 | $0.00295 |
| Haiku 4.5 | $0.00148 | $0.00148 |
Grade A, and why
any-agent 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 3d 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 — 76 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
CLAUDE.md is a symlink to this file. Always edit AGENTS.md directly; never modify CLAUDE.md.
Where to Look First
- README.md: high-level usage and supported frameworks.
- CONTRIBUTING.md: canonical dev setup, test matrix, and contribution workflow.
- pyproject.toml and .pre-commit-config.yaml: formatting/lint/typecheck configuration.
- docs/: Astro/Starlight docs site (configured by docs/astro.config.mjs).
Project Structure & Module Organization
src/any_agent/: Core library.AnyAgentis the main entry point;AgentConfigandAgentFrameworkdefine config.src/any_agent/frameworks/: One module per supported framework (agno, google, langchain, llama_index, openai, smolagents, tinyagent). Each implementsAnyAgent's abstract methods via lazy imports to keep optional dependencies isolated. Thetinyagentmodule is a thin shim that delegates to the standalonemozilla-ai-tinyagentpackage; the loop itself lives there.src/any_agent/callbacks/: Callback system with per-framework wrappers (wrappers/) and span generation (span_generation/). Base class isCallbackinbase.py.src/any_agent/tools/: Built-in tools (web browsing, user interaction, final output) plus MCP client integration (mcp/), A2A tools, and Composio integration.src/any_agent/tracing/: OpenTelemetry-based tracing.AgentTrace/AgentSpanare the primary types.src/any_agent/evaluation/: LLM judge and agent judge evaluators.src/any_agent/serving/: A2A protocol and MCP server implementations for serving agents.src/any_agent/vendor/: Vendored adapters (langchain_any_llm, llama_index_utils).tests/:unit/,integration/,snapshots/, plus shared fixtures intests/conftest.py.
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.
- 3d ago First seen · 76 lines · 1,476 tokens per session scan A ed78445e607d
any-agent AGENTS.md is an instructions file published in the GitHub repository mozilla-ai/any-agent (1,197 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 1,476 tokens to every session, about $0.0074 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
adk-go AGENTS.md
AGENTS.md instructions for google/adk-go, covering agents.md, project overview, skills, setup & core commands and definition of done.
adk-go CLAUDE.md
Claude Code instructions for google/adk-go: See AGENTS.md for project context, commands, and contribution guidelines for AI coding agents.
a2a-python AGENTS.md
Instructions for a2aproject/a2a-python, covering agents.md, technology stack & architecture, mandatory workflow and optional extras.
lucid-agents AGENTS.md
Instructions for daydreamsai/lucid-agents, covering lucid agents monorepo - ai coding guide, project overview, brand system, architecture overview and package dependencies.
agentarea AGENTS.md
Instructions for agentarea/agentarea, covering agents.md, where to look, structure, commands and backend (from agentarea-platform/).
A2A AGENTS.md
Instructions for gstdcoin/A2A, covering 🤖 agents.md — universal agent onboarding protocol, 🌐 network identity, ⚡ phase 1: immediate activation (required), step 1 — health check and step 2 — register as network node.