InkOS - Autonomous Novel Writing Agent
InkOS is a CLI tool for autonomous fiction writing powered by LLM agents. It orchestrates a multi-agent pipeline (Radar → Planner → Composer → Architect → Writer → Observer → Reflector → Normalizer → Auditor → Reviser) to generate, audit, and revise novel content with zero human intervention per chapter.
The pipeline operates in three phases:
- Phase 1 (Creative Writing, temp 0.7): Planner generates chapter intent with hook agenda, Composer selects relevant context, Writer produces prose with length governance and dialogue-driven guidance.
- Phase 2 (State Settlement, temp 0.3): Observer over-extracts 9 categories of facts, Reflector outputs a JSON delta (not full markdown), code-layer applies Zod schema validation and immutable state update. Hook operations use upsert/mention/resolve/defer semantics.
- Phase 3 (Quality Loop): Normalizer adjusts chapter length, Auditor runs 33-dimension check including hook health analysis, Reviser auto-fixes critical issues. Self-correction loop runs until all critical issues clear.
Truth files are persisted as schema-validated JSON (story/state/*.json) with markdown projections for human readability. SQLite temporal memory database (story/memory.db) enables relevance-based retrieval on Node 22+.
When to Use InkOS
- English novel writing: Native English support with 10 genre profiles (LitRPG, Progression Fantasy, Isekai, etc.). Set
--lang en
- Chinese web novel writing: 5 built-in Chinese genres (xuanhuan, xianxia, urban, horror, other)
- Fan fiction: Create fanfic from source material with 4 modes (canon, au, ooc, cp)
- Batch chapter generation: Generate multiple chapters with consistent quality
- Import & continue: Import existing chapters from a text file, reverse-engineer truth files, and continue writing
- Style imitation: Analyze and adopt writing styles from reference texts
- Spinoff writing: Write prequels/sequels/spinoffs while maintaining parent canon
- Quality auditing: Detect AI-generated content and perform 33-dimension quality checks
- Genre exploration: Explore trends and create custom genre rules
- Analytics: Track word count, audit pass rate, and issue distribution per book
Initial Setup
First Time Setup
# Initialize a project directory (creates config structure)
inkos init my-writing-project
# Configure your LLM provider (OpenAI, Anthropic, or any OpenAI-compatible API)
inkos config set-global --provider openai --base-url https://api.openai.com/v1 --api-key sk-xxx --model gpt-4o
# For compatible/proxy endpoints, use --provider custom:
# inkos config set-global --provider custom --base-url https://your-proxy.com/v1 --api-key sk-xxx --model gpt-4o
Multi-Model Routing (Optional)
# Assign different models to different agents — balance quality and cost
inkos config set-model writer claude-sonnet-4-20250514 --provider anthropic --base-url https://api.anthropic.com --api-key-env ANTHROPIC_API_KEY
inkos config set-model auditor gpt-4o --provider openai
inkos config show-models
Agents without explicit overrides fall back to the global model.
View System Status
# Check installation and configuration
inkos doctor
# View current config
inkos status
Common Workflows
Workflow 1: Create a New Novel
Initialize and create book:
inkos book create --title "My Novel Title" --genre xuanhuan --chapter-words 3000
# Or with a creative brief (your worldbuilding doc / ideas):
inkos book create --title "My Novel Title" --genre xuanhuan --chapter-words 3000 --brief my-ideas.md
- Genres:
xuanhuan (cultivation), xianxia (immortal), urban (city), horror, other
- Returns a
book-id for all subsequent operations
Generate initial chapters (e.g., 5 chapters):
inkos write next book-id --count 5 --words 3000 --context "young protagonist discovering powers"
- The
write next command runs the full pipeline: draft → audit → revise
--context provides guidance to the Architect and Writer agents
- Returns JSON with chapter details and quality metrics
Review and approve chapters:
inkos review list book-id
inkos review approve-all book-id
Export the book (supports txt, md, epub):
inkos export book-id
inkos export book-id --format epub
Workflow 2: Continue Writing Existing Novel
List your books:
inkos book list
Continue from last chapter:
inkos write next book-id --count 3 --words 2500 --context "protagonist faces critical choice"
- InkOS maintains 7 truth files (world state, character matrix, emotional arcs, etc.) for consistency
- If only one book exists, omit
book-id for auto-detection
Review and approve:
inkos review approve-all
Workflow 2.5: Steering Chapter Focus Before Writing
Use this when the user says things like "pull focus back to the mentor conflict", "pause the merchant guild subplot", or "change what the next chapter should prioritize".
Update the book-level control docs when needed:
- Use
update_author_intent to change the long-horizon identity of the book
- Use
update_current_focus to change the next 1-3 chapters' focus
Compile the next chapter intent:
plan_chapter(bookId, guidance?)
- Generates
story/runtime/chapter-XXXX.intent.md
- Use this to verify what the system thinks the next chapter should do
Compose the actual runtime input package:
compose_chapter(bookId, guidance?)
- Generates
story/runtime/chapter-XXXX.context.json
- Generates
story/runtime/chapter-XXXX.rule-stack.yaml
- Generates
story/runtime/chapter-XXXX.trace.json
Only then write:
write_draft if the user wants intermediate review
write_full_pipeline if they want the usual write → audit → revise flow
Recommended orchestration:
- user asks to redirect focus
update_current_focus
plan_chapter
compose_chapter
- inspect the resulting intent/paths
write_draft or write_full_pipeline
Workflow 3: Import Existing Chapters & Continue
Use this when you have an existing novel (or partial novel) and want InkOS to pick up where it left off.
Import from a single text file (auto-splits by chapter headings):
inkos import chapters book-id --from novel.txt
- Automatically splits by
第X章 pattern
- Custom split pattern:
--split "Chapter\\s+\\d+"
Import from a directory of separate chapter files:
inkos import chapters book-id --from ./chapters/
- Reads
.md and .txt files in sorted order
Resume interrupted import:
inkos import chapters book-id --from novel.txt --resume-from 15
Continue writing from the imported chapters:
inkos write next book-id --count 3
- InkOS reverse-engineers all 7 truth files from the imported chapters
- Generates a style guide from the existing text
- New chapters maintain consistency with imported content
Workflow 4: Style Imitation
Analyze reference text:
inkos style analyze reference_text.txt
- Examines vocabulary, sentence structure, tone, pacing
Import style to your book:
inkos style import reference_text.txt book-id --name "Author Name"
- All future chapters adopt this style profile
- Style rules become part of the Reviser's audit criteria
Workflow 5: Spinoff/Prequel Writing
Import parent canon:
inkos import canon spinoff-book-id --from parent-book-id
- Creates links to parent book's world state, characters, and events
- Reviser enforces canon consistency
Continue spinoff:
inkos write next spinoff-book-id --count 3 --context "alternate timeline after Chapter 20"
Workflow 6: Fine-Grained Control (Draft → Audit → Revise)
If you need separate control over each pipeline stage:
Generate draft only:
inkos draft book-id --words 3000 --context "protagonist escapes" --json
Audit the chapter (33-dimension quality check):
inkos audit book-id chapter-1 --json
- Returns metrics across 33 dimensions including pacing, dialogue, world-building, outline adherence, and more
Revise with specific mode:
inkos revise book-id chapter-1 --mode polish --json
- Modes:
polish (minor), spot-fix (targeted), rewrite (major), rework (structure), anti-detect (reduce AI traces)
Workflow 7: Monitor Platform Trends
inkos radar scan
- Analyzes trending genres, tropes, and reader preferences
- Informs Architect recommendations for new books
Workflow 8: Detect AI-Generated Content
# Detect AIGC in a specific chapter
inkos detect book-id
# Deep scan all chapters
inkos detect book-id --all
- Uses 11 deterministic rules (zero LLM cost) + optional LLM validation
- Returns detection confidence and problematic passages
Workflow 9: View Analytics
inkos analytics book-id --json
# Shorthand alias
inkos stats book-id --json
- Total chapters, word count, average words per chapter
- Audit pass rate and top issue categories
- Chapters with most issues, status distribution
- Token usage stats: total prompt/completion tokens, avg tokens per chapter, recent trend
Workflow 10: Write an English Novel
# Create an English LitRPG novel (language auto-detected from genre)
inkos book create --title "The Last Delver" --genre litrpg --chapter-words 3000
# Or set language explicitly
inkos book create --title "My Novel" --genre other --lang en
# Set English as default for all projects
inkos config set-global --lang en
- 10 English genres: litrpg, progression, isekai, cultivation, system-apocalypse, dungeon-core, romantasy, sci-fi, tower-climber, cozy
- Each genre has dedicated pacing rules, fatigue word lists (e.g., "delve", "tapestry", "testament"), and audit dimensions
- Use
inkos genre list to see all available genres
Workflow 11: Fan Fiction
# Create a fanfic from source material
inkos fanfic init --title "My Fanfic" --from source-novel.txt --mode canon
# Modes: canon (faithful), au (alternate universe), ooc (out of character), cp (ship-focused)
inkos fanfic init --title "What If" --from source.txt --mode au --genre other
- Imports and analyzes source material automatically
- Fanfic-specific audit dimensions and information boundary controls
- Ensures new content stays consistent with source canon (or deliberately diverges in au/ooc modes)
Advanced: Natural Language Agent Mode
For flexible, conversational requests:
inkos agent "写一部都市题材的小说,主角是一个年轻律师,第一章三千字"
- Agent interprets natural language and invokes appropriate commands
- Useful for complex multi-step requests
Input Governance Tools
These tools are the preferred control surface for chapter steering:
plan_chapter(bookId, guidance?)
- Generates chapter intent for the next chapter
- Use before writing when the user wants to change focus
compose_chapter(bookId, guidance?)
- Generates runtime context/rule-stack/trace artifacts
- Use after planning and before writing
update_author_intent(bookId, content)
- Rewrites
story/author_intent.md
- Use for long-horizon changes to the book's identity
update_current_focus(bookId, content)
- Rewrites
story/current_focus.md
- Use for local steering over the next 1-3 chapters
write_truth_file remains available for broad file edits, but prefer the dedicated control tools above for input-governance changes.
Key Concepts
Book ID Auto-Detection
If your project contains only one book, most commands accept book-id as optional. You can omit it for brevity:
# Explicit
inkos write next book-123 --count 1
# Auto-detected (if only one book exists)
inkos write next --count 1
--json Flag
All content-generating commands support --json for structured output. Essential for programmatic use:
inkos draft book-id --words 3000 --context "guidance" --json
Truth Files (Long-Term Memory)
InkOS maintains 7 files per book for coherence:
- World State: Maps, locations, technology levels, magic systems
- Character Matrix: Names, relationships, arcs, motivations
- Resource Ledger: In-world items, money, power levels
- Chapter Summaries: Events, progression, foreshadowing
- Subplot Board: Active and dormant subplots, hooks
- Emotional Arcs: Character emotional progression
- Pending Hooks: Unresolved cliffhangers and promises to reader
All agents reference these to maintain long-term consistency. Since 0.6.0, truth files are backed by schema-validated JSON in story/state/ with automatic bootstrap from markdown for legacy books. During import chapters, these files are reverse-engineered from existing content via the ChapterAnalyzerAgent.
Multi-Phase Writer Architecture
The Writer operates across multiple phases with specialized agents:
- Planner: Generates chapter intent with structured hook agenda (mustAdvance, eligibleResolve, staleDebt) based on memory retrieval.
- Composer: Selects relevant context from truth files by relevance scoring, compiles rule stack and runtime artifacts.
- Phase 1 (Creative, temp 0.7): Generates prose with length governance, English variance brief (anti-repetition), and dialogue-driven guidance.
- Phase 2a (Observer, temp 0.5): Over-extracts 9 categories of facts from the chapter text.
- Phase 2b (Reflector, temp 0.3): Outputs a JSON delta with hookOps (upsert/mention/resolve/defer), currentStatePatch, and chapterSummary. Code-layer validates via Zod schema and applies immutably.
- Normalizer: Single-pass compress/expand to bring chapter length into the target band. Safety net rejects destructive normalization (>75% content loss).
- Auditor: 33-dimension check including hook health analysis (stale debt, burst detection, no-advance warnings).
- Reviser: Auto-fixes critical issues, self-correction loop until clean.
Truth files use structured JSON (story/state/*.json) as the authoritative source, with markdown projections for human readability. Hook admission control prevents duplicate/family hooks from inflating the hook table.
Context Guidance
The --context parameter provides directional hints to the Writer and Architect:
inkos write next book-id --count 2 --context "protagonist discovers betrayal, must decide whether to trust mentor"
- Context is optional but highly recommended for narrative coherence
- Supports both English and Chinese
Genre Management
View Built-In Genres
inkos genre list
inkos genre show xuanhuan
Create Custom Genre
inkos genre create my-genre --name "My Genre"
# Options: --numerical, --power, --era
inkos genre create dark-xuanhuan --name "Dark Xuanhuan" --numerical --power
Copy Built-in Genre for Customization
inkos genre copy xuanhuan
# Copies to project genres/ directory for editing
Command Reference Summary
| Command |
Purpose |
Notes |
inkos init [name] |
Initialize project |
One-time setup |
inkos book create |
Create new book |
Returns book-id. --brief <file>, --lang en/zh, --genre litrpg/progression/... |
inkos book list |
List all books |
Shows IDs, statuses |
inkos write next |
Full pipeline (draft→audit→revise) |
Primary workflow command |
inkos draft |
Generate draft only |
No auditing/revision |
inkos audit |
33-dimension quality check |
Standalone evaluation |
inkos revise |
Revise chapter |
Modes: polish/spot-fix/rewrite/rework/anti-detect |
inkos agent |
Natural language interface |
Flexible requests |
inkos style analyze |
Analyze reference text |
Extracts style profile |
inkos style import |
Apply style to book |
Makes style permanent |
inkos import canon |
Link spinoff to parent |
For prequels/sequels |
inkos import chapters |
Import existing chapters |
Reverse-engineers truth files for continuation |
inkos detect |
AIGC detection |
Flags AI-generated passages |
inkos export |
Export finished book |
Formats: txt, md, epub |
inkos analytics / inkos stats |
View book statistics |
Word count, audit rates, token usage |
inkos radar scan |
Platform trend analysis |
Informs new book ideas |
inkos config set-global |
Configure LLM provider |
OpenAI/Anthropic/custom (any OpenAI-compatible) |
inkos config set-model <agent> <model> |
Set model override for a specific agent |
--provider, --base-url, --api-key-env for multi-provider routing |
inkos config show-models |
Show current model routing |
View per-agent model assignments |
inkos doctor |
Diagnose issues |
Check installation |
inkos update |
Update to latest version |
Self-update |
inkos up/down |
Daemon mode |
Background processing. Logs to inkos.log (JSON Lines). -q for quiet mode |
inkos review list/approve-all |
Manage chapter approvals |
Quality gate |
inkos fanfic init |
Create fanfic from source material |
--from <file>, --mode canon/au/ooc/cp |
inkos genre list |
List all available genres |
Shows English and Chinese genres with default language |
inkos genre create <id> |
Create custom genre profile |
--name, --numerical, --power, --era |
inkos genre copy <id> |
Copy built-in genre to project |
For customization |
inkos write rewrite <book> <ch> |
Rewrite a specific chapter |
Deletes chapter and later, rewrites from that point |
inkos book update [book-id] |
Update book settings |
--chapter-words, --target-chapters, --status, --lang |
inkos book delete <book-id> |
Delete book and all chapters |
--force to skip confirmation |
inkos plan chapter [book-id] |
Generate chapter intent |
Preview what next chapter will do before writing |
inkos compose chapter [book-id] |
Generate runtime artifacts |
Context, rule-stack, trace for next chapter |
inkos consolidate [book-id] |
Consolidate chapter summaries |
Reduces context for long books (volume-level summaries) |
inkos eval [book-id] |
Quality evaluation report |
--json, --chapters <range>. Composite quality score |
inkos studio |
Start web workbench |
-p for port. Local web UI for book management |
inkos fanfic show [book-id] |
Display parsed fanfic canon |
Shows imported source material analysis |
inkos fanfic refresh [book-id] |
Re-import and regenerate fanfic canon |
--from <file> for updated source material |
Error Handling
Common Issues
"book-id not found"
- Verify the ID with
inkos book list
- Ensure you're in the correct project directory
"Provider not configured"
- Run
inkos config set-global with valid credentials
- Check API key and base URL with
inkos doctor
"Context invalid"
- Ensure
--context is a string (wrap in quotes if multi-word)
- Context can be in English or Chinese
"Audit failed"
- Check chapter for encoding issues
- Ensure chapter-words matches actual word count
- Try
inkos revise with --mode rewrite
"Book already has chapters" (import)
- Use
--resume-from <n> to append to existing chapters
- Or delete existing chapters first
Running Daemon Mode
For long-running operations:
# Start background daemon
inkos up
# Stop daemon
inkos down
# Daemon auto-processes queued chapters
Tips for Best Results
- Provide rich context: The more guidance in
--context, the more coherent the narrative
- Start with style: If imitating an author, run
inkos style import before generation
- Import first: For existing novels, use
inkos import chapters to bootstrap truth files before continuing
- Review regularly: Use
inkos review to catch issues early
- Monitor audits: Check
inkos audit metrics to understand quality bottlenecks
- Use spinoffs strategically: Import canon before writing prequels/sequels
- Batch generation: Generate multiple chapters together (better continuity)
- Check analytics: Use
inkos analytics to track quality trends over time
- Export frequently: Keep backups with
inkos export
Support & Resources
- Homepage: https://github.com/Narcooo/inkos
- Configuration: Stored in project root after
inkos init
- Truth files: Located in
books/<id>/story/ per book, with structured JSON in story/state/
- Logs: Check output of
inkos doctor for troubleshooting
1---2name: inkos3description: Autonomous novel writing CLI agent - use for creative fiction writing, novel generation, style imitation, chapter continuation/import, EPUB export, AIGC detection, and fan fiction. Native English support with 10 built-in English genre profiles (LitRPG, Progression Fantasy, Isekai, Cultivation, System Apocalypse, Dungeon Core, Romantasy, Sci-Fi, Tower Climber, Cozy Fantasy). Also supports Chinese web novel genres (xuanhuan, xianxia, urban, horror, other). Multi-agent pipeline, two-phase writer (creative + settlement), 33-dimension auditing, token usage analytics, creative brief input, structured logging (JSON Lines), multi-model routing, and custom OpenAI-compatible provider support.4---56# InkOS - Autonomous Novel Writing Agent78InkOS is a CLI tool for autonomous fiction writing powered by LLM agents. It orchestrates a multi-agent pipeline (Radar → Planner → Composer → Architect → Writer → Observer → Reflector → Normalizer → Auditor → Reviser) to generate, audit, and revise novel content with zero human intervention per chapter.910The pipeline operates in three phases:11- **Phase 1 (Creative Writing, temp 0.7)**: Planner generates chapter intent with hook agenda, Composer selects relevant context, Writer produces prose with length governance and dialogue-driven guidance.12- **Phase 2 (State Settlement, temp 0.3)**: Observer over-extracts 9 categories of facts, Reflector outputs a JSON delta (not full markdown), code-layer applies Zod schema validation and immutable state update. Hook operations use upsert/mention/resolve/defer semantics.13- **Phase 3 (Quality Loop)**: Normalizer adjusts chapter length, Auditor runs 33-dimension check including hook health analysis, Reviser auto-fixes critical issues. Self-correction loop runs until all critical issues clear.1415Truth files are persisted as schema-validated JSON (`story/state/*.json`) with markdown projections for human readability. SQLite temporal memory database (`story/memory.db`) enables relevance-based retrieval on Node 22+.1617## When to Use InkOS1819- **English novel writing**: Native English support with 10 genre profiles (LitRPG, Progression Fantasy, Isekai, etc.). Set `--lang en`20- **Chinese web novel writing**: 5 built-in Chinese genres (xuanhuan, xianxia, urban, horror, other)21- **Fan fiction**: Create fanfic from source material with 4 modes (canon, au, ooc, cp)22- **Batch chapter generation**: Generate multiple chapters with consistent quality23- **Import & continue**: Import existing chapters from a text file, reverse-engineer truth files, and continue writing24- **Style imitation**: Analyze and adopt writing styles from reference texts25- **Spinoff writing**: Write prequels/sequels/spinoffs while maintaining parent canon26- **Quality auditing**: Detect AI-generated content and perform 33-dimension quality checks27- **Genre exploration**: Explore trends and create custom genre rules28- **Analytics**: Track word count, audit pass rate, and issue distribution per book2930## Initial Setup3132### First Time Setup33```bash34# Initialize a project directory (creates config structure)35inkos init my-writing-project3637# Configure your LLM provider (OpenAI, Anthropic, or any OpenAI-compatible API)38inkos config set-global --provider openai --base-url https://api.openai.com/v1 --api-key sk-xxx --model gpt-4o39# For compatible/proxy endpoints, use --provider custom:40# inkos config set-global --provider custom --base-url https://your-proxy.com/v1 --api-key sk-xxx --model gpt-4o41```4243### Multi-Model Routing (Optional)44```bash45# Assign different models to different agents — balance quality and cost46inkos config set-model writer claude-sonnet-4-20250514 --provider anthropic --base-url https://api.anthropic.com --api-key-env ANTHROPIC_API_KEY47inkos config set-model auditor gpt-4o --provider openai48inkos config show-models49```50Agents without explicit overrides fall back to the global model.5152### View System Status53```bash54# Check installation and configuration55inkos doctor5657# View current config58inkos status59```6061## Common Workflows6263### Workflow 1: Create a New Novel64651. **Initialize and create book**:66 ```bash67 inkos book create --title "My Novel Title" --genre xuanhuan --chapter-words 300068 # Or with a creative brief (your worldbuilding doc / ideas):69 inkos book create --title "My Novel Title" --genre xuanhuan --chapter-words 3000 --brief my-ideas.md70 ```71 - Genres: `xuanhuan` (cultivation), `xianxia` (immortal), `urban` (city), `horror`, `other`72 - Returns a `book-id` for all subsequent operations73742. **Generate initial chapters** (e.g., 5 chapters):75 ```bash76 inkos write next book-id --count 5 --words 3000 --context "young protagonist discovering powers"77 ```78 - The `write next` command runs the full pipeline: draft → audit → revise79 - `--context` provides guidance to the Architect and Writer agents80 - Returns JSON with chapter details and quality metrics81823. **Review and approve chapters**:83 ```bash84 inkos review list book-id85 inkos review approve-all book-id86 ```87884. **Export the book** (supports txt, md, epub):89 ```bash90 inkos export book-id91 inkos export book-id --format epub92 ```9394### Workflow 2: Continue Writing Existing Novel95961. **List your books**:97 ```bash98 inkos book list99 ```1001012. **Continue from last chapter**:102 ```bash103 inkos write next book-id --count 3 --words 2500 --context "protagonist faces critical choice"104 ```105 - InkOS maintains 7 truth files (world state, character matrix, emotional arcs, etc.) for consistency106 - If only one book exists, omit `book-id` for auto-detection1071083. **Review and approve**:109 ```bash110 inkos review approve-all111 ```112113### Workflow 2.5: Steering Chapter Focus Before Writing114115Use this when the user says things like "pull focus back to the mentor conflict", "pause the merchant guild subplot", or "change what the next chapter should prioritize".1161171. **Update the book-level control docs when needed**:118 - Use `update_author_intent` to change the long-horizon identity of the book119 - Use `update_current_focus` to change the next 1-3 chapters' focus1201212. **Compile the next chapter intent**:122 ```text123 plan_chapter(bookId, guidance?)124 ```125 - Generates `story/runtime/chapter-XXXX.intent.md`126 - Use this to verify what the system thinks the next chapter should do1271283. **Compose the actual runtime input package**:129 ```text130 compose_chapter(bookId, guidance?)131 ```132 - Generates `story/runtime/chapter-XXXX.context.json`133 - Generates `story/runtime/chapter-XXXX.rule-stack.yaml`134 - Generates `story/runtime/chapter-XXXX.trace.json`1351364. **Only then write**:137 - `write_draft` if the user wants intermediate review138 - `write_full_pipeline` if they want the usual write → audit → revise flow139140Recommended orchestration:141- user asks to redirect focus142- `update_current_focus`143- `plan_chapter`144- `compose_chapter`145- inspect the resulting intent/paths146- `write_draft` or `write_full_pipeline`147148### Workflow 3: Import Existing Chapters & Continue149150Use this when you have an existing novel (or partial novel) and want InkOS to pick up where it left off.1511521. **Import from a single text file** (auto-splits by chapter headings):153 ```bash154 inkos import chapters book-id --from novel.txt155 ```156 - Automatically splits by `第X章` pattern157 - Custom split pattern: `--split "Chapter\\s+\\d+"`1581592. **Import from a directory** of separate chapter files:160 ```bash161 inkos import chapters book-id --from ./chapters/162 ```163 - Reads `.md` and `.txt` files in sorted order1641653. **Resume interrupted import**:166 ```bash167 inkos import chapters book-id --from novel.txt --resume-from 15168 ```1691704. **Continue writing** from the imported chapters:171 ```bash172 inkos write next book-id --count 3173 ```174 - InkOS reverse-engineers all 7 truth files from the imported chapters175 - Generates a style guide from the existing text176 - New chapters maintain consistency with imported content177178### Workflow 4: Style Imitation1791801. **Analyze reference text**:181 ```bash182 inkos style analyze reference_text.txt183 ```184 - Examines vocabulary, sentence structure, tone, pacing1851862. **Import style to your book**:187 ```bash188 inkos style import reference_text.txt book-id --name "Author Name"189 ```190 - All future chapters adopt this style profile191 - Style rules become part of the Reviser's audit criteria192193### Workflow 5: Spinoff/Prequel Writing1941951. **Import parent canon**:196 ```bash197 inkos import canon spinoff-book-id --from parent-book-id198 ```199 - Creates links to parent book's world state, characters, and events200 - Reviser enforces canon consistency2012022. **Continue spinoff**:203 ```bash204 inkos write next spinoff-book-id --count 3 --context "alternate timeline after Chapter 20"205 ```206207### Workflow 6: Fine-Grained Control (Draft → Audit → Revise)208209If you need separate control over each pipeline stage:2102111. **Generate draft only**:212 ```bash213 inkos draft book-id --words 3000 --context "protagonist escapes" --json214 ```2152162. **Audit the chapter** (33-dimension quality check):217 ```bash218 inkos audit book-id chapter-1 --json219 ```220 - Returns metrics across 33 dimensions including pacing, dialogue, world-building, outline adherence, and more2212223. **Revise with specific mode**:223 ```bash224 inkos revise book-id chapter-1 --mode polish --json225 ```226 - Modes: `polish` (minor), `spot-fix` (targeted), `rewrite` (major), `rework` (structure), `anti-detect` (reduce AI traces)227228### Workflow 7: Monitor Platform Trends229230```bash231inkos radar scan232```233- Analyzes trending genres, tropes, and reader preferences234- Informs Architect recommendations for new books235236### Workflow 8: Detect AI-Generated Content237238```bash239# Detect AIGC in a specific chapter240inkos detect book-id241242# Deep scan all chapters243inkos detect book-id --all244```245- Uses 11 deterministic rules (zero LLM cost) + optional LLM validation246- Returns detection confidence and problematic passages247248### Workflow 9: View Analytics249250```bash251inkos analytics book-id --json252# Shorthand alias253inkos stats book-id --json254```255- Total chapters, word count, average words per chapter256- Audit pass rate and top issue categories257- Chapters with most issues, status distribution258- **Token usage stats**: total prompt/completion tokens, avg tokens per chapter, recent trend259260### Workflow 10: Write an English Novel261262```bash263# Create an English LitRPG novel (language auto-detected from genre)264inkos book create --title "The Last Delver" --genre litrpg --chapter-words 3000265266# Or set language explicitly267inkos book create --title "My Novel" --genre other --lang en268269# Set English as default for all projects270inkos config set-global --lang en271```272- 10 English genres: litrpg, progression, isekai, cultivation, system-apocalypse, dungeon-core, romantasy, sci-fi, tower-climber, cozy273- Each genre has dedicated pacing rules, fatigue word lists (e.g., "delve", "tapestry", "testament"), and audit dimensions274- Use `inkos genre list` to see all available genres275276### Workflow 11: Fan Fiction277278```bash279# Create a fanfic from source material280inkos fanfic init --title "My Fanfic" --from source-novel.txt --mode canon281282# Modes: canon (faithful), au (alternate universe), ooc (out of character), cp (ship-focused)283inkos fanfic init --title "What If" --from source.txt --mode au --genre other284```285- Imports and analyzes source material automatically286- Fanfic-specific audit dimensions and information boundary controls287- Ensures new content stays consistent with source canon (or deliberately diverges in au/ooc modes)288289## Advanced: Natural Language Agent Mode290291For flexible, conversational requests:292293```bash294inkos agent "写一部都市题材的小说,主角是一个年轻律师,第一章三千字"295```296- Agent interprets natural language and invokes appropriate commands297- Useful for complex multi-step requests298299## Input Governance Tools300301These tools are the preferred control surface for chapter steering:302303- `plan_chapter(bookId, guidance?)`304 - Generates chapter intent for the next chapter305 - Use before writing when the user wants to change focus306307- `compose_chapter(bookId, guidance?)`308 - Generates runtime context/rule-stack/trace artifacts309 - Use after planning and before writing310311- `update_author_intent(bookId, content)`312 - Rewrites `story/author_intent.md`313 - Use for long-horizon changes to the book's identity314315- `update_current_focus(bookId, content)`316 - Rewrites `story/current_focus.md`317 - Use for local steering over the next 1-3 chapters318319`write_truth_file` remains available for broad file edits, but prefer the dedicated control tools above for input-governance changes.320321## Key Concepts322323### Book ID Auto-Detection324If your project contains only one book, most commands accept `book-id` as optional. You can omit it for brevity:325```bash326# Explicit327inkos write next book-123 --count 1328329# Auto-detected (if only one book exists)330inkos write next --count 1331```332333### --json Flag334All content-generating commands support `--json` for structured output. Essential for programmatic use:335```bash336inkos draft book-id --words 3000 --context "guidance" --json337```338339### Truth Files (Long-Term Memory)340InkOS maintains 7 files per book for coherence:341- **World State**: Maps, locations, technology levels, magic systems342- **Character Matrix**: Names, relationships, arcs, motivations343- **Resource Ledger**: In-world items, money, power levels344- **Chapter Summaries**: Events, progression, foreshadowing345- **Subplot Board**: Active and dormant subplots, hooks346- **Emotional Arcs**: Character emotional progression347- **Pending Hooks**: Unresolved cliffhangers and promises to reader348349All agents reference these to maintain long-term consistency. Since 0.6.0, truth files are backed by schema-validated JSON in `story/state/` with automatic bootstrap from markdown for legacy books. During `import chapters`, these files are reverse-engineered from existing content via the ChapterAnalyzerAgent.350351### Multi-Phase Writer Architecture352The Writer operates across multiple phases with specialized agents:353- **Planner**: Generates chapter intent with structured hook agenda (mustAdvance, eligibleResolve, staleDebt) based on memory retrieval.354- **Composer**: Selects relevant context from truth files by relevance scoring, compiles rule stack and runtime artifacts.355- **Phase 1 (Creative, temp 0.7)**: Generates prose with length governance, English variance brief (anti-repetition), and dialogue-driven guidance.356- **Phase 2a (Observer, temp 0.5)**: Over-extracts 9 categories of facts from the chapter text.357- **Phase 2b (Reflector, temp 0.3)**: Outputs a JSON delta with hookOps (upsert/mention/resolve/defer), currentStatePatch, and chapterSummary. Code-layer validates via Zod schema and applies immutably.358- **Normalizer**: Single-pass compress/expand to bring chapter length into the target band. Safety net rejects destructive normalization (>75% content loss).359- **Auditor**: 33-dimension check including hook health analysis (stale debt, burst detection, no-advance warnings).360- **Reviser**: Auto-fixes critical issues, self-correction loop until clean.361362Truth files use structured JSON (`story/state/*.json`) as the authoritative source, with markdown projections for human readability. Hook admission control prevents duplicate/family hooks from inflating the hook table.363364### Context Guidance365The `--context` parameter provides directional hints to the Writer and Architect:366```bash367inkos write next book-id --count 2 --context "protagonist discovers betrayal, must decide whether to trust mentor"368```369- Context is optional but highly recommended for narrative coherence370- Supports both English and Chinese371372## Genre Management373374### View Built-In Genres375```bash376inkos genre list377inkos genre show xuanhuan378```379380### Create Custom Genre381```bash382inkos genre create my-genre --name "My Genre"383# Options: --numerical, --power, --era384inkos genre create dark-xuanhuan --name "Dark Xuanhuan" --numerical --power385```386387### Copy Built-in Genre for Customization388```bash389inkos genre copy xuanhuan390# Copies to project genres/ directory for editing391```392393## Command Reference Summary394395| Command | Purpose | Notes |396|---------|---------|-------|397| `inkos init [name]` | Initialize project | One-time setup |398| `inkos book create` | Create new book | Returns book-id. `--brief <file>`, `--lang en/zh`, `--genre litrpg/progression/...` |399| `inkos book list` | List all books | Shows IDs, statuses |400| `inkos write next` | Full pipeline (draft→audit→revise) | Primary workflow command |401| `inkos draft` | Generate draft only | No auditing/revision |402| `inkos audit` | 33-dimension quality check | Standalone evaluation |403| `inkos revise` | Revise chapter | Modes: polish/spot-fix/rewrite/rework/anti-detect |404| `inkos agent` | Natural language interface | Flexible requests |405| `inkos style analyze` | Analyze reference text | Extracts style profile |406| `inkos style import` | Apply style to book | Makes style permanent |407| `inkos import canon` | Link spinoff to parent | For prequels/sequels |408| `inkos import chapters` | Import existing chapters | Reverse-engineers truth files for continuation |409| `inkos detect` | AIGC detection | Flags AI-generated passages |410| `inkos export` | Export finished book | Formats: txt, md, epub |411| `inkos analytics` / `inkos stats` | View book statistics | Word count, audit rates, token usage |412| `inkos radar scan` | Platform trend analysis | Informs new book ideas |413| `inkos config set-global` | Configure LLM provider | OpenAI/Anthropic/custom (any OpenAI-compatible) |414| `inkos config set-model <agent> <model>` | Set model override for a specific agent | `--provider`, `--base-url`, `--api-key-env` for multi-provider routing |415| `inkos config show-models` | Show current model routing | View per-agent model assignments |416| `inkos doctor` | Diagnose issues | Check installation |417| `inkos update` | Update to latest version | Self-update |418| `inkos up/down` | Daemon mode | Background processing. Logs to `inkos.log` (JSON Lines). `-q` for quiet mode |419| `inkos review list/approve-all` | Manage chapter approvals | Quality gate |420| `inkos fanfic init` | Create fanfic from source material | `--from <file>`, `--mode canon/au/ooc/cp` |421| `inkos genre list` | List all available genres | Shows English and Chinese genres with default language |422| `inkos genre create <id>` | Create custom genre profile | `--name`, `--numerical`, `--power`, `--era` |423| `inkos genre copy <id>` | Copy built-in genre to project | For customization |424| `inkos write rewrite <book> <ch>` | Rewrite a specific chapter | Deletes chapter and later, rewrites from that point |425| `inkos book update [book-id]` | Update book settings | `--chapter-words`, `--target-chapters`, `--status`, `--lang` |426| `inkos book delete <book-id>` | Delete book and all chapters | `--force` to skip confirmation |427| `inkos plan chapter [book-id]` | Generate chapter intent | Preview what next chapter will do before writing |428| `inkos compose chapter [book-id]` | Generate runtime artifacts | Context, rule-stack, trace for next chapter |429| `inkos consolidate [book-id]` | Consolidate chapter summaries | Reduces context for long books (volume-level summaries) |430| `inkos eval [book-id]` | Quality evaluation report | `--json`, `--chapters <range>`. Composite quality score |431| `inkos studio` | Start web workbench | `-p` for port. Local web UI for book management |432| `inkos fanfic show [book-id]` | Display parsed fanfic canon | Shows imported source material analysis |433| `inkos fanfic refresh [book-id]` | Re-import and regenerate fanfic canon | `--from <file>` for updated source material |434435## Error Handling436437### Common Issues438439**"book-id not found"**440- Verify the ID with `inkos book list`441- Ensure you're in the correct project directory442443**"Provider not configured"**444- Run `inkos config set-global` with valid credentials445- Check API key and base URL with `inkos doctor`446447**"Context invalid"**448- Ensure `--context` is a string (wrap in quotes if multi-word)449- Context can be in English or Chinese450451**"Audit failed"**452- Check chapter for encoding issues453- Ensure chapter-words matches actual word count454- Try `inkos revise` with `--mode rewrite`455456**"Book already has chapters" (import)**457- Use `--resume-from <n>` to append to existing chapters458- Or delete existing chapters first459460### Running Daemon Mode461462For long-running operations:463```bash464# Start background daemon465inkos up466467# Stop daemon468inkos down469470# Daemon auto-processes queued chapters471```472473## Tips for Best Results4744751. **Provide rich context**: The more guidance in `--context`, the more coherent the narrative4762. **Start with style**: If imitating an author, run `inkos style import` before generation4773. **Import first**: For existing novels, use `inkos import chapters` to bootstrap truth files before continuing4784. **Review regularly**: Use `inkos review` to catch issues early4795. **Monitor audits**: Check `inkos audit` metrics to understand quality bottlenecks4806. **Use spinoffs strategically**: Import canon before writing prequels/sequels4817. **Batch generation**: Generate multiple chapters together (better continuity)4828. **Check analytics**: Use `inkos analytics` to track quality trends over time4839. **Export frequently**: Keep backups with `inkos export`484485## Support & Resources486487- **Homepage**: https://github.com/Narcooo/inkos488- **Configuration**: Stored in project root after `inkos init`489- **Truth files**: Located in `books/<id>/story/` per book, with structured JSON in `story/state/`490- **Logs**: Check output of `inkos doctor` for troubleshooting