Autonovel Export
Autonovel Phase 4 — typeset and export the completed novel as PDF (via LaTeX), ePub (stdlib), and audiobook transcript chunks ready for an optional external TTS pipeline. Reads chapters/ch_*.md plus outline.md for the table of contents. Writes export/novel.pdf, export/novel.epub, export/audiobook/. Final phase — sets state.json phase to 'done'.
Autonovel Consistency Pass
Autonovel Phase 3b.1 — cross-chapter consistency review focused on character voice, plot, world rules, and repeated phrasing. Builds a rolling chapter summary then windows over the manuscript in 4-chapter groups, emitting per-window critique and merging into critique/consistency.md. Hands targeted fixes back to autonovel-revision. Max 2 cycles. Designed for the 27B/65k local-model envelope — neve…
Autonovel Revision
Autonovel Phase 3a — iterative revision via adversarial edit + reader-panel consensus + mechanical cuts. Per cycle: generate structural critique, gather 3-4 reader-persona reactions, identify mechanical fixes via lib/slop_detect.py, consolidate into a revision brief, then execute targeted rewrites. Loops 3-6 cycles, stopping on plateau (novel-score delta < 0.3). Hands off to autonovel-consistency…
Autonovel Grade
Autonovel manual grading — user-triggered quality report. Runs every mechanical detector (slop_detect, slop_ngrams) plus the sentence-grading pass over a scope ('chapter 7', 'chapters 3-9', 'manuscript') and writes critique/slop_report_<scope>.md: a self-contained report the user can fix by hand or paste into a stronger model. NOT part of the autopilot path — the pipeline never invokes or waits o…
Autonovel Prose Review
Autonovel Phase 3b.2 — user-triggered targeted prose review. Takes a scope (e.g. 'ch 7', 'ch 7-10', 'act 2', 'the heist arc') and emits line-level critique for that scope only. NOT auto-invoked by the pipeline. Designed for the user to sit with the agent and iterate on prose quality chapter-by-chapter or arc-by-arc. Conversational: the agent presents notes and asks the user which to apply rather…
Autonovel Foundation
Autonovel Phase 1 — build world.md, characters.md, outline.md, canon.md, voice.md from a seed concept. Iterates until foundation_score (from lib/slop_detect.py) meets the adaptive threshold. Reads $AUTONOVEL_WORKSPACE/$NOVEL_SLUG/seed.txt; writes the five foundation files; updates state.json. Hands off to autonovel-drafting when foundation_score plateaus or threshold met.
Autonovel Genre Pack
Use when creating, extending, or validating AutoNovel genre packs. Do not use for drafting, evaluating, or generating novels.
Autonovel Drafting
Autonovel Phase 2 — sequential chapter drafting from the act+scene outline. Each chapter is drafted, gated by mechanical slop detectors, manuscript-repetition scan, and a sentence-grading pass; flagged spans are surgically rewritten in place (see references/surgical-rewrite.md). State.json tracks chapters_drafted / chapters_total and the calibration window. Hands off to autonovel-revision when al…
Autonovel
Entry point for the autonovel pipeline — multi-phase novel-writing skill pack. Use when the user wants to write a novel from a seed concept, resume an in-progress novel, or learn what the pipeline does. Dispatches to phase-specific skills (foundation, drafting, revision, consistency-pass, prose-review, export) based on state.json. Reads $AUTONOVEL_WORKSPACE/$NOVEL_SLUG/state.json to decide which…