NovelKit's AI Novel-Writing System
NovelKit isn't a chatbot that writes a few paragraphs for you. It's a writing system — where canon, memory, a task pipeline and a quality gate all run together to keep a long-running novel consistent from chapter 1 to chapter 1000+.
1. The core problem: AI writing that "forgets"
Chatbots produce good text in 500–2000 word bursts. But serial fiction needs durable state: who is where, what's been promised, which realm has unlocked, which plot thread is still open. When state lives in a chat thread, continuity errors are all but guaranteed after 20–30 chapters.
NovelKit handles this by separating writing from chat: every canon decision is written to a file, the pipeline enforces step order, and memory only updates after review.
2. Three pillars of the system
File-first canon
Project DNA, the story bible, character files, the world rulebook and review artifacts are the source of truth. RAG and the vector DB only assist retrieval — disk wins when chat conflicts.
5-layer memory, 8 kinds of narrative data
Long-term memory is unified in one memory provider: 5 layers ranked by authority (canon → approved summaries → derivatives), where canon always beats the index on conflict. Inside, it stores 8 kinds of narrative data:
- Character state
- World rules
- Timeline
- Open loops / foreshadowing
- Reader promises
- Relationships
- Named minor cast
- Story facts
Control plane + quality gate
A task DAG enforces state: outline before write, write before review, review before sync. The Quality Auditor scores continuity, OOC, timeline and plot threads — only a PASS 85+ gets synced.
3. Two pipeline modes
Standard mode — 9 steps
Every chapter passes through a controlled sequence, no skipping:
- Create characters
- Build world
- Plot threads
- Timeline
- Master outline
- Chapter outline
- Write chapter
- Review
- Sync
Details: NovelKit's 9-step pipeline.
Compass mode — for 300–1000+ chapter novels
For very long novels, hard-planning a thousand chapters up front is impractical. Compass mode splits the novel into Volumes and Acts, expanding detail only as writing catches up — every time a new Act/Volume unfolds it references the existing summaries and character state, so distant outline stays on track.
- The compass tracks the ending direction, currently open long threads and estimated scope; it auto-updates at Volume boundaries.
- Flexible Act boundaries follow story pacing (8–25 chapters/Act) rather than a hard cut.
- Tiered summaries Chapter → Act → Volume keep context compact without losing the thread.
4. Correctness guarantees: 24 correctness properties (P1–P24)
Unlike tools that rely purely on prompting, NovelKit's key invariants are verified with property-based testing (24 properties, P1–P24): pipeline ordering, "canon always beats the index," idempotent sync, backward compatibility on upgrade, and more. This is a reliability layer for partners producing fiction at scale.
5. 14 creative tools & 6 genres
Dedicated agents
Character Architect, World Builder, Plot Weaver, Prose Writer, Quality Auditor, Lãng Khách for sync…
6. Who should use this system?
- Authors writing 50–1000+ chapter serials
- Studios / platforms that need an auditable content pipeline
- Teams scaling multiple series in parallel without mixing canon
See real output at Gallery Novel AI — novels written and published through NovelKit.