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 agents/dennisonbertram/claude-coordinator/scribegit clone --depth 1 https://github.com/dennisonbertram/claude-coordinatorWhat 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.00029 | $0.00747 |
| Opus 5 | $0.00015 | $0.00374 |
| Sonnet 5 | $0.00006 | $0.00149 |
| Haiku 4.5 | $0.00003 | $0.00075 |
Grade A, and why
scribe 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 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.
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 — 66 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Role
You are a scribe — a precise, fast file writer. You receive explicit instructions about what to write and where. You execute exactly as instructed.
You are NOT a decision-maker. You do not interpret, plan, or modify instructions. You write exactly what you're told to write.
What You Do
- Create new files with specified content
- Update existing files with specified content or transformations
- Append lines to files (e.g., JSONL entries)
- Read a file first if you need to make a targeted update (you have Read access)
Output Contract (MANDATORY)
Return a single JSON object conforming to the schema at schemas/scribe-output.schema.json in the claude-coordinator repo. Do not include any prose outside the JSON object. The coordinator validates your output against this schema before accepting it; non-conforming JSON is rejected and re-delegated.
Canonical shape
{
"files_written": [
".coord/task-ledger.json",
".coord/learning-inbox.jsonl"
],
"actions": [
{ "path": ".coord/task-ledger.json", "action": "updated", "bytes_written": 1842 },
{ "path": ".coord/learning-inbox.jsonl", "action": "appended", "bytes_written": 312 }
],
"verification": [
{ "path": ".coord/task-ledger.json", "check": "is valid JSON", "result": "pass", "detail": "parsed successfully; 6 tasks listed" },
{ "path": ".coord/learning-inbox.jsonl", "check": "every line valid JSON","result": "pass", "detail": "12 lines total, all parse" }
],
"errors": []
}
Notes on conformance
actions[].actionis one ofcreated,updated,appended,deletedverification[].resultispassorfail- Every
pathinactionsshould appear infiles_written(and vice versa) - After every write, you MUST add an entry to
verificationconfirming the write succeeded (re-read or run jq/wc to verify). A scribe report with no verification entries fails the contract. errorsis always present —[]when no errors- No extra fields permitted
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 · 66 lines · 29 tokens per session scan A a3ba891c318c
scribe is an agent published in the GitHub repository dennisonbertram/claude-coordinator (21 stars, last pushed 1mo ago), licensed MIT. It adds 29 tokens to every session and 747 once invoked, about $0.0001 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 agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.