Audiobooks comingReal voice narration is in production — full audiobook editions for Audible and wide release are on the way. Read and download the text editions free here until then.

Personal

The editorial pipeline — how a chapter is made

Part of the technology exposé. The assembly line a chapter passes through — and the single rule that keeps a human at the wheel.

A human writes the soul of the book. Large models draft and edit under that authorship. Deterministic tooling stands guard. The pipeline is how those three roles are staged so the machine never takes the wheel.

flowchart TB
    H[Human seed + canon] --> O[1 · Outline<br/>structure brain]
    O --> D[2a · Draft<br/>prose engine]
    D --> P[2b · Polish<br/>triage → structure → character → line → dialogue → GATEKEEPER]
    P --> CA[2c · Continuity audit]
    CA --> GG{2c′ · Graph gate<br/>hard block on violation}
    GG -->|fail| P
    GG -->|pass| SM[2d · Summarise<br/>rolling story-state]
    SM --> M[3 · Merge → print-ready]
    classDef gate fill:#1b1b1b,stroke:#d4af37,color:#fff;
    class GG gate;
StageRoleWhat it does
1 · Outlinestructure braina blueprint-aware chapter plan
2a · Draftprose enginethe raw chapter, single-shot against a strong human seed
2b · Polishmulti-role editortriage → structure → character → line → dialogue → gatekeeper
2c · Continuity auditauditorstructured issues; one targeted fix pass if errors
2c′ · Graph gateStoryGraphre-ingest + constraint check — hard block on any violation
2d · Summarisecompressorrolling story-state so later chapters stay consistent
3 · Mergedeterministicassemble the print-ready manuscript

The gatekeeper — an LLM judging an LLM

The polish stage's last pass is a style gatekeeper with a surprising power: it may reject a flattened revision and fall back to the stronger draft. Over-editing is a real failure mode — a model will happily polish the life out of a set-piece — so the gatekeeper protects velocity and voice, not just correctness. Crucially, the human's protected spans are injected so the things that make the prose human are never edited out.

The counter-intuitive finding: single-shot beats multi-pass

The pipeline once had an elaborate multi-pass rewrite engine. Measured against single-shot generation on a strong human seed, the multi-pass engine regressed the prose — it sanded off exactly what made it good. The lesson is baked in: the human and a single-shot model do the creative work; the pipeline's job is to guard, not to re-write. That's the one invariant, made operational.

← Back to the technology exposé · guarded by StoryGraph, the verification gate, and the de-LLM loop.

Craft Library · Workshop · View this document on GitHub · Write with us

← Back to Meet the man