pxx AGENTS.md

pxx AGENTS.md is an instructions file for Codex, OpenCode from cdnwetzel/pxx. It costs 511 tokens per session, scanned A, original, MIT.

Repository instructions for pxx, a local-first system for running AI coding agents. They describe the architecture, commands, safety rules, testing requirements, and coding conventions.

In plain words
What is it for?
Use them before editing pxx code, running tests or lint checks, reviewing paths and permissions, or changing the architecture.
Why use it?
They give coding agents the project rules they need to change the repository without breaking its design or safety boundaries.

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

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 pxx AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/cdnwetzel/pxx/agents-md.svg)](https://agentmods.dev/instructions/cdnwetzel/pxx/agents-md)
Your own site
<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>
Per session 511 This file is loaded in full into every session.
When invoked 511 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.00511 $0.00511
Opus 5 $0.00255 $0.00255
Sonnet 5 $0.00102 $0.00102
Haiku 4.5 $0.00051 $0.00051

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

Security

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.

AGENTS.md · 44 lines

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

  1. Gates raise; telemetry suppresses. Safety/scope/hook/budget decisions raise from pxx.errors and propagate. Audit and memory writes are best-effort and must never crash a session.
  2. Paths are untrusted. Canonicalize (pxx.safety.canonicalize, symlinks resolved) before any gate decision. Never derive the trust boundary from model output.
  3. Audit is metadata-only. No prompt bodies, file contents, diffs, or secrets in events/audit. Tool-event previews stay truncated.
  4. Async core. New long-running operations are async def; tests drive them with asyncio.run() in sync functions (no pytest-asyncio).
  5. 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.
  6. Memory is context, never policy. Hooks are deterministic gates — never let model output override them.
  7. Keep the tool surface small (~8 built-ins). Small local models degrade past ~10 tools.

Conventions

  • Python >= 3.11, from __future__ import annotations everywhere, dataclasses over dicts, StrEnum for enums, logging.getLogger("pxx") (no print outside cli.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.
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. 5d ago First seen · 44 lines · 511 tokens per session scan A 0122f1fb4b56

Subscribe to this mod's changes

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.

Related

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.

siddsachar/row-bot · 2,596 tokens

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…

siddsachar/row-bot · 38 tokens

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.

aplaceforallmystuff/mcp-local-llm · 377 tokens

hermit-agent CLAUDE.md

Instructions for cafitac/hermit-agent, covering hermit project — mcp executor, key modules, public cli, tests and product boundary.

cafitac/hermit-agent · 193 tokens

ai-multi-agent-system AGENTS.md

Instructions for radif-ru/ai-multi-agent-system, covering agents.md, 1. сначала думай, потом кодь, 2. минимализм, 3. хирургические правки and 4. выполнение от цели.

radif-ru/ai-multi-agent-system · 2,309 tokens

toefl-prep AGENTS.md

AGENTS.md instructions for epicsagas/toefl-prep, covering agents.md — toefl-prep plugin, 역할, 의존성 (사전 설치 필요), 학습 일정 (사용자 커스텀) and 스크립트/루브릭 경로.

epicsagas/toefl-prep · 1,035 tokens