autonovel

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

An entry point for AutoNovel, a multi-stage workflow for creating, continuing, reviewing, and exporting novels.

In plain words
What is it for?
Use it to start or resume a novel, check its progress, and access stages such as story planning, drafting, revision, prose review, and export.
Why use it?
It gives a novel project a defined workspace and directs each request to the appropriate stage, reducing confusion about what to do next.

Skill for Claude Code

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

Good fit Use it to start or resume a novel, check its progress, and access stages such as story planning, drafting, revision, prose review, and export.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/duketwocan/autonovel-agent-skills/autonovel"><img src="https://agentmods.dev/badge/skills/duketwocan/autonovel-agent-skills/autonovel.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,850 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.00094 $0.01850
Opus 5 $0.00047 $0.00925
Sonnet 5 $0.00019 $0.00370
Haiku 4.5 $0.00009 $0.00185

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

Security

Grade A, and why

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

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/SKILL.md · 144 lines

How it starts

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

Autonovel — pipeline entry point

This skill is the front door to the autonovel novel-writing pipeline. The user invokes it when they want to start a new novel, resume an existing one, or just understand what's available.

When to use this skill

  • User says "let's write a novel about X" or "let's continue the novel"
  • User mentions autonovel, the novel pipeline, or asks about phases
  • User wants to see status of an in-progress novel

Prerequisites

The user must set AUTONOVEL_WORKSPACE to a writable directory (e.g. ~/novels). Each novel lives in $AUTONOVEL_WORKSPACE/$NOVEL_SLUG/ with its own state.json.

Check the workspace:

!`echo "AUTONOVEL_WORKSPACE=$AUTONOVEL_WORKSPACE" && test -d "$AUTONOVEL_WORKSPACE" && ls -la "$AUTONOVEL_WORKSPACE" || echo "workspace not set or missing"`

If AUTONOVEL_WORKSPACE is unset or the directory is missing, ask the user to set it before continuing. Default suggestion: ~/novels.

Workflow

Step 1 — Identify the novel

Ask the user: which novel? Options:

  • Existing novel (list subdirs of $AUTONOVEL_WORKSPACE)
  • New novel (ask for a short slug, e.g. "house-of-bells")

For a NEW novel:

  1. Ask the user for a one-paragraph seed concept.
    • 1b. If the novel is a commission (user pastes a subscriber request), run references/commission-intake.md instead of asking for a seed paragraph — the approved pitch becomes the seed.
  2. Create $AUTONOVEL_WORKSPACE/$NOVEL_SLUG/.
  3. Copy ${HERMES_SKILL_DIR}/templates/seed.txt.template to $AUTONOVEL_WORKSPACE/$NOVEL_SLUG/seed.txt, fill in the seed.
  4. Copy ${HERMES_SKILL_DIR}/templates/state.json.template to $AUTONOVEL_WORKSPACE/$NOVEL_SLUG/state.json, fill in the novel_slug.
  5. Initialize a git repo in the novel directory so revisions are tracked.

Step 2 — Read state.json and dispatch

Read $AUTONOVEL_WORKSPACE/$NOVEL_SLUG/state.json. Look at phase:

  • "foundation" → invoke autonovel-foundation skill
  • "drafting" → invoke autonovel-drafting skill
  • "revision" → invoke autonovel-revision skill
  • "consistency" → invoke autonovel-consistency-pass skill
  • "export" → invoke autonovel-export skill
  • "done" → report status; user can re-enter via autonovel-prose-review for polish

Read the full file on GitHub · 144 lines

Files

What ships with it

60 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 · 144 lines · 94 tokens per session scan A c4f6b73414be

Subscribe to this mod's changes

autonovel is a skill published in the GitHub repository DukeTwoCan/autonovel-agent-skills (2 stars, last pushed 1mo ago), licensed MIT. It adds 94 tokens to every session and 1,850 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