autonovel-prose-review

autonovel-prose-review is a skill for Claude Code from DukeTwoCan/autonovel-agent-skills. It costs 117 tokens per session (1,748 once invoked), scanned A, original, MIT.

A user-directed stage of AutoNovel that reviews drafted prose line by line within a chosen chapter or story section.

In plain words
What is it for?
Use it to critique or polish a chapter range, act, subplot, or other defined part of a novel after at least one chapter has been drafted.
Why use it?
It limits the review to the scope you name, so feedback stays focused instead of changing the whole manuscript automatically.

Skill for Claude Code

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

Good fit Use it to critique or polish a chapter range, act, subplot, or other defined part of a novel after at least one chapter has been drafted.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/duketwocan/autonovel-agent-skills/autonovel-prose-review/github.svg)](https://agentmods.dev/skills/duketwocan/autonovel-agent-skills/autonovel-prose-review)
Your own site
<a href="https://agentmods.dev/skills/duketwocan/autonovel-agent-skills/autonovel-prose-review"><img src="https://agentmods.dev/badge/skills/duketwocan/autonovel-agent-skills/autonovel-prose-review/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-prose-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/duketwocan/autonovel-agent-skills/autonovel-prose-review"><img src="https://agentmods.dev/badge/skills/duketwocan/autonovel-agent-skills/autonovel-prose-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 117 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,748 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.00117 $0.01748
Opus 5 $0.00059 $0.00874
Sonnet 5 $0.00023 $0.00350
Haiku 4.5 $0.00012 $0.00175

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

Security

Grade A, and why

autonovel-prose-review 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 1 executable file (lib/chunk_text.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-prose-review/SKILL.md · 151 lines

How it starts

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

Autonovel — Prose review (user-triggered, targeted)

Polish prose at the line level for a specific scope. Conversational — the agent suggests, the user decides.

When to use this skill

  • User asks to "review chapter N", "polish the prose in ch X-Y", "look at the heist arc", "do a prose pass"
  • User wants to iterate on prose quality with the agent rather than autopilot
  • Never auto-invoked by the pipeline — user-driven only

Prerequisites

!`test -d "$AUTONOVEL_WORKSPACE/$NOVEL_SLUG/chapters" && ls "$AUTONOVEL_WORKSPACE/$NOVEL_SLUG/chapters" | head`

The novel needs at least one drafted chapter.

Workflow

Step 1 — Resolve scope

The user supplies a scope. Use references/scope-resolver.md to map natural-language scopes to chapter ranges:

  • "ch 7"[7]
  • "ch 7-10"[7, 8, 9, 10]
  • "chapters 7 through 10"[7, 8, 9, 10]
  • "act 2" → look up act-to-chapter mapping in outline.md
  • "the heist arc" / "the romance subplot" → search outline.md headings and arc summaries
  • "all of part 1" → look up part mapping in outline.md
  • "the last 3 chapters"[N-2, N-1, N] from state.json chapters_drafted

If the scope is ambiguous, ask the user to clarify. Show your interpretation before proceeding.

Step 2 — Load context

Read:

  • The chapter files in scope (full prose)
  • voice.md (target voice signature)
  • references/anti-slop.md (from umbrella autonovel skill)
  • references/prose-rubric.md (this skill)
  • genre_context/story-contract.md (story-specific promises and required payoffs that line edits must preserve)
  • genre_context/compiled/evaluation-chapter.md (selected-pack semantic guidance and guardrails)
  • genre_context/resolved.json (selected pattern bundle for the mechanical rescore)

Budget check: ≤4 chapters at a time. If scope > 4 chapters, use lib/chunk_text.py to split into 4-chapter windows and process sequentially (with a fresh prose-review per window).

Assemble a current PROFILE REQUIREMENTS block for each review window using the exact resolved chapter numbers in that window. The assembler reads profile.rating and profile.content_tags from state.json, normalized tags and literal exclusions from genre_context/resolved.json, the coverage map from outline.md, and the matching rating definition from ../autonovel/references/ratings.md:

Read the full file on GitHub · 151 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 · 151 lines · 117 tokens per session scan A 2f7499e8f6dd

Subscribe to this mod's changes

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