autonovel-consistency-pass

autonovel-consistency-pass is a skill for Claude Code from DukeTwoCan/autonovel-agent-skills. It costs 103 tokens per session (2,573 once invoked), scanned A, original, MIT.

A review step for a multi-chapter novel that checks whether characters, plot details, world rules, and repeated wording remain consistent across chapters.

In plain words
What is it for?
Use it after at least two chapters are drafted to find character-voice drift, plot holes, broken world rules, and repeated phrases, then write the results to a consistency critique.
Why use it?
A chapter-by-chapter review may miss contradictions separated by many chapters. This pass compares the manuscript in groups and records issues for targeted fixes.

Skill for Claude Code

Written for Claude Code: dynamic context !`command`.

Good fit Use it after at least two chapters are drafted to find character-voice drift, plot holes, broken world rules, and repeated phrases, then write the results to a consistency critique.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/duketwocan/autonovel-agent-skills/autonovel-consistency-pass
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.

Any agent
npx skills add DukeTwoCan/autonovel-agent-skills --skill autonovel-consistency-pass
Clone the repo
git clone --depth 1 https://github.com/DukeTwoCan/autonovel-agent-skills

Made for: Claude Code.

Wrote 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.

agentmods badge for autonovel-consistency-pass

README.md
[![agentmods](https://agentmods.dev/badge/skills/duketwocan/autonovel-agent-skills/autonovel-consistency-pass/github.svg)](https://agentmods.dev/skills/duketwocan/autonovel-agent-skills/autonovel-consistency-pass)
Your own site
<a href="https://agentmods.dev/skills/duketwocan/autonovel-agent-skills/autonovel-consistency-pass"><img src="https://agentmods.dev/badge/skills/duketwocan/autonovel-agent-skills/autonovel-consistency-pass/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for autonovel-consistency-pass

Your own site · 80×15
<a href="https://agentmods.dev/skills/duketwocan/autonovel-agent-skills/autonovel-consistency-pass"><img src="https://agentmods.dev/badge/skills/duketwocan/autonovel-agent-skills/autonovel-consistency-pass.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 103 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,573 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00103 $0.02573
Opus 5 $0.00051 $0.01287
Sonnet 5 $0.00021 $0.00515
Haiku 4.5 $0.00010 $0.00257

Measured 12d ago against content hash d391c9d6f6ff, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

autonovel-consistency-pass 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 12d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (lib/chunk_text.py, lib/story_state.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/creative/autonovel-consistency-pass/SKILL.md · 195 lines

How it starts

The opening of the file, as written. The whole thing — 195 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Autonovel — Phase 3b.1 (Consistency pass)

Catch cross-chapter inconsistencies (character voice drift, plot holes, world-rule violations, repeated phrases) that the per-chapter drafting loop can't see.

When to use this skill

  • State.json shows "phase": "consistency" (set by autonovel-revision when 3a complete)
  • User says "do a consistency pass" / "check for plot holes" / "look for inconsistencies"

Prerequisites

!`cd "$AUTONOVEL_WORKSPACE/$NOVEL_SLUG" && ls chapters/*.md | wc -l`
!`cat "$AUTONOVEL_WORKSPACE/$NOVEL_SLUG/state.json" | python -c "import json,sys; s=json.load(sys.stdin); print(s.get('phase'), s.get('revision_cycle'))"`

Need ≥2 chapters drafted; otherwise consistency-pass is meaningless.

Workflow

Step 1 — Build rolling chapter summary

If story_state/facts.json exists, drafting has already been appending each accepted chapter's summary to consistency_state/rolling_summary.md live (see autonovel-drafting/references/fact-extraction.md). In that case, read the existing consistency_state/rolling_summary.md first, note which ## Chapter N headers are already present, and only fill gaps — chapters with no header (drafted before story-state was initialized, or the file is missing entirely). Do not regenerate a summary that already exists. If story_state/facts.json does not exist, or the summary file is missing entirely, build every chapter's summary from scratch as below.

For each chapter needing a summary:

  1. Read chapters/ch_NN.md.
  2. Generate a ~200-token summary covering: what happens, which characters appear, what state changes (relationship dynamics, possessions, knowledge), any world-rule invocations.
  3. Append to consistency_state/rolling_summary.md with header ## Chapter N.

This is the rolling summary the windowed reviewer uses. Built once (or gap-filled); reused across windows.

Step 2 — Window the manuscript

Use lib/chunk_text.py:

import sys
sys.path.insert(0, "${HERMES_SKILL_DIR}/lib")
from chunk_text import chunk_by_chapters

# Read all chapter files in order
import os, glob
chapter_files = sorted(glob.glob("$AUTONOVEL_WORKSPACE/$NOVEL_SLUG/chapters/ch_*.md"))
chapter_texts = [open(f).read() for f in chapter_files]
chunks = chunk_by_chapters(chapter_texts, group_size=4)

Read the full file on GitHub · 195 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 195 lines · 103 tokens per session scan A d391c9d6f6ff

Subscribe to this mod's changes

autonovel-consistency-pass is a skill published in the GitHub repository DukeTwoCan/autonovel-agent-skills (2 stars, last pushed 1mo ago), licensed MIT. It adds 103 tokens to every session and 2,573 once invoked, about $0.0005 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.

Related

Other skills, from other repositories