cybara AGENTS.md

cybara AGENTS.md is an instructions file for Codex, OpenCode from metaspartan/cybara. It costs 1,010 tokens per session, scanned A, original, MIT.

A project instruction file for Cybara, an agent platform. It requires Bun for JavaScript and TypeScript work, bans npm-style package commands and the any type, and sets rules for type safety and command translation.

In plain words
What is it for?
Use it when installing packages, running tests, writing TypeScript, translating documented commands, and choosing Bun-native APIs for Cybara.
Why use it?
It prevents contributors and coding agents from using unsupported tools or unsafe, loosely typed code in the repository.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/metaspartan/cybara/agents-md
Clone the repo
git clone --depth 1 https://github.com/metaspartan/cybara

Made for: Codex, OpenCode.

Wrote 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.

agentmods badge for cybara AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/metaspartan/cybara/agents-md.svg)](https://agentmods.dev/instructions/metaspartan/cybara/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/metaspartan/cybara/agents-md"><img src="https://agentmods.dev/badge/instructions/metaspartan/cybara/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,010 This file is loaded in full into every session.
When invoked 1,010 The same file — it is already loaded in full.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.01010 $0.01010
Opus 5 $0.00505 $0.00505
Sonnet 5 $0.00202 $0.00202
Haiku 4.5 $0.00101 $0.00101

Measured 4d ago against content hash c2db4f1b77cb, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

cybara AGENTS.md scanned grade A with 1 finding 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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

- Prefer Bun-native APIs (`Bun.spawn`/`Bun.spawnSync`, `Bun.file`) over `child_process`/`fs` shell-outs.
AGENTS.md · 84 lines

How it starts

The opening of the file, as written. The whole thing — 84 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Cybara Agent Rules

Rules for any AI agent or contributor working in this repo. Follow them exactly; they override default habits. Deeper conventions live in CLAUDE.md.

Package Manager Policy (Strict)

  • Bun is the only allowed JavaScript/TypeScript package manager and task runner.
  • Always use Bun commands:
    • bun install
    • bun add <pkg>
    • bun remove <pkg>
    • bun run <script>
    • bun test
    • bunx <tool>
  • Never use npm, npx, pnpm, yarn, or corepack.
  • Treat bun.lock as the canonical lockfile.
  • Prefer Bun-native APIs (Bun.spawn/Bun.spawnSync, Bun.file) over child_process/fs shell-outs.

Command Translation

  • If docs or snippets mention npm-style commands, translate them to Bun equivalents before running.
  • If a third-party instruction cannot run with Bun, stop and propose a Bun-compatible alternative.

TypeScript Type Safety

  • Never use any — not in signatures, casts, generics, or as any. It is banned.
  • Model real shapes with interface/type. For genuinely unknown input use unknown and narrow it before use (type guards, discriminated unions).
  • Type every exported function's parameters and return value explicitly. Do not rely on inference across module boundaries.
  • Avoid non-null assertions (!). Handle null/undefined with ?. and ??.
  • No @ts-ignore / @ts-expect-error to silence real errors — fix the type instead. If a third-party type is missing, declare a local interface for the slice you use.
  • Keep functions and route handlers returning consistent, fully-typed API shapes (snake_case fields for HTTP responses — see CLAUDE.md).

No Comments

  • Write code with no comments. Names and structure carry the meaning.
  • Do not add header blocks, JSDoc, inline // notes, or commented-out code.
  • Never reference other products, competitors, or external projects anywhere in code or comments.
  • The rare exception is a short /* ... */ note only when logic is genuinely non-obvious and cannot be made clear by renaming or restructuring; default to none.

Read the full file on GitHub · 84 lines

Changes

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.

  1. 4d ago First seen · 84 lines · 1,010 tokens per session scan A c2db4f1b77cb

Subscribe to this mod's changes

cybara AGENTS.md is an instructions file published in the GitHub repository metaspartan/cybara (25 stars, last pushed today), licensed MIT. It adds 1,010 tokens to every session, about $0.0051 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.