
Inkos Multi Agent Novel Writing
Orchestrate Writer → Validator → Auditor → Reviser agents from the InkOS CLI to draft, audit, and revise novel chapters with human review gates.
Overview
InkOS Multi-Agent Novel Writing is an agent skill for the Build phase that documents a multi-agent InkOS CLI pipeline to autonomously write, audit, and revise novel chapters with human review gates.
Install
npx skills add https://github.com/aradotso/trending-skills --skill inkos-multi-agent-novel-writingWhat is this skill?
- npm-global CLI `@actalk/inkos` with `npx` fallback and Node.js ≥ 20.0.0 requirement
- Pipeline roles: Writer → Validator → Auditor → Reviser with human review gates at configurable checkpoints
- Commands include `inkos book create`, `inkos write next`, `inkos audit`, and `inkos daemon start` for continuous product
- Project scaffold: `story/outline.md`, `book_rules.md`, `chapter_summaries.md`, `subplot_board.md` for architect and audi
- Genre-aware book creation (e.g. xuanhuan) for long-form fiction workflows
- 4 agent roles in pipeline (Writer, Validator, Auditor, Reviser)
Adoption & trust: 2.1k installs on skills.sh; 31 GitHub stars; 3/3 security scanners passed (skills.sh audits).
What problem does it solve?
You want AI-assisted long-form fiction but one-shot chat sessions lose plot continuity, rule compliance, and structured revision across dozens of chapters.
Who is it for?
Builders comfortable with Node CLIs who are producing serial fiction, IP bibles, or agent-driven creative side projects and need pipeline discipline.
Skip if: Teams needing WYSIWYG collaborative editors, legal publishing workflows, or non-fiction API docs—InkOS targets autonomous novel production.
When should I use this skill?
Triggers include write novel with AI agents, autonomous novel production, inkos novel writing, multi-agent creative writing, AI novel audit and revision, inkos CLI novel agent, or novel writing pipeline with review gates
What do I get? / Deliverables
You get a repeatable InkOS project with agent roles, CLI commands, and gated checkpoints that produce audited chapters and running summaries instead of unstructured drafts.
- InkOS book project with outline, rules, summaries, and subplot board files
- Audited and revised chapter drafts via CLI commands or daemon runs
- Configured human review gate checkpoints across the agent chain
Recommended Skills
Journey fit
InkOS is an implementation-time multi-agent toolchain you install and run locally or in a daemon, so Build is the canonical phase—not distribution or analytics. Agent-tooling fits a TypeScript CLI that chains autonomous agents with configurable human checkpoints across the writing pipeline.
How it compares
An orchestrated agent workflow skill for fiction throughput, not a single prompt template or generic writing assistant.
Common Questions / FAQ
Who is inkos-multi-agent-novel-writing for?
Indie authors and agent-savvy developers who want a CLI-native, multi-role writing factory with explicit audit and revision stages.
When should I use inkos-multi-agent-novel-writing?
During Build agent-tooling setup when you are scaffolding a novel repo, running chapter generation, or operating a long-running inkos daemon for continuous drafts.
Is inkos-multi-agent-novel-writing safe to install?
Installing `@actalk/inkos` runs third-party npm code with filesystem access; review the Security Audits panel on this Prism page and vet the package before global install.
SKILL.md
READMESKILL.md - Inkos Multi Agent Novel Writing
# InkOS Multi-Agent Novel Writing > Skill by [ara.so](https://ara.so) — Daily 2026 Skills collection InkOS is a multi-agent CLI system that autonomously writes, audits, and revises novels. Agents handle the full pipeline: Writer → Validator → Auditor → Reviser, with human review gates at configurable checkpoints. ## Installation ```bash npm install -g @actalk/inkos # or run directly npx @actalk/inkos --version ``` **Requirements:** Node.js ≥ 20.0.0 ## Quick Start ```bash # Create a new novel project inkos book create --title "吞天魔帝" --genre xuanhuan # Write the next chapter inkos write next 吞天魔帝 # Audit a specific chapter inkos audit 吞天魔帝 --chapter 3 # Run the full daemon (continuous production) inkos daemon start ``` ## Project Structure After `inkos book create`, the project directory contains: ``` story/ outline.md # Story outline (architect agent input) book_rules.md # Per-book custom rules and audit dimensions chapter_summaries.md # Auto-generated per-chapter summaries subplot_board.md # Subplot progress tracking (A/B/C lines) emotional_arcs.md # Per-character emotional arc tracking character_matrix.md # Character interaction matrix + info boundaries parent_canon.md # Spinoff only: imported canon constraints style_profile.json # Style fingerprint (if style import used) style_guide.md # LLM-generated qualitative style guide chapters/ ch001.md ch002.md ... ``` ## Core Commands ### Book Management ```bash inkos book create --title "Title" --genre xuanhuan # genres: xuanhuan | xianxia | dushi | horror | general inkos book list inkos book status 吞天魔帝 ``` ### Writing Pipeline ```bash inkos write next 吞天魔帝 # Write next chapter (auto-loads all context) inkos write chapter 吞天魔帝 5 # Write specific chapter inkos audit 吞天魔帝 --chapter 3 # Audit chapter (33 dimensions) inkos revise 吞天魔帝 --chapter 3 # Revise based on audit results inkos revise 吞天魔帝 --chapter 3 --mode spot-fix # Point fix only (default) inkos revise 吞天魔帝 --chapter 3 --mode rewrite # Full rewrite (use cautiously) inkos revise 吞天魔帝 --chapter 3 --mode polish # Polish (no structural changes) ``` ### Genre System ```bash inkos genre list # List all built-in genres inkos genre show xuanhuan # View full rules for a genre inkos genre copy xuanhuan # Copy genre rules to project for customization inkos genre create wuxia --name 武侠 # Create new genre from scratch ``` ### Style Matching ```bash inkos style analyze reference.txt # Analyze style fingerprint inkos style import reference.txt 吞天魔帝 # Import style into book inkos style import reference.txt 吞天魔帝 --name "某作者" ``` ### Spinoff (Prequel/Sequel/IF-branch) ```bash inkos book create --title "烈焰前传" --genre xuanhuan inkos import canon 烈焰前传 --from 吞天魔帝 # Import parent canon constraints inkos write next 烈焰前传 # Writer auto-reads canon constraints ``` ### AIGC Detection ```bash inkos detect 吞天魔帝 --chapter 3 # Detect AIGC markers in chapter inkos detect 吞天魔帝 --all # Detect all chapters inkos detect --stats # View detection history statistics ``` ### Daemon (Continuous Production) ```bash inkos daemon start # Start scheduler (default: 15 min/cycle) inkos daemon stop inkos daemon status ``` ## Configuration ### Global Config (`~/.inkos/config.json`) ```json { "llm": { "provider": "openai", "model"