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/gofenix/nex/agents-mdgit clone --depth 1 https://github.com/gofenix/nexWhat 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.00565 | $0.00565 |
| Opus 5 | $0.00282 | $0.00282 |
| Sonnet 5 | $0.00113 | $0.00113 |
| Haiku 4.5 | $0.00056 | $0.00056 |
Grade A, and why
nex 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 — 64 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Nex Framework — AI Agent Guide
7. Commit Convention
Follow Conventional Commits:
- Format:
<type>(<scope>): <subject> - Subject: ≤50 chars, imperative mood
- NO triple backticks in commit messages
8. Additional Rules
- English Only: All code, comments, docs, commits in English
- Changelog First: Update changelog before any framework change
- No Config Files: Use
.envonly, neverconfig/*.exs - Cursor Rules: If project has
.cursorrules, follow it (seebestof_ex/.cursorrules)
9. Nex Request Contract
- Canonical Request Type: Page Actions in
src/pages/receiveNex.Req. - API Consistency: API Handlers in
src/api/also receiveNex.Req. - Comparison Target: Model Nex request handling after Next.js Pages Router API Routes.
- Parameter Access: Read path params and query string values from
req.query. Read request body values fromreq.body. - Do Not Model After: Do not model Page Actions after App Router Route Handlers, Server Actions,
FormData-first handlers, or a flat merged params map. - Keep The Contract Visible: When the request argument is unused, prefer
_req, not_params.
Example:
def save(req) do
id = req.query["id"]
name = req.body["name"]
{:ok, %{id: id, name: name}}
end
Source Code Reference
Source code for dependencies is available in opensrc/ for deeper understanding of implementation details.
See opensrc/sources.json for the list of available packages and their versions.
Use this source code when you need to understand how a package works internally, not just its types/interface.
Fetching Additional Source Code
To fetch source code for a package or repository you need to understand, run:
npx opensrc <package> # npm package (e.g., npx opensrc zod)
npx opensrc pypi:<package> # Python package (e.g., npx opensrc pypi:requests)
npx opensrc crates:<package> # Rust crate (e.g., npx opensrc crates:serde)
npx opensrc <owner>/<repo> # GitHub repo (e.g., npx opensrc vercel/ai)
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 · 64 lines · 565 tokens per session scan A f8d05b22b44b
nex AGENTS.md is an instructions file published in the GitHub repository gofenix/nex (106 stars, last pushed 2mo ago), licensed MIT. It adds 565 tokens to every session, about $0.0028 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
web-to-app AGENTS.md
AGENTS.md instructions for shiaho777/web-to-app, covering agents.md, code style, project layout, how the main pieces connect and i18n.
dev3000 AGENTS.md
Instructions for vercel-labs/dev3000, covering agents.md, runtime, local ui, production workflows, browser tools and development rules.
terminal-browser AGENTS.md
AGENTS.md instructions for zenbu-labs/terminal-browser, a project described as: A browser inside your terminal.
OpenGeometry AGENTS.md
Instructions for OpenGeometry-io/OpenGeometry, covering agents.md, 1. project identity, 2. architecture, runtime flow and build pipeline.
inspector copilot-instructions.md
Copilot instructions for modelcontextprotocol/inspector, covering copilot review instructions — mcp inspector, typescript, react and ui (web client), the .withprops() rule and state and effects.
bread CLAUDE.md
Instructions for tjakoen/bread, covering claude.md — start here, what this is, start here (reading order), this repo is the stack's control plane — run it and non-negotiables (see conventions for the full rules).