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 skills/phil65/agentpool/sync-acp-specnpx skills add phil65/agentpool --skill sync-acp-specgit clone --depth 1 https://github.com/phil65/agentpoolWhat 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.00033 | $0.01551 |
| Opus 5 | $0.00016 | $0.00776 |
| Sonnet 5 | $0.00007 | $0.00310 |
| Haiku 4.5 | $0.00003 | $0.00155 |
Grade C, and why
sync-acp-spec scanned grade C with 1 finding 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 2d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf "$tmp" How it starts
The opening of the file, as written. The whole thing — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Sync ACP Spec
Keep src/acp/schema/ aligned with the official Agent Client Protocol reference implementation.
Steps
-
Clone the reference repo into a temporary directory:
tmp=$(mktemp -d) git clone --depth 1 https://github.com/agentclientprotocol/agent-client-protocol "$tmp/acp" -
Identify new commits since last sync:
git -C "$tmp/acp" log --oneline <SPEC_SYNCED_COMMIT>..HEADThe synced commit hash is stored as
SPEC_SYNCED_COMMITinsrc/acp/__init__.py. -
Read the upstream Rust source (the authoritative types):
$tmp/acp/src/agent.rs— agent-side types: capabilities, auth methods, session state, config options, slash commands, content blocks, session updates, MCP servers$tmp/acp/src/client.rs— client-side types: client capabilities, requests, responses$tmp/acp/src/error.rs— error codes andErrorstruct$tmp/acp/src/content.rs— content block types$tmp/acp/src/tool_call.rs— tool call types$tmp/acp/src/plan.rs— plan entry types$tmp/acp/src/rpc.rs— JSON-RPC message types, method strings$tmp/acp/src/ext.rs— extension notifications$tmp/acp/src/version.rs— protocol version constant$tmp/acp/schema/schema.jsonandschema.unstable.json— JSON Schema (useful for cross-checking)
-
Compare with our Python implementation (mapping table):
Upstream Rust file Our Python module agent.rs(capabilities)schema/capabilities.pyagent.rs(auth, common types)schema/common.pyagent.rs(session updates)schema/session_updates.pyagent.rs(session state)schema/session_state.pyagent.rs(slash commands)schema/slash_commands.pyagent.rs(MCP servers)schema/mcp.pyagent.rs(responses)schema/agent_responses.pyagent.rs(requests to client)schema/agent_requests.pyclient.rs(requests)schema/client_requests.pyclient.rs(responses)schema/client_responses.pyclient.rs(capabilities)schema/capabilities.pycontent.rsschema/content_blocks.pytool_call.rsschema/tool_call.pyplan.rsschema/agent_plan.pyrpc.rsschema/messages.pyext.rsschema/notifications.pyerror.rsschema/common.py(Error),exceptions.py(RequestError)version.rsschema/__init__.py(PROTOCOL_VERSION)
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.
- 2d ago First seen · 114 lines · 33 tokens per session scan C 20409408c350
sync-acp-spec is a skill published in the GitHub repository phil65/agentpool (186 stars, last pushed 4mo ago), licensed MIT. It adds 33 tokens to every session and 1,551 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
commands-create-slash-command
Create or update Agent Zero slash commands for the built-in Commands plugin. Use when the user asks to add, edit, duplicate, or refine a reusable /command backed by YAML config plus text/python content files.
braindb
Memory recall and save. Use at every conversation start and whenever the user shares personal information, expertise, project context, preferences, or decisions worth remembering long-term.
braindb-agent
Persistent memory across sessions via the BrainDB agent. Use at conversation start and whenever you need to recall what you know about the user or save new information to long-term memory.
braindb-custom-profile
How to author a BrainDB custom profile — prompt add/replace fragments and an optional keyless ingestor — that shapes wiki naming/structure and feeds a custom ingestion source, with zero effect on defaults when inactive.
geopipe-agent
Use when building AI-driven GIS data pipelines with YAML-defined steps — format conversion, spatial validation, QC reporting, PostGIS loading, WMS publishing. GeoPipe Agent: YAML-driven GIS ETL pipeline agent with quality control.
macbook-optimizer
Complete MacBook optimization suite: monitoring, troubleshooting, cleanup, and performance tuning. Works on all Macs (Intel & Apple Silicon). No extra tools required.