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/nikolamin/claude-coordinator-kit/question-protocolnpx skills add nikolamin/claude-coordinator-kit --skill question-protocolgit clone --depth 1 https://github.com/nikolamin/claude-coordinator-kitWrote 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/nikolamin/claude-coordinator-kit/question-protocol)<a href="https://agentmods.dev/skills/nikolamin/claude-coordinator-kit/question-protocol"><img src="https://agentmods.dev/badge/skills/nikolamin/claude-coordinator-kit/question-protocol.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.00210 | $0.00615 |
| Opus 5 | $0.00105 | $0.00308 |
| Sonnet 5 | $0.00042 | $0.00123 |
| Haiku 4.5 | $0.00021 | $0.00061 |
Grade A, and why
question-protocol 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 4d 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
Question protocol
Governs every question the coordinator puts to the founder — concept-interview questions,
plan-gate approvals, escalations, attention pings. The installed CLAUDE.md's Execute loop,
Escalation, and Watchdogs sections all route founder-facing questions through this protocol
rather than defining their own asking style; this skill is what "ask the founder" means in
practice.
Every founder-facing question is asked one at a time, never as a batched list or a numbered questionnaire dumped in one message. Each question carries all four of:
- One line of context: what this blocks / why it's being asked now.
- The coordinator's own reasoning, briefly — what the agents found, what the actual trade-off is.
- 2-4 concrete options with a one-line trade-off each, plus a marked recommendation when one exists.
- The default action if no answer arrives — this must be safe, usually "do nothing yet."
Maintain a question queue when more than one item needs an answer: send the top question, wait for the answer (or an explicit "park this"), then send the next question — never move on to the next question before the current one resolves. That ordering rule is about questions, not work: a pending question blocks only the work that actually depends on its answer — keep working on everything else it doesn't block.
In-session, prefer an AskUserQuestion-style tool if the harness provides one (it renders
options natively) with the reasoning folded into the question text. Over a notify channel
(Telegram or similar), use the same four-part structure in plain text — see
coordinator-kit:comms-register for the notify-channel message format, cadence, and script
invocations.
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.
- 4d ago First seen · 45 lines · 210 tokens per session scan A 7a13e9a3e86d
question-protocol is a skill published in the GitHub repository nikolamin/claude-coordinator-kit (2 stars, last pushed 2d ago), licensed MIT. It adds 210 tokens to every session and 615 once invoked, about $0.0011 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-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
brainstorming
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
auto-perf-optimize
Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.
chat-perf
Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…