Intelligent writing companion for authors. GhostWriter's AI is Arthur, and Arthur is never the author. Arthur does not try to be the author. It reads what you write and keeps story bible of your characters, chapters, and world lore, then uses RAG with an LLM of your choice to help you brainstorm, check consistency of characters and world-building over stories and entire series, and catch plot holes. Most features don't actually require a running LLM -- because Arthur isn't the Author. The developer has published a book using only this app.
-
Distraction-free editor — projects, chapters, autosave, word counts
-
Character dossiers — traits, motivations, speech patterns, relationships

-
World & lore notes — freeform world-building stored with the manuscript

-
Story memory (RAG) — chapters/characters/world notes chunked into ChromaDB
-
Influence Analyzer — maps literary/thematic resonances with cited evidence (craft awareness, not judgment)

-
Story map — tension pulse, chapter mass, cast presence grid, arc lanes, story circle, co-presence links -- This is the most useful feature for most authors. It offloads mental overhead that isn't the storyline.

-
Export — Markdown, plain text, HTML, DOCX, EPUB, no-publish watermarked WAV, or full JSON backup
-
Local-first LLM — any OpenAI-compatible API (llama.cpp server, Ollama, OpenAI, FastFlowLM, etc)
-
LLM Not Required — useful checklists and most mapping features work fine when no model is running
| Layer | Tech |
|---|---|
| Frontend | React, Vite, Tailwind CSS |
| Backend | Python, FastAPI |
| Memory | ChromaDB + sentence-transformers |
| LLM | OpenAI-compatible HTTP API |
cd backend
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -r requirements.txt
python run.pyAPI: http://127.0.0.1:8000
Docs: http://127.0.0.1:8000/docs
Optional env (see backend/.env.example):
export GW_LLM_BASE_URL=http://localhost:11434/v1 # Ollama
export GW_LLM_MODEL=llama3.2cd frontend
npm install
npm run devllama.cpp server
llama-server -m /path/to/model.gguf --port 8080
# default GW_LLM_BASE_URL=http://localhost:8080/v1Ollama
ollama serve
ollama pull llama3.2
export GW_LLM_BASE_URL=http://localhost:11434/v1
export GW_LLM_MODEL=llama3.2FastFlowLM (Recommended for AMD AI 340+ machines, light. Any Atomic-Germ or FastFlowLM HuggingFace or Modelscope repo will work, results vary)
wget https://huggingface.co/Atomic-Germ/Qwen3.5-9B-Claude-4.8-Opus-NPU2/resolve/main/flm-add.py
python3 ./flm-add.py Atomic-Germ/Qwen3.5-9B-Claude-4.8-Opus-NPU2
FLM_CONFIG_PATH="$HOME/.config/flm/model_list.json" FLM_XCLBIN_PATH="$HOME/.config/flm" flm serve qwen3.5-claude:9b --port 8080Without a model, the app still runs; assist endpoints return offline guidance.
GhostWriter/
├── backend/
│ ├── app/
│ │ ├── api/ # FastAPI routers
│ │ ├── db/ # JSON project storage
│ │ ├── models/ # Pydantic schemas
│ │ ├── services/ # RAG, embeddings, LLM
│ │ ├── config.py
│ │ └── main.py
│ ├── requirements.txt
│ └── run.py
├── frontend/
│ └── src/ # React UI
├── data/ # projects + chroma (runtime)
└── tests/
cd backend && source .venv/bin/activate
pip install pytest httpx
cd ..
pytest tests/ -q- You write chapters and fill character/world panels.
- Content is chunked and embedded into a per-project Chroma collection.
- On assist, GhostWriter retrieves relevant story fragments + full character dossiers.
- Context is sent to the LLM with a mode-specific system prompt.
- Sources used for retrieval are shown in the AI panel.
- Phase 2 — deeper plot-hole detection, automated consistency scoring, subplot tracker
- Phase 3 — collaboration, export (DOCX/EPUB), richer world graph
MIT