inkos
AgentFreeAutonomous novel writing AI Agent — agents write, audit, and revise novels with human review gates
Capabilities17 decomposed
multi-agent orchestrated novel generation pipeline
Medium confidenceCoordinates a specialized 10-agent pipeline (Radar, Planner, Composer, Architect, Writer, Continuity Auditor, Reviser, and others) where each agent handles specific creative and logical tasks in sequence. Agents communicate through a shared Truth Files state system that maintains canonical world state, character matrices, and plot hooks across the entire generation process. The pipeline enforces human review gates between critical stages, allowing writers to approve or reject agent outputs before proceeding to the next phase.
Uses a persistent Truth Files system (7 canonical markdown/JSON documents) as the single source of truth for world state, character matrices, and plot hooks, enabling agents to maintain narrative consistency across 100+ chapters without context window degradation. Each agent reads/writes to Truth Files rather than relying on conversation history, making the system scalable to novel-length outputs.
Unlike ChatGPT or Claude plugins that lose context after ~50k tokens, InkOS maintains explicit state artifacts that agents can reference indefinitely, preventing character amnesia and narrative drift in long-form fiction.
truth files state management system
Medium confidenceMaintains 7 canonical markdown and JSON files that serve as the persistent knowledge base for the entire novel generation pipeline: World Bible (setting/lore), Character Matrix (detailed character profiles with relationships), Plot Hooks (story beats and foreshadowing), Chapter Snapshots (summaries of each completed chapter), Writing Rules (genre-specific and universal constraints), and Continuity Log (detected inconsistencies and resolutions). Agents read from and write to these files via a State Manager API that enforces schema validation using Zod and TypeBox, preventing malformed state updates.
Implements a schema-driven state system where Truth Files are validated against Zod/TypeBox schemas before agents can write updates, preventing invalid state mutations. Agents cannot directly modify files; all writes go through a State Manager API that enforces type safety and logs all mutations for audit trails.
Unlike RAG systems that retrieve relevant context on-demand, InkOS maintains explicit, mutable state that agents can both read and update, enabling bidirectional information flow (agents learn from Truth Files and update them with new discoveries).
fanfic and spinoff mode with source material integration
Medium confidenceAllows users to provide existing source material (published novels, fanfic, or original works) as reference context, enabling agents to generate spinoffs, prequels, or alternate universe stories that maintain consistency with the source. The system extracts key characters, plot points, and world details from the source material and populates the Truth Files automatically, reducing manual setup. Agents are instructed to respect source canon while exploring new story directions.
Automatically extracts characters, plot points, and world details from source material and populates Truth Files, reducing manual setup for spinoffs. Agents are instructed to respect source canon while exploring new story directions, with the Auditor validating consistency against the source.
Unlike generic novel generation, fanfic mode is specifically designed to maintain consistency with existing source material, enabling derivative works that feel authentic to the original universe.
architect agent for plot outlining and story structure
Medium confidenceA specialized agent that generates detailed plot outlines and story structures based on a high-level premise. The Architect reads the genre profile and writing rules, then produces a hierarchical outline (acts, chapters, scenes) with plot beats, character arcs, and foreshadowing notes. The output is stored in Truth Files (Plot Hooks) and used by downstream agents (Planner, Writer) to maintain narrative coherence. The Architect can be invoked standalone to generate outlines for human review before any writing begins.
Generates hierarchical plot outlines (acts → chapters → scenes) with explicit plot beats, character arcs, and foreshadowing notes. The output is structured as JSON for machine-readability, enabling downstream agents to reference specific plot beats and ensure consistency.
Unlike generic outline generators, the Architect agent understands genre conventions and writing rules, producing outlines that respect the target style and constraints.
planner and composer agents for chapter planning and structure
Medium confidenceThe Planner agent breaks down the overall plot outline into individual chapter plans, specifying which plot beats, characters, and scenes should appear in each chapter. The Composer agent then structures the chapter plan into a detailed scene-by-scene breakdown with dialogue notes, pacing guidance, and emotional beats. Both agents read from Truth Files (Plot Hooks, Character Matrix) and write their outputs back to Truth Files for the Writer agent to consume. This two-stage planning ensures chapters are coherent and aligned with the overall story structure.
Implements a two-stage planning process where the Planner breaks the overall outline into chapter plans, and the Composer structures each chapter into scenes with dialogue notes and pacing guidance. Both stages write to Truth Files, creating a detailed roadmap for the Writer agent.
Unlike single-stage planning, the two-stage approach (Planner → Composer) produces more detailed and coherent chapter structures, reducing the likelihood of Writer agent deviations.
writer agent for chapter generation with context awareness
Medium confidenceThe core writing agent that generates chapter text based on chapter plans from the Composer agent. The Writer reads from Truth Files (Character Matrix, World Bible, Plot Hooks, Chapter Snapshots) to maintain consistency with established facts and previous chapters. It generates prose in the target style (learned from Style Profile) and respects writing rules (genre-specific and universal). The Writer produces raw chapter text that is then passed to the Auditor for continuity checking and the Reviser for style refinement.
Reads from multiple Truth Files (Character Matrix, World Bible, Plot Hooks, Chapter Snapshots) to maintain consistency with established facts and previous chapters. Uses a learned Style Profile to match the target author's voice and respects genre-specific writing rules during generation.
Unlike generic LLM prompts that lose context after 50k tokens, the Writer agent maintains explicit state in Truth Files, enabling consistent writing across 100+ chapters without context degradation.
continuity auditor agent for consistency checking and error detection
Medium confidenceA specialized agent that audits generated chapters for continuity errors, character inconsistencies, plot contradictions, and AIGC markers. The Auditor reads the chapter text and Truth Files (Character Matrix, World Bible, Chapter Snapshots) and produces a detailed audit report listing detected issues with severity levels (critical, warning, info). Critical issues (e.g., character name misspelling, contradicted plot point) trigger automatic re-generation; warnings (e.g., character behavior inconsistency) are flagged for human review. The Auditor also updates the Continuity Log in Truth Files with detected issues and resolutions.
Produces a structured audit report with severity levels (critical, warning, info) and automatically triggers re-generation for critical issues. Maintains a Continuity Log that tracks all detected issues and resolutions, enabling writers to understand what errors were found and how they were fixed.
Unlike manual continuity checking which is time-consuming and error-prone, the Auditor agent automatically detects and flags issues, enabling scalable quality assurance for long-form fiction.
reviser agent for style refinement and anti-detect rewriting
Medium confidenceA specialized agent that refines chapter prose to improve readability, remove AIGC markers, and match the target style. The Reviser reads flagged passages from the Auditor (high AIGC probability, style inconsistencies) and rewrites them to be more natural and authentic. It uses the learned Style Profile to guide rewrites and respects writing rules during revision. The Reviser can also perform broader revisions (e.g., 'make this dialogue more natural', 'reduce adjective usage') based on human feedback.
Combines AIGC detection (flagging passages with high AI probability) with targeted revision that rewrites only flagged passages rather than the entire chapter. Uses the learned Style Profile to guide rewrites, ensuring revisions match the target author's voice.
Unlike full-chapter rewrites that are time-consuming and may introduce new errors, the Reviser agent performs targeted revisions of flagged passages, minimizing disruption while improving authenticity.
radar agent for real-time monitoring and anomaly detection
Medium confidenceA background monitoring agent that continuously watches the generation pipeline for anomalies: LLM API failures, Truth Files corruption, generation timeouts, style drift, or suspicious patterns (e.g., repeated character names, plot loops). The Radar agent sends alerts to the human operator and can trigger automatic recovery actions (e.g., retry failed generations, restore Truth Files from backup). It maintains a system health dashboard showing pipeline status, error rates, and performance metrics.
Implements continuous background monitoring of the generation pipeline with anomaly detection (API failures, Truth Files corruption, style drift) and automatic recovery actions (retry, rollback). Maintains a real-time health dashboard showing pipeline status and performance metrics.
Unlike passive logging that requires manual review, the Radar agent actively monitors for anomalies and can trigger automatic recovery, reducing downtime and human intervention.
aigc detection and anti-detect revision loop
Medium confidenceAnalyzes generated text using a 33-dimensional auditing system that detects 'AI-tell' markers (repetitive phrasing, unnatural dialogue patterns, overuse of adjectives, structural predictability) characteristic of LLM output. When the Continuity Auditor detects high AIGC probability (>0.6 threshold), it automatically triggers a Reviser agent loop that rewrites flagged passages to increase human-like authenticity. The system maintains a Style Profile per book that learns the target author's voice and uses it to guide revision toward more natural prose.
Combines multi-dimensional heuristic analysis (33 markers including lexical diversity, sentence length variance, dialogue naturalness) with a learned Style Profile that adapts to the target author's voice. Rather than flagging and stopping, it automatically triggers revision loops that rewrite problematic passages to match the learned style.
Unlike static AIGC detectors (Turnitin, GPTZero) that only flag suspicious text, InkOS actively revises flagged passages using the Reviser agent, creating a closed-loop quality improvement system that progressively reduces AI-tell markers.
multi-model llm routing and cost optimization
Medium confidenceAllows assignment of different LLM providers and models to different agents within the same pipeline, enabling cost-quality tradeoffs. For example, the Writer agent might use Claude 3.5 Sonnet (higher quality, higher cost) while the Continuity Auditor uses GPT-4o (faster, cheaper) and the Reviser uses Ollama locally (free but slower). The system maintains a provider registry that abstracts away API differences, allowing agents to call LLMs through a unified interface regardless of backend (OpenAI, Anthropic, Ollama, or custom providers).
Implements a provider registry pattern where agents declare their LLM requirements (e.g., 'needs function calling' or 'must support 200k context') and the system automatically selects the cheapest provider that meets those requirements. Supports dynamic provider switching per chapter based on cost budgets or quality targets.
Unlike LangChain's provider abstraction which is primarily for chat interfaces, InkOS routes entire agent workflows across providers, enabling fine-grained cost optimization at the agent level rather than just the model level.
human-in-the-loop review gates with approval workflows
Medium confidenceInserts mandatory human review checkpoints between critical pipeline stages (after planning, after writing, before revision) where a human writer must approve, reject, or request modifications to agent output before the pipeline proceeds. Rejected outputs trigger automatic re-generation with modified prompts; approved outputs are locked and passed downstream. The system tracks approval history and allows humans to provide inline feedback that agents incorporate into subsequent generations.
Implements a state-based approval system where outputs are locked after human approval, preventing accidental overwrites. Rejected outputs trigger re-generation with modified system prompts that incorporate human feedback, creating a learning loop where agents improve based on human preferences.
Unlike simple 'generate then review' workflows, InkOS embeds approval gates within the pipeline, allowing humans to reject and re-generate specific stages (e.g., reject the plot outline without re-writing the entire chapter).
chapter-level snapshot and rewriting with branching
Medium confidenceCreates immutable snapshots of each completed chapter that capture the full text, metadata (word count, character appearances, plot events), and state deltas (what changed in Truth Files). Allows writers to rewind to any previous chapter snapshot and rewrite from that point forward, creating alternate branches without losing the original timeline. The system tracks which snapshots are 'canonical' (approved for publication) vs experimental branches, enabling non-destructive iteration on story direction.
Implements immutable chapter snapshots that capture not just text but also state deltas (what changed in Truth Files), enabling downstream agents to understand the impact of rewrites. Branching is first-class; the system tracks canonical vs experimental branches and allows side-by-side comparison.
Unlike Git-based version control which requires manual conflict resolution, InkOS snapshots are designed for narrative branching and include semantic metadata (character appearances, plot events) that enable intelligent re-auditing of downstream chapters.
genre-specific writing rules and style enforcement
Medium confidenceMaintains genre-specific configuration profiles (e.g., 'Xianxia', 'Romance', 'Hard Sci-Fi') that define universal writing rules (prose style, dialogue conventions, pacing expectations) and genre-specific constraints (e.g., Xianxia requires cultivation levels, power systems, sect hierarchies). Rules are stored as markdown documents that agents read before generation, and the Auditor agent validates generated text against these rules, flagging violations. Writers can define custom rules per project and override genre defaults.
Implements a two-tier rule system: universal rules (prose style, pacing) apply to all genres, while genre-specific rules (e.g., Xianxia cultivation mechanics) are loaded from genre profiles. Rules are read by agents during generation (as context) and validated by the Auditor during review, creating a bidirectional constraint system.
Unlike static style guides that humans must manually enforce, InkOS genre profiles are machine-readable and actively validated by agents, enabling automated style consistency across 100+ chapters.
inkos studio web workbench for visual project management
Medium confidenceA local web application (built with Vite, React, Hono, Tailwind, Zustand) that provides a visual dashboard for managing novels, viewing real-time generation progress, editing Truth Files, and approving/rejecting agent outputs. The Studio runs on localhost and communicates with the core engine via a REST API, allowing non-technical users to interact with the system without using the CLI. Features include drag-and-drop chapter reordering, inline Truth File editing with live validation, and a visual pipeline status monitor showing which agents are currently running.
Provides a full-featured web workbench (not just a dashboard) where users can edit Truth Files, manage chapters, and approve outputs without touching the CLI. Built with React for interactivity and Hono for a lightweight backend, enabling real-time status updates and form validation.
Unlike Jupyter notebooks or VS Code extensions that require technical setup, InkOS Studio is a standalone web app that non-technical users can open in a browser and use immediately.
terminal user interface (tui) with natural language commands
Medium confidenceA React-Ink-based terminal dashboard that provides an interactive CLI alternative to the web Studio, featuring a visual pipeline status monitor, chapter browser, and Truth File editor. Supports both slash-commands (e.g., '/write chapter 5') and natural language queries (e.g., 'write the next chapter where the protagonist discovers the treasure'). The TUI includes autocomplete for commands, inline help, and a session history that persists across restarts.
Combines traditional slash-command CLI with natural language query support, allowing users to type 'write the next chapter where the protagonist discovers the treasure' instead of '/write --chapter 5 --prompt "protagonist discovers treasure"'. Uses React-Ink to render an interactive dashboard in the terminal.
Unlike traditional CLIs that require memorizing exact command syntax, InkOS TUI supports both structured commands and free-form natural language, lowering the barrier to entry for non-technical users.
daemon mode with webhook system for external integrations
Medium confidenceAllows InkOS to run as a background daemon that listens for webhooks from external systems (e.g., a web novel platform, Discord bot, or custom application). When a webhook is received (e.g., 'generate next chapter'), the daemon triggers the appropriate agent pipeline and sends the result back via HTTP callback. Supports custom webhook handlers that can transform external requests into InkOS commands, enabling integration with third-party platforms without modifying core code.
Implements a webhook-driven architecture where InkOS runs as a daemon and responds to HTTP callbacks from external systems. Supports custom webhook handlers that can transform external request formats into InkOS commands, enabling integration without core code changes.
Unlike REST APIs that require external systems to poll for results, InkOS daemon mode uses webhooks for push-based integration, reducing latency and enabling real-time generation triggers from external platforms.
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with inkos, ranked by overlap. Discovered automatically through the match graph.
Hidden Door
A new kind of social roleplaying...
AI Dungeon
A text-based adventure-story game you direct (and star in) while the AI brings it to life.
Storywise
Revolutionize storytelling with AI-driven generation and editing...
AionLabs: Aion-2.0
Aion-2.0 is a variant of DeepSeek V3.2 optimized for immersive roleplaying and storytelling. It is particularly strong at introducing tension, crises, and conflict into stories, making narratives feel more engaging....
waoowaoo
首家工业级全流程 AI 影视生产平台。Industry-first professional AI Agent platform for controllable film & video production. From shorts to live-action with Hollywood-standard workflows.
DeepFiction
Turn prompts into authentic...
Best For
- ✓fiction writers and indie authors scaling novel production
- ✓publishing teams managing multiple concurrent novel projects
- ✓creators building serialized content (web novels, light novels) with strict continuity requirements
- ✓long-form fiction projects (novels, web serials, light novels) requiring strict continuity
- ✓collaborative writing teams where multiple agents must agree on canonical facts
- ✓writers who want to version-control and diff their story state across revisions
- ✓fanfic writers who want AI assistance while respecting source canon
- ✓authors writing prequels or spinoffs of their own works
Known Limitations
- ⚠Pipeline latency scales with chapter length and number of agents — typical full cycle (plan→write→audit→revise) takes 2-5 minutes per chapter
- ⚠Human review gates create blocking dependencies; if a human rejects output, the entire downstream pipeline must restart
- ⚠Agent coordination overhead adds ~15-20% computational cost vs single-model generation due to inter-agent communication and state synchronization
- ⚠Requires careful tuning of agent prompts and Truth Files schema per genre; generic configuration produces mediocre results
- ⚠Truth Files are stored as local markdown/JSON files; no built-in cloud sync or collaborative locking — multiple agents writing simultaneously can cause race conditions
- ⚠Schema changes require manual migration of existing Truth Files; no automatic schema evolution
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
Repository Details
Last commit: Apr 22, 2026
About
Autonomous novel writing AI Agent — agents write, audit, and revise novels with human review gates
Categories
Alternatives to inkos
Are you the builder of inkos?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →