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/kayba-ai/agentic-context-engine/claude-mdgit clone --depth 1 https://github.com/kayba-ai/agentic-context-engineWrote 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/kayba-ai/agentic-context-engine/claude-md)<a href="https://agentmods.dev/instructions/kayba-ai/agentic-context-engine/claude-md"><img src="https://agentmods.dev/badge/instructions/kayba-ai/agentic-context-engine/claude-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.01400 | $0.01400 |
| Opus 5 | $0.00700 | $0.00700 |
| Sonnet 5 | $0.00280 | $0.00280 |
| Haiku 4.5 | $0.00140 | $0.00140 |
Grade A, and why
agentic-context-engine CLAUDE.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 4d 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.
This is a copy
91% identical to agentic-context-engine AGENTS.md — 10 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 99 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Repository Guidelines
Pipeline-First Development (MANDATORY)
All new functionality MUST be implemented as pipeline Steps composed via the Pipeline engine. Do NOT write standalone scripts, ad-hoc loops, or inline logic that bypasses the pipeline. Before writing any code:
- Read
docs/design/PIPELINE_DESIGN.mdto understand the Step → Pipeline → Branch model. - Implement logic as a
Stepclass withrequires/providesdeclarations and a__call__(self, ctx) -> ctxmethod. - Compose steps using
Pipeline().then(...)and.branch(...)— never manual for-loops or direct function chaining. - Use
StepContext.replace()for immutable context updates — never mutate context directly. - Put integration-specific data in
metadata, not new context fields, unless the field is shared across multiple pipelines.
Anti-patterns to reject:
- Writing a function that calls multiple steps manually instead of composing them in a Pipeline
- Inline reflection/evaluation logic instead of creating a ReflectStep or EvaluateStep
- Ad-hoc
ThreadPoolExecutorusage instead ofasync_boundaryandmax_workerson steps - Standalone scripts that duplicate pipeline functionality without using the pipeline engine
- Bypassing
requires/providescontracts by accessing context fields not declared inrequires
If a task seems like it cannot fit the pipeline model, explain why to the user before proceeding — do not silently circumvent it.
Core Code Protection
Do NOT modify core modules (ace/core/, pipeline/) without explicit user approval. Before proposing any change to these directories:
- Read the relevant design docs (
docs/design/ACE_ARCHITECTURE.md,docs/design/PIPELINE_DESIGN.md) thoroughly. - Evaluate whether the change is truly required or if it can be achieved outside the core (e.g., in an integration, step, or example).
- Clearly explain the proposed change and its justification to the user before making any edits.
- Wait for the user to explicitly accept before proceeding.
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.
- 4d ago First seen · 99 lines · 1,400 tokens per session scan A 84bf347e54c7
agentic-context-engine CLAUDE.md is an instructions file published in the GitHub repository kayba-ai/agentic-context-engine (2,564 stars, last pushed 6d ago), licensed Apache-2.0. It adds 1,400 tokens to every session, about $0.0070 per session on Opus 5. A static security scan graded it A with 0 findings. It is 91% identical to agentic-context-engine AGENTS.md, differing in 10 lines, and is treated as a copy.
Other instructions, from other repositories
activity-frames AGENTS.md
Instructions for nossa-y/activity-frames, covering can i install it without asking?, the mental model (10 seconds), fastest integration: mcp, from python and things you should not do.
localmem-mcp CLAUDE.md
Claude Code instructions for OpenAgentHQ/localmem-mcp, covering claude.md, what this is, non-negotiables, layout and design decisions worth knowing.
titen AGENTS.md
Instructions for RamaAditya49/titen, covering agents.md, product, repository stage, required work lifecycle and coding constraints.
titen CLAUDE.md
Instructions for RamaAditya49/titen, covering claude.md, read agents.md first, commands, two runtimes, one core and publishing to npm.
copilot-memory-store copilot-instructions.md
Instructions for timothywarner-org/copilot-memory-store, covering copilot memory store – ai agent instructions, core modules, memory file behavior, cli & mcp workflows and llm compression.
claude-tap AGENTS.md
Instructions for liaohch3/claude-tap, covering maintainer automation notes, agents 索引, documentation boundary, review guidelines and pre-commit hook.