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/falkordb/code-graph/agents-mdgit clone --depth 1 https://github.com/FalkorDB/code-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.01894 | $0.01894 |
| Opus 5 | $0.00947 | $0.00947 |
| Sonnet 5 | $0.00379 | $0.00379 |
| Haiku 4.5 | $0.00189 | $0.00189 |
Grade A, and why
code-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 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.
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 — 181 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CodeGraph - Agent Instructions
Knowledge graph visualization tool for codebases. Python FastAPI backend + React/TypeScript frontend + FalkorDB graph database.
Architecture
- Backend (
api/): FastAPI, async-first. All routes inapi/index.py. Graph ops inapi/graph.py. LLM chat via GraphRAG inapi/llm.py. - Frontend (
app/): React 18 + TypeScript + Vite. Tailwind CSS + Radix UI. 3D force-graph visualization (D3/Force-Graph). - Database: FalkorDB (graph DB on Redis). Metadata in Redis key-value store.
- Analyzers (
api/analyzers/): tree-sitter (Python), multilspy (Java, C#). Base class inanalyzer.py, orchestrator insource_analyzer.py.
Data flow
- User submits repo URL or folder path -> backend clones/reads and analyzes via language-specific analyzers
- Entities stored in FalkorDB (nodes: File, Class, Function; edges: DEFINES, CALLS, etc.)
- Metadata (URL, commit) stored in Redis
- Frontend fetches graph, renders interactive visualization
- User can chat (GraphRAG), explore neighbors, find paths
Directory structure
api/ # Python backend
cli.py # cgraph CLI tool (typer)
index.py # FastAPI app, routes, auth, SPA serving
graph.py # FalkorDB graph operations (sync + async)
llm.py # GraphRAG + LiteLLM chat
project.py # Repo cloning and analysis pipeline
info.py # Redis metadata operations
prompts.py # LLM prompt templates
auto_complete.py # Prefix search
analyzers/ # Language-specific code analyzers
entities/ # Graph entity models
git_utils/ # Git history graph construction
app/ # React frontend (Vite)
src/components/ # React components (ForceGraph, chat, code-graph, etc.)
src/lib/ # Utilities
skills/code-graph/ # Claude Code skill for code graph indexing/querying
tests/ # Pytest backend tests
endpoints/ # API endpoint integration tests
e2e/ # Playwright E2E tests
seed_test_data.py # Test data seeder
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 · 181 lines · 1,894 tokens per session scan A a8870e398732
code-graph AGENTS.md is an instructions file published in the GitHub repository FalkorDB/code-graph (347 stars, last pushed 7d ago), licensed MIT. It adds 1,894 tokens to every session, about $0.0095 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
hugegraph AGENTS.md
Instructions for apache/hugegraph, covering agents.md, stack & modules, code search anchors, build and all modules.
tinkerpop AGENTS.md
Instructions for apache/tinkerpop, covering agents.md, primary guidance: agent skills, planning and memory: beads, canonical documentation and licensing and provenance.
kglite CLAUDE.md
Instructions for kkollsga/kglite, covering kglite — claude code conventions, build & test, architecture, the boundary principle (wrappers vs core) — summary and in-memory is the core product.
pgGraph AGENTS.md
AGENTS.md instructions for Evokoa/pgGraph, covering package manager safety wrapper and pggraph source-of-truth principle.
kivgraph AGENTS.md
Instructions for Luqueee/kivgraph, covering instrucciones de desarrollo de kivgraph, mapa de instrucciones, identidad del proyecto, qué pregunta contesta cada tool de kivgraph and la puerta delante de grep.
EngramGraph AGENTS.md
Instructions for AsiaOstrich/EngramGraph, covering agents.md, build & test, code style, git workflow and testing.