Borrowing it
Nothing to install: this file belongs to IvanSkainet/arena-agent. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/IvanSkainet/arena-agent/master/AGENTS.mdgit clone --depth 1 https://github.com/IvanSkainet/arena-agentWrote 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/ivanskainet/arena-agent/agents-md)<a href="https://agentmods.dev/instructions/ivanskainet/arena-agent/agents-md"><img src="https://agentmods.dev/badge/instructions/ivanskainet/arena-agent/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.1 | $0.07880 | $0.07880 |
| Opus 5 | $0.03940 | $0.03940 |
| Sonnet 5 | $0.01576 | $0.01576 |
| Haiku 4.5 | $0.00788 | $0.00788 |
Grade A, and why
arena-agent AGENTS.md scanned grade A with 2 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -sH "Authorization: Bearer $(cat token.txt)" \ Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
- **Never use `os.system()`** — always argv-form How it starts
The opening of the file, as written. The whole thing — 584 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Arena Agent Codebase Guide for AI Maintainers
This repository is intentionally modular. Do not add new runtime logic to thin compatibility entrypoints or large catch-all files.
Hard rules
Architecture
- Keep
unified_bridge.pya thin compatibility/CLI entrypoint. - Keep wrapper scripts in
scripts/andbin/thin; real logic belongs underarena/. - Product files must stay under the modularity limit enforced by
tests/test_project_modularity.py(currently 1600 lines). Runtime modules underarena/have an additional limit intests/test_architecture_boundaries.py(currently 600 lines). Readable code beats squeezed code — if a file is close to the limit, split it by responsibility instead of collapsing whitespace. - Do not import
unified_bridge.pyfromarena/*modules. - Every new module in
arena/admin/(tunnels/network providers) must be cross-platform:platform.system()branches, no Linux-only assumptions, never invokesudodirectly. - Every user-facing installer path (
install.sh,install.bat) must verify after installing dependencies — never trust a silentpip install ... 2>/dev/null || true. - Never store per-release scratch notes in the repository; use
/tmp/when drivinggh release create --notes-file.
Task Board Discipline & Spec-Kit Protocol (T0..Tn) (v4.169.39+)
- Every action belongs to a tracked task. Any newly discovered bug, refactoring,
or feature must be recorded in
docs/TASK_BOARD.mdwith an identifierT0..Tn. Never execute ad-hoc or unrecorded side tasks. - Strict Definition of Done (DoD):
- Root-cause fix: resolve the true invariant failure, never suppress or silence.
- Deterministic Parity Suite: write isolated unit tests without unmocked sockets or clocks.
- 0 Mutation Survivors: verify with
mutmutand pin the ratchet inscripts/mutation_baseline.json. - Mandatory Bilateral Sabotage: prove that breaking the fix fails tests, and healthy code is 100% green.
- Preflight Pass:
python scripts/preflight.pymust be completely green before release.
- Sandbox Escape via Bridge: Never download heavy engines (like Godot), 3D assets, or datasets
into the 128 MB agent workspace
/home/user. Route heavy workloads, game production, and persistent storage to the host machine via Skainet Bridge (skills/arena-bridge/SKILL.mdanddocs/GODOT_INTEGRATION.md). - Serena Continuity: To prevent context loss across session truncations, read
docs/TASK_BOARD.mdand runpython scripts/serena_reminder.pyupon session bootstrap.
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 Changed · +30 lines · +404 tokens per session fab98d9c232e
- 7d ago First seen · 554 lines · 7,476 tokens per session scan A 2676c3f0ad8e
arena-agent AGENTS.md is an instructions file published in the GitHub repository IvanSkainet/arena-agent (5 stars, last pushed yesterday), licensed MIT. It adds 7,880 tokens to every session, about $0.0394 per session on Opus 5. A static security scan graded it A with 2 findings (makes network calls, runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
agent-compass pr-workflow.instructions.md
Instructions for me-cedric/agent-compass: For PR creation, default base branch is develop. Assign the PR to yourself with --assignee @me. If reviewers are not specified, ask for at least one and list likely repo contributors. Use only labels that exist in gh label list.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).