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 skills add XAIHT/Tlamatini --skill acp_routergit clone --depth 1 https://github.com/XAIHT/TlamatiniWrote 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/skills/xaiht/tlamatini/acp_router)<a href="https://agentmods.dev/skills/xaiht/tlamatini/acp_router"><img src="https://agentmods.dev/badge/skills/xaiht/tlamatini/acp_router/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/xaiht/tlamatini/acp_router"><img src="https://agentmods.dev/badge/skills/xaiht/tlamatini/acp_router.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00064 | $0.01257 |
| Opus 5 | $0.00032 | $0.00629 |
| Sonnet 5 | $0.00013 | $0.00251 |
| Haiku 4.5 | $0.00006 | $0.00126 |
Grade A, and why
acp-router 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 10d 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.
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.
ACP Router
Route a plain-language request to the right ACPX harness.
Decision rules
- If the user's wording names a harness explicitly ("run this in Claude
Code", "ask Cursor to..."), use that as
harnessdirectly. - If the user wants Codex chat conversation, prefer the native Codex
binding (a separate skill); use ACPX Codex only when ACP/
/acp/acpx is named explicitly or when background spawn is needed. - Default
modetosessionso follow-up turns can be added withacp_send. Useone-shotonly when the user asked for a single non-interactive task. (Note:modeis ignored byoneshot-prompttransport agents — claude / cursor / gemini / qwen / codex — because each turn is its own fresh process. Continuity inside the child is not preserved betweenacp_sendcalls on those harnesses.)
Transport awareness
The runtime now uses three transports. acp_doctor returns each agent's
transport in details[].transport (when populated by the host) or you
can infer from the agent_id:
oneshot-prompt(claude, cursor, gemini, qwen, codex) — re-spawns the CLI fresh per turn with the prompt as a CLI argument (claude -p "<task>",codex exec "<task>", ...) and captures stdout to EOF.acp_spawnruns the first turn synchronously and returns the answer in theeventsarray; theassistant_messageevent holds the captured stdout.json-acp(tlamatini self-host) — strict JSON envelope on stdin.tui-repl(kiro, kimi, iflow, kilocode, opencode, pi, droid, copilot) — long-lived REPL over stdin.acp_spawnreturns the session_id sub-second; harvest answers viaacp_send_and_wait/acp_transcript.
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.
- 10d ago First seen · 99 lines · 64 tokens per session scan A 77ab26c2ae79
acp-router is a skill published in the GitHub repository XAIHT/Tlamatini (16 stars, last pushed yesterday), licensed MIT. It adds 64 tokens to every session and 1,257 once invoked, about $0.0003 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 skills, from other repositories
copperhead
Change or verify a KiCad project through copperhead's gated pipeline. Use whenever a task touches .kicadsch or .kicadpcb files, a schematic, a PCB layout, a netlist, ERC/DRC, a BOM, or hardware design docs — instead of editing those files directly.
commit
Inspect git status, draft a commit message that matches the repo's style, and commit staged changes.
review
Review current code changes for bugs, regressions, test gaps, and project-guideline violations.
tura
Work in the Tura agent-runtime repository. Use for Tura architecture, Rust backend, GUI/TUI, prompts, commands, providers, sessions, documentation, tests, packaging, and release work in this directory.
grade-and-fix-daedalus
How to grade a Daedalus run (or pasted agent transcript), root-cause the failure, and ship the fix to Daedalus CORE as a stacked PR — without modifying the prompt-vault sandbox (read-only grading). Covers recurring bug archetypes (Unicode punctuation patch mismatch, syntax-vs-type mislabel, emoji box misalignment…
add-slash-command
How to add a new slash command to Daedalus (src/commands), including the docs-sync step that breaks CI if skipped.