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/lykhoyda/ask-llm/codex-pair-acknpx skills add Lykhoyda/ask-llm --skill codex-pair-ackgit clone --depth 1 https://github.com/Lykhoyda/ask-llmWrote 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/lykhoyda/ask-llm/codex-pair-ack)<a href="https://agentmods.dev/skills/lykhoyda/ask-llm/codex-pair-ack"><img src="https://agentmods.dev/badge/skills/lykhoyda/ask-llm/codex-pair-ack.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.00047 | $0.00918 |
| Opus 5 | $0.00023 | $0.00459 |
| Sonnet 5 | $0.00009 | $0.00184 |
| Haiku 4.5 | $0.00005 | $0.00092 |
Grade A, and why
codex-pair-ack 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.
How it starts
The opening of the file, as written. The whole thing — 65 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Portable contract
Acknowledge one finding by its 16-character concern hash with a non-empty user reason. Acknowledgement suppresses that finding's reminder/gate; it does not disable future reviews or claim the concern was fixed.
Host adapters
Pi adapter
Run /codex-pair-ack <hash> <reason>. On Pi this dismisses the matching reminder; there is no blocking Stop gate.
Claude Code adapter
The existing detailed workflow below is the Claude Code adapter. Its Agent, MCP, hook, CLAUDE_PLUGIN_ROOT, and AskUserQuestion mechanics apply only on Claude Code; they do not override the Pi adapter above.
Acknowledge a codex-pair HIGH finding
Records an ack for the given finding hash so the codex-pair Stop-gate skips it on future turn-ends. The gate prints a full 16-char hash in its block message, e.g. [fc69d46835dfd2ab] src/auth.ts — pass that hash verbatim.
Instructions
-
Parse args. The first whitespace-delimited token is
<hash>(16-char hex). The remaining text (strip enclosing quotes if present) is<reason>. If either is missing, print usage and stop:Usage: /codex-pair-ack <hash> "<reason>" Example: /codex-pair-ack fc69d46835dfd2ab "false positive — test-only code path" -
Locate the
.codex-pair/directory. Walk up from the current working directory looking for.codex-pair/context.md. The directory that contains.codex-pair/is<markerDir>. If no marker is found after reaching the filesystem root, tell the user:codex-pair is not enabled in this project (no .codex-pair/context.md found). Nothing to acknowledge. -
Validate the hash before using it: it must match
^[0-9a-f]{16}$. If it does not, print the usage block from step 1 and stop (a malformed hash means the user mistyped it). -
Record the ack by running the Bash command below. Substitute real values for
<plugin-root>(the absolute path of this plugin, i.e. the value ofCLAUDE_PLUGIN_ROOT),<markerDir>, and<hash>. Do NOT interpolate<reason>into the command string — the reason is read from stdin via a single-quoted heredoc so the shell never expands$(...), backticks, or quotes inside it (injection-safe). Replace the<reason>line with the user's reason text verbatim:node --input-type=module -e ' import { addAck } from "<plugin-root>/scripts/lib/state.mjs"; import { readFileSync } from "node:fs"; // With `node -e CODE A B`, process.argv = [node, A, B] (no script-file // placeholder), so argv[1]=markerDir, argv[2]=hash. addAck(process.argv[1], process.argv[2], { reason: readFileSync(0, "utf8").trim() }); ' "<markerDir>" "<hash>" <<'CODEX_PAIR_ACK_REASON' <reason> CODEX_PAIR_ACK_REASONaddAckwrites a concurrency-safe shard under<markerDir>/.codex-pair/state/acks/(creating the directory if needed). The hash is passed verbatim — no resolution is performed.
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 · 65 lines · 47 tokens per session scan A c340684350e8
codex-pair-ack is a skill published in the GitHub repository Lykhoyda/ask-llm (16 stars, last pushed 2d ago), licensed MIT. It adds 47 tokens to every session and 918 once invoked, about $0.0002 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
glossary-init
USE WHEN setting up a repo for AI-first work, when an agent hallucinates domain term meaning, or when user asks to bootstrap / extend the repo's domain glossary. Surfaces candidate terms by identifier frequency, asks the user for 1-sentence definitions, writes GLOSSARY.md at repo root. Idempotent — re-running adds new…
conventions-init
USE WHEN setting up a repo for AI-first work (after /init-repo), or when the context-surface hook should start feeding repo conventions to agents before edits. Drafts conventions.yml at repo root: per-kind casing (inferred from the code), a vague-name denylist seed, directory roles, and a hand-filled house-rules…
opik
This skill should be used when the user needs to add Opik tracing or integrations to their code, instrument an LLM application, or needs reference for Opik SDK usage (Python, TypeScript, REST API). Use for tasks like "add tracing", "instrument my code", "use trackopenai", "add OpikTracer", "what span types are…
swarm
Run a multi-agent audit of a codebase by spawning specialized parallel subagents (security, performance, tests, architecture, dead-code), then synthesize their findings into a single prioritized action plan. Use this whenever the user runs /swarm, asks to "audit the repo," "review this codebase," "find issues across…
hyper-plan
Use when about to start a non-trivial implementation that needs decomposition before coding. Also when the user invokes /hyperclaude:hyper-plan. Produces an ordered, bite-sized plan in .hyperclaude/plans/ — the input for /hyperclaude:hyper-plan-review and /hyperclaude:hyper-implement.
ios-debugger-agent
Build, run, and debug iOS apps on a simulator. Use when asked to run an iOS app, interact with the simulator UI, capture logs, or diagnose runtime behavior.