scribe

A precise file-writing agent for coordinator and documentation files. It follows explicit instructions to create, update, or append content and returns a structured record of what it wrote.

In plain words
What is it for?
Use it to write task records, learning entries, documentation, and other specified files under .coord/ or docs/.
Why use it?
It handles routine file updates without making planning or interpretation decisions. This reduces accidental changes when maintaining project state and logs.

Agent

Install

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.

agentmods
npx agentmods add agents/dennisonbertram/claude-coordinator/scribe
Clone the repo
git clone --depth 1 https://github.com/dennisonbertram/claude-coordinator
Per session 29 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 747 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 2d ago against content hash a3ba891c318c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

agents/scribe.md · 66 lines

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[].action is one of created, updated, appended, deleted
  • verification[].result is pass or fail
  • Every path in actions should appear in files_written (and vice versa)
  • After every write, you MUST add an entry to verification confirming the write succeeded (re-read or run jq/wc to verify). A scribe report with no verification entries fails the contract.
  • errors is always present — [] when no errors
  • No extra fields permitted

Read the full file on GitHub · 66 lines

Changes

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.

  1. 2d ago First seen · 66 lines · 29 tokens per session scan A a3ba891c318c

Subscribe to this mod's changes

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.