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/keta1930/agent-graph/agents-mdgit clone --depth 1 https://github.com/keta1930/agent-graphWhat 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.00515 | $0.00515 |
| Opus 5 | $0.00258 | $0.00258 |
| Sonnet 5 | $0.00103 | $0.00103 |
| Haiku 4.5 | $0.00052 | $0.00052 |
Grade A, and why
agent-graph 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 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.
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 — 43 lines — stays where its author put it; the contents beside it link to each section on GitHub.
This file provides guidance to AI coding agents when working with code in this repository.
Commands
Backend (Python 3.11+, uv):
uv sync— install dependenciesuv run --env-file .env fastapi run— start the production API server usingPORTuv run --env-file .env fastapi dev— start the development API server with reloadpython agent_graph/scripts/generate_jwt_secret.py— generate JWT secret keyuv run pytest— run tests (unit intests/unit/, integration intests/integration/)
Frontend (Node, npm):
cd frontend && npm install && npm run dev— start Vite using the root.envnpm run build— production build outputs toagent_graph/dist/npm run lint— ESLint with TypeScript strict rules
Infrastructure:
docker compose --env-file .env -f docker/docker-compose.yml up -d— start MongoDB, Mongo Express, and MinIO (reads config from root.env)
Docs:
mkdocs build --strict— build the documentation site and fail on warnings
Release packaging:
cd frontend && npm ci && npm run build— refresh the frontend assets inagent_graph/dist/- Run
uv buildfrom the repository root after the frontend build — create wheel and sdist with the current frontend assets
Architecture
- FastAPI serves both REST API (
/api/) and the pre-built frontend fromagent_graph/dist/ - All config lives in a single root
.env(backend settings + MongoDB/MinIO container params). Copy.env.exampleto.envand fill in values before first run; both the API server anddocker compose --env-file .envread from it. - The backend, frontend, and internal MCP client ports are configured through the root
.env. - Auth uses JWT access + refresh tokens; three roles: super_admin, admin, normal
Git conventions
GitHub Flow: feature branches off master, PR with review before merge.
Test and format infrastructure
- Backend tests use pytest; run with
uv run pytest. Unit tests live intests/unit/, integration tests intests/integration/. - Coverage is available on demand:
uv run pytest --cov=agent_graph. - No Python formatter or linter is configured. ESLint is frontend-only.
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 First seen · 43 lines · 515 tokens per session scan A a707c24d6022
agent-graph AGENTS.md is an instructions file published in the GitHub repository keta1930/agent-graph (221 stars, last pushed 24d ago), licensed Apache-2.0. It adds 515 tokens to every session, about $0.0026 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
deer-flow AGENTS.md
AGENTS.md instructions for bytedance/deer-flow, covering agents.md, what is deerflow, service topology, repository map and commands: root vs. module.
deer-flow copilot-instructions.md
Copilot instructions for bytedance/deer-flow, covering copilot onboarding instructions for deerflow, 1) repository summary, 2) runtime and toolchain requirements, 3) build/test/lint/run - verified command sequences and a. bootstrap and install.
deer-flow CLAUDE.md
Claude Code instructions for bytedance/deer-flow: The repo's agent guidance lives in AGENTS.md so it is shared across coding agents (Claude Code, Codex, and others). Claude Code imports it below.
nexent AGENTS.md
AGENTS.md instructions for ModelEngine-Group/nexent, covering agents, available skills, project overview, developer commands and backend (python 3.11).
turbo-flow CLAUDE.md
Claude Code instructions for marcuspat/turbo-flow, covering claude.md — turbo flow, what this repo is, key files and conventions.
sprawling CLAUDE.md
Instructions for 2youg1/sprawling: See AGENTS.md. It is the whole instruction set for this repository — the loop, what to read first, the five steps of one change, the rules a machine holds, and the language and commit conventions.