chp-core AGENTS.md

A project instruction file for the Capability Host Protocol, a Python protocol and software kit for making agent and tool runs observable, replayable, and governed by policies. It defines three rules that changes must not break, plus commands and test guidance.

In plain words
What is it for?
Use it as the repository's operating guidance when changing the protocol or Python SDK. It covers append-only evidence storage, correlation IDs, alignment checks, and fast and full test suites.
Why use it?
It helps coding agents work on this repository without corrupting its evidence history, losing request-tracking IDs, or letting specifications and code drift apart.

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/capabilityhostprotocol/chp-core/agents-md
Clone the repo
git clone --depth 1 https://github.com/capabilityhostprotocol/chp-core

Made for: Codex, OpenCode.

Per session 775 This file is loaded in full into every session.
When invoked 775 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.00775 $0.00775
Opus 5 $0.00387 $0.00387
Sonnet 5 $0.00155 $0.00155
Haiku 4.5 $0.00077 $0.00077

Measured yesterday against content hash 09b7bb264227, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

chp-core 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.

AGENTS.md · 49 lines

How it starts

The opening of the file, as written. The whole thing — 49 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AGENTS.md — Capability Host Protocol

CHP is a protocol and Python SDK for making agent, tool, and system execution observable, replayable, and governable. Every function wrapped as a @capability gets automatic evidence emission, correlation propagation, replay by session ID, and optional policy enforcement — with zero mandatory infrastructure. The reference host is LocalCapabilityHost in packages/python/chp_core/.

Three invariants you must never violate

  1. Evidence is append-only. Never modify or delete rows in an evidence SQLite store. The SHA256 hash chain breaks if any row changes. store.py is insert-only by design.
  2. Preserve caller correlation IDs. If an InvocationEnvelope arrives with a correlation_id, the host must forward it verbatim into every evidence event and the result. Never generate a new ID over a supplied one.
  3. Spec, schemas, and types must stay in sync. Any change to spec/chp-v0.1.md, schemas/*.json, or packages/python/chp_core/types.py must be validated with chp work check-alignment --repo-root . (runs 41 cross-artifact checks). CI will catch drift, but run it locally first.

Key commands

# Fast test suite (~6s)
cd packages/python && python -m pytest tests/ -m "not slow" -q --no-cov

# Full test suite
cd packages/python && python -m pytest tests/ -q --no-cov

# Protocol conformance (9 checks)
python conformance/runner.py

# Spec/schema/type alignment (41 checks)
PYTHONPATH=packages/python chp work check-alignment --repo-root .

# Wire evidence capture for every Claude Code session
PYTHONPATH=packages/python chp hooks install
Where to look What you'll find
spec/chp-v0.1.md Normative protocol — start here for definitions and MUST/SHOULD requirements
schemas/ JSON Schema for every protocol object (29 files)
packages/python/chp_core/host.py LocalCapabilityHost — registration, invocation, evidence emission
packages/python/chp_core/store.py SQLiteEvidenceStore — append-only, SHA256-chained
packages/python/chp_core/types.py Python dataclasses for all protocol objects
conformance/runner.py 9 conformance checks against a live host
docs/adopter-quickstart.md 10-minute path to first evidence event
examples/ 14 runnable demos

Read the full file on GitHub · 49 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. yesterday First seen · 49 lines · 775 tokens per session scan A 09b7bb264227

Subscribe to this mod's changes

chp-core AGENTS.md is an instructions file published in the GitHub repository capabilityhostprotocol/chp-core (1 stars, last pushed 5d ago), licensed Apache-2.0. It adds 775 tokens to every session, about $0.0039 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.