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/cdnwetzel/pxx/agents-mdgit clone --depth 1 https://github.com/cdnwetzel/pxxWrote 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/cdnwetzel/pxx/agents-md)<a href="https://agentmods.dev/instructions/cdnwetzel/pxx/agents-md"><img src="https://agentmods.dev/badge/instructions/cdnwetzel/pxx/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.00511 | $0.00511 |
| Opus 5 | $0.00255 | $0.00255 |
| Sonnet 5 | $0.00102 | $0.00102 |
| Haiku 4.5 | $0.00051 | $0.00051 |
Grade A, and why
pxx 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 5d 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.
What it actually says
AGENTS.md — working agreements for AI agents in this repo
What this is
pxx 2.0: a local-first, async AI coding-agent runtime. DESIGN.md is the authoritative architecture contract — read it before changing anything. If a contract must change, change DESIGN.md in the same commit.
Commands
- Test:
uv run pytest(or.venv/bin/python -m pytest) — must stay green. Tests require no network, no Ollama, no aider, no git repo. - Lint:
uv run ruff check pxx tests— must stay clean. - Run locally:
.venv/bin/pxx doctor
Hard rules
- Gates raise; telemetry suppresses. Safety/scope/hook/budget decisions
raise from
pxx.errorsand propagate. Audit and memory writes are best-effort and must never crash a session. - Paths are untrusted. Canonicalize (
pxx.safety.canonicalize, symlinks resolved) before any gate decision. Never derive the trust boundary from model output. - Audit is metadata-only. No prompt bodies, file contents, diffs, or secrets in events/audit. Tool-event previews stay truncated.
- Async core. New long-running operations are
async def; tests drive them withasyncio.run()in sync functions (no pytest-asyncio). - Pure core, thin I/O edges. Policy modules take data and return
decisions; subprocess/network/FS I/O stays injectable. Every module ships
with tests in
tests/test_<module>.py. - Memory is context, never policy. Hooks are deterministic gates — never let model output override them.
- Keep the tool surface small (~8 built-ins). Small local models degrade past ~10 tools.
Conventions
- Python >= 3.11,
from __future__ import annotationseverywhere, dataclasses over dicts, StrEnum for enums,logging.getLogger("pxx")(noprintoutsidecli.py/doctor.py). - Core dependency budget: stdlib +
httpx. New core deps need a strong reason; optional functionality goes in extras. - Follow the existing module layout in DESIGN.md.
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.
- 5d ago First seen · 44 lines · 511 tokens per session scan A 0122f1fb4b56
pxx AGENTS.md is an instructions file published in the GitHub repository cdnwetzel/pxx (18 stars, last pushed yesterday), licensed MIT. It adds 511 tokens to every session, about $0.0026 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
row-bot AGENTS.md
Instructions for siddsachar/row-bot, covering agents.md, project identity, ground rules, repository map and before editing.
row-bot CLAUDE.md
Instructions for siddsachar/row-bot, a project described as: Row-Bot - Personal AI Sovereignty. A local-first AI assistant with integrated tools, a personal knowledge graph, voice, vision, shell, browser automation, scheduled tasks, health tracking, and messaging channels. Run locally via Ollama or add opt-in cloud…
mcp-local-llm AGENTS.md
Instructions for aplaceforallmystuff/mcp-local-llm, covering agents.md - mcp-local-llm, tech stack, architecture, development commands and environment variables.
hermit-agent CLAUDE.md
Instructions for cafitac/hermit-agent, covering hermit project — mcp executor, key modules, public cli, tests and product boundary.
ai-multi-agent-system AGENTS.md
Instructions for radif-ru/ai-multi-agent-system, covering agents.md, 1. сначала думай, потом кодь, 2. минимализм, 3. хирургические правки and 4. выполнение от цели.
toefl-prep AGENTS.md
AGENTS.md instructions for epicsagas/toefl-prep, covering agents.md — toefl-prep plugin, 역할, 의존성 (사전 설치 필요), 학습 일정 (사용자 커스텀) and 스크립트/루브릭 경로.