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/cloudgeni-ai/opengeni/agents-mdgit clone --depth 1 https://github.com/Cloudgeni-ai/opengeniWhat 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.21782 | $0.21782 |
| Opus 5 | $0.10891 | $0.10891 |
| Sonnet 5 | $0.04356 | $0.04356 |
| Haiku 4.5 | $0.02178 | $0.02178 |
Grade A, and why
opengeni 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 yesterday.
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.
The Docker sandbox image includes Terraform, Checkov, AnyDoc, Azure CLI, GitHub CLI, git, jq, curl, and base shell utilities. AnyDoc is a pinned local document-to-Markdown parser; its matching `document-parsing` guidance How it starts
The opening of the file, as written. The whole thing — 365 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent / automation notes (OpenGeni)
This repository is a clean TypeScript/Bun stack. The public API is session-based.
Start here for orientation:
docs/architecture.md. It is the canonical whole-system map — what OpenGeni is, the load-bearing invariants, the current workspace layout, the major ownership boundaries, and the "if you're changing X, read Y first" routing index. Read it before navigating an unfamiliar area, and keep it current: if your change adds/removes/renames an app, package, example workspace, or sandbox backend; alters an architectural invariant, the data-flow, or the session/turn lifecycle; or changes which file is canonical for a change area — updatedocs/architecture.mdin the same change. A stale map is a bug. (This file, AGENTS.md, owns how to run and operate the stack; architecture.md owns how the system is shaped.)
When the user says "start the dev server", "spin it up", or "run the full stack", they mean the steps under Full local stack.
Full Local Stack
The stack means everything needed to run the Hono API, React web app, Temporal worker, Postgres event store, Core NATS realtime bus, Temporal service, and configured OpenAI Agents SDK sandbox backend.
-
Start the full local stack:
bun run devThis installs dependencies, starts the Docker infrastructure, runs migrations, builds the local sandbox image, and starts API, worker, and web processes.
Manual equivalent:
-
Install dependencies:
bun install -
Start infrastructure:
docker compose up -d postgres nats temporal garage garage-init bun run db:migrate bun run db:provision-roles -
Build the local sandbox image when using Docker sandbox:
docker build -f docker/sandbox.Dockerfile -t opengeni-sandbox:local . -
Copy
.env.exampleto.envand configure at least:OPENGENI_DATABASE_URLOPENGENI_NATS_URLOPENGENI_TEMPORAL_HOSTOPENGENI_STARTUP_DEPENDENCY_RETRY_*when dependencies need longer startup windows- OpenAI or Azure OpenAI credentials
OPENGENI_SANDBOX_BACKEND(see Sandbox Notes for the full backend list;dockeris the default for local dev)- sandbox preparation profiles / env allowlist when needed
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.
- yesterday First seen · 365 lines · 21,782 tokens per session scan A 8096d7ea3c34
opengeni AGENTS.md is an instructions file published in the GitHub repository Cloudgeni-ai/opengeni (115 stars, last pushed yesterday), licensed Apache-2.0. It adds 21,782 tokens to every session, about $0.1089 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
agent-intel-mcp AGENTS.md
AGENTS.md instructions for danieloza/agent-intel-mcp, covering agents.md, mission, stack, working rules and validation.
E2B CLAUDE.md
Instructions for e2b-dev/E2B: Use pnpm for node and uv for python to install and update dependencies. Run pnpm run format, pnpm run lint and pnpm run typecheck before committing changes. When modifying the SDK packages, ensure equivalent changes are applied to both JS as well as sync and async Python implementations.…
ax AGENTS.md
Instructions for ax-llm/ax, covering ax repository guide, what this file is for, repository layout, canonical docs and current project defaults.
langgraphjs AGENTS.md
Instructions for langchain-ai/langgraphjs, covering repository instructions and corridor security analysis.
studio AGENTS.md
AGENTS.md instructions for decocms/studio, covering repository guidelines, documentation philosophy, commands, development and start full dev environment (migrations + client + server).
AI-Gateway AGENTS.md
Instructions for Azure-Samples/AI-Gateway, covering agents.md, directory structure, labs/, modules/ and shared/.