← All Workflows

📖 Novel Crafter

A dual-agent writing pipeline. The Writer drafts chapters using stored plot outlines and sends them to the Editor via cross-agent messaging for constructive feedback.

Nodes 16
Agents 2
Writer writer@localhost
Editor editor@localhost
Memory LLM × 2 Relay Inbox Send

Dual-Agent Pipeline

Writer drafts → ToolParser sends to editor → Relay delivers → Editor reads inbox → Editor reviews.

Writer Agent

1 Setup — writer@localhost
2 Note — store plot outline
3 Recall — load all memories
4 TextCombine — merge context
5 SystemPrompt — novelist persona
6 TextCombine — build user prompt
7 LLM — write chapter (4096 tokens)
8 ToolParser — extract send + remember
9 TextDisplay — show chapter
10 Relay — deliver to editor

📝 Editor Agent

11 Setup — editor@localhost
12 Inbox — read chapter draft
13 SystemPrompt — editor persona
14 LLM — write review (2048 tokens)
15 TextDisplay — show feedback
Writer Editor
Writer (writes, remembers, sends) Editor (reads inbox, reviews)

Key Features

Cross-Agent Messaging

The writer uses [TOOL:send to="editor@localhost"] to mail its chapter draft. The Relay node physically copies the file into the editor's inbox directory.

📚

Plot Continuity

The Note node stores the plot outline. Recall loads all previous chapter summaries and character sheets so the writer stays on-plot.

📝

Automated Review

The editor agent reads the draft from its inbox and provides feedback on character consistency, pacing, dialogue quality, and plot continuity.