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/sandeep-alluru/agentdelta/agents-mdgit clone --depth 1 https://github.com/sandeep-alluru/agentdeltaWrote 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.
[](https://agentmods.dev/instructions/sandeep-alluru/agentdelta/agents-md)<a href="https://agentmods.dev/instructions/sandeep-alluru/agentdelta/agents-md"><img src="https://agentmods.dev/badge/instructions/sandeep-alluru/agentdelta/agents-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00593 | $0.00593 |
| Opus 5 | $0.00296 | $0.00296 |
| Sonnet 5 | $0.00119 | $0.00119 |
| Haiku 4.5 | $0.00059 | $0.00059 |
Grade A, and why
agentdelta 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 — 48 lines — stays where its author put it; the contents beside it link to each section on GitHub.
agentdelta — Agent Context
This file is read by AI coding assistants to understand project architecture and conventions: OpenAI Codex CLI · Claude Code · GitHub Copilot · Cursor · Windsurf · Aider · Continue.dev
For tool-specific developer guides see: CLAUDE.md (Claude Code) · CODEX.md (OpenAI Codex CLI)
What this project does
agentdelta is a semantic diff engine for AI agent behavior. It records the step-by-step reasoning trace of an LLM agent (LLM calls, tool calls, tool returns) as a JSONL file, then compares two runs and finds the exact step where the agent's behavior diverged.
Primary use case: behavioral regression testing in CI/CD — detect when a model upgrade, prompt change, or tool swap silently changes how an agent reasons, not just what it outputs.
Module map
src/agentdelta/
├── trace.py # Data model: TraceNode, TraceEdge, AgentTrace (JSONL save/load)
├── embed.py # SentenceTransformer embeddings + sliding-window alignment
├── diff.py # Fork detection → DiffResult with ForkPoint
├── instrument.py # LangChain callback + record() context manager
├── report.py # Rich terminal / JSON / GitHub PR Markdown output
└── cli.py # Click CLI: agentdelta diff, agentdelta inspect
Key invariants
TraceNode.idis content-addressed: SHA-256[:16] of{node_type}:{content}. Same reasoning step → same ID across runs.embed.py:_get_model()is thread-safe via double-checked locking withthreading.Lock.align_traces()is greedy 1:1 — each trace_a node matches at most one trace_b node within ±window positions. O(n·window).has_regressionis True ifffork_point is not None— i.e., at least one aligned pair fell belowfork_threshold.
Testing
make test # 43 tests, ~20s (loads sentence-transformer on first run)
make lint # ruff check + format
make typecheck # mypy
HuggingFace model is cached at ~/.cache/huggingface after first run.
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 · 48 lines · 593 tokens per session scan A 82ef02091a56
agentdelta AGENTS.md is an instructions file published in the GitHub repository sandeep-alluru/agentdelta (0 stars, last pushed 17d ago), licensed MIT. It adds 593 tokens to every session, about $0.0030 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-31.
Other instructions, from other repositories
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
LangAlpha AGENTS.md
AGENTS.md instructions for ginlix-ai/LangAlpha, covering langalpha, common commands, architecture, backend (src/) and frontend (web/src/).
MaxKB CLAUDE.md
Claude Code instructions for 1Panel-dev/MaxKB, covering claude.md, project overview, development commands, database / static and architecture.
langchain CLAUDE.md
Claude Code instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
litellm AGENTS.md
AGENTS.md instructions for BerriAI/litellm, a project described as: The fastest, litest AI Gateway. Rust core with Python SDK. Call 100+ LLM APIs in OpenAI (or native) format with cost tracking, guardrails, load balancing, and logging [Bedrock, Azure, OpenAI, Anthropic, OpenAI, VertexAI, vLLM, Nvidia NIM].
litellm GEMINI.md
Gemini CLI instructions for BerriAI/litellm, a project described as: The fastest, litest AI Gateway. Rust core with Python SDK. Call 100+ LLM APIs in OpenAI (or native) format with cost tracking, guardrails, load balancing, and logging [Bedrock, Azure, OpenAI, Anthropic, OpenAI, VertexAI, vLLM, Nvidia NIM].