agentdelta AGENTS.md

agentdelta AGENTS.md is an instructions file for Codex, OpenCode from sandeep-alluru/agentdelta. It costs 593 tokens per session, scanned A, original, MIT.

Project instructions for agentdelta, a tool that records and compares the detailed steps taken by AI agents. It is intended to detect behavior changes during automated software testing.

In plain words
What is it for?
Use it to understand the agentdelta codebase, record language-model and tool activity, compare JSONL traces, and produce terminal, JSON, or pull-request reports.
Why use it?
It can expose a change in an agent's reasoning or tool use even when the final output looks acceptable. This makes model, prompt, and tool changes easier to check in continuous integration, the automated checks run for code changes.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/sandeep-alluru/agentdelta/agents-md
Clone the repo
git clone --depth 1 https://github.com/sandeep-alluru/agentdelta

Made for: Codex, OpenCode.

Wrote 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.

agentmods badge for agentdelta AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/sandeep-alluru/agentdelta/agents-md.svg)](https://agentmods.dev/instructions/sandeep-alluru/agentdelta/agents-md)
Your own site
<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>
Per session 593 This file is loaded in full into every session.
When invoked 593 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 3d ago against content hash 82ef02091a56, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

AGENTS.md · 48 lines

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.id is 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 with threading.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_regression is True iff fork_point is not None — i.e., at least one aligned pair fell below fork_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.

Read the full file on GitHub · 48 lines

Changes

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.

  1. 3d ago First seen · 48 lines · 593 tokens per session scan A 82ef02091a56

Subscribe to this mod's changes

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.

Related

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.

langchain-ai/langchain · 4,345 tokens

LangAlpha AGENTS.md

AGENTS.md instructions for ginlix-ai/LangAlpha, covering langalpha, common commands, architecture, backend (src/) and frontend (web/src/).

ginlix-ai/LangAlpha · 2,596 tokens

MaxKB CLAUDE.md

Claude Code instructions for 1Panel-dev/MaxKB, covering claude.md, project overview, development commands, database / static and architecture.

1Panel-dev/MaxKB · 2,021 tokens

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.

langchain-ai/langchain · 4,345 tokens

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].

BerriAI/litellm · 10 tokens

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].

BerriAI/litellm · 10 tokens