| Document | Description | Status |
|---|---|---|
| 01_PRODUCT_ROADMAP.md | Three-phase roadmap with research foundation, features, success criteria, and feedback touchpoints | Complete |
| 02_PHASE1_PRDs.md | Detailed Product Requirements Documents for all Phase 1 MVP features | Complete |
| 03_IMPLEMENTATION_GUIDE.md | Technical implementation guide for Claude Code, including file structures, command definitions, and templates | Complete |
| 05_AI_COAUTHOR_PLAN.md | Opinionated AI co-author architecture for SF-thriller / SF-philosophical writing with style modeling and diagnostics | Complete |
| 06_COAUTHOR_EXECUTION_RUNBOOK.md | Operational runbook for canon setup and deterministic validation | Complete |
| 07_COAUTHOR_SYSTEM_DESIGN.md | Detailed system design with architecture and end-to-end flow diagram | Complete |
This product creates a hybrid skill/agent system for Claude Code that helps fiction writers produce consistent, craft-informed scenes while maintaining creative control.
AI-assisted scene drafting frequently loses:
- Character voice consistency
- Continuity details (knowledge, objects, timeline)
- World rule compliance (magic systems, geography)
- Authentic prose quality (avoids AI "tells")
┌─────────────────────────────────────────────────────────────┐
│ Story Bible (Foundation) │
│ story-bible.md | world-rules.md | scene-tracker.md │
│ characters/*.md │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ Phase 1: MVP Pipeline │
│ │
│ outline.md → [Scene Architect] → blueprint.md │
│ ↓ pause for review │
│ blueprint.md → [Scene Draft] → draft.md │
│ ↓ pause for review │
│ draft.md → [Character Truth] → audit.md │
│ ↓ │
│ [Human Polish] │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ Phase 2: Agents (Future) │
│ │
│ Scene Director (diagnoses, orchestrates) │
│ ├── Prose Surgeon (line-level craft) │
│ └── Continuity Keeper (cross-references) │
│ │
│ Additional Skills: │
│ - Dialogue Subtext Pass │
│ - Tension Curve Analysis │
│ - AI Humanization Pass │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ Phase 3: Scale (Future) │
│ │
│ - Multi-scene arc tracking │
│ - Voice fingerprinting │
│ - Genre-specific modules │
│ - Collaboration features │
└─────────────────────────────────────────────────────────────┘
The system is grounded in proven craft methodologies:
- Five Commandments: Every scene has Inciting Incident, Progressive Complication, Crisis, Climax, Resolution
- Value Shift: Every scene must change something
- Scene Purpose: Reveal character, setting, context, or advance plot
- Write first draft fast, revise ruthlessly
- Show don't tell (avoid adverbs, use active voice)
- Natural dialogue (your vocabulary, not thesaurus words)
- Kill your darlings (cut 10%+)
- Voice = how character interprets the world (worldview filter)
- Consistency builds trust
- Subtext matters (what's NOT said)
- Differentiation: syntax, rhythm, vocabulary, tics
System actively counters:
- Over-consistency (uniform sentences)
- Regression to mean (generic descriptions)
- Overused vocabulary ("delve," "multifaceted," etc.)
- Lack of sensory variety
- Missing concrete details
Structured templates for tracking story facts:
story-bible.md- premise, theme, structurecharacters/*.md- profiles with voice guidesworld-rules.md- constraints and hard limitsscene-tracker.md- continuity tracking
Transform rough idea → structured blueprint following Five Commandments
Transform blueprint → full prose with voice enforcement and world rule checking
Audit draft for character consistency (voice, knowledge, behavior)
Orchestrate skills with pause-for-review between stages
- Writer produces complete scene from outline in under 2 hours
- Character voice remains consistent across scenes
- No world rule violations in generated content
- Prose passes "gut check" for human quality
- Writer maintains creative control at each stage
- What's working/not working?
- Are templates capturing what you need?
- Voice preservation accuracy?
- What's missing?
- Scene Director diagnosis accuracy?
- Prose Surgeon helpfulness?
- Continuity error catch rate?
- What's the new bottleneck?
- Validate setup:
python scripts/validate_coauthor_setup.py --root . - Run
/project:skills:story-concept→ producescanon/story-concept.md(L1) - Run
/project:skills:story-arc-builder→ producescanon/story-arc.md(L2) - Run
/project:skills:act-outline(per act) → producescanon/acts/act-{N}-outline.md(L3) - Pipeline state advances automatically through L1→L2→L3 in
.pipeline-state.yaml - Continue to Stage 1 (chapter planning) with
/project:pipeline-run
At any pipeline step, run a mob review where specialist agents critique the current artifact:
/project:skills:mob-session
The Lead Editor orchestrates specialist agents (Plot Analyst, Character Specialist, Depth Partner, Continuity Agent, Prose Crafter) in a structured 4-phase protocol:
- Structure Offer — organizes your input
- Comment Queue — each agent gives one focused comment with canon citations
- Resolution Check — summarizes accepted changes, checks governance rules
- Commit — writes approved changes to canon files
You maintain full control: accept, reject, revise, or park each suggestion. See docs/mob_protocol.md for details.
- Read 01_PRODUCT_ROADMAP.md for full context
- Review 02_PHASE1_PRDs.md for detailed requirements
- Use 03_IMPLEMENTATION_GUIDE.md to build the system
- Review 05_AI_COAUTHOR_PLAN.md for the opinionated co-author architecture
- Run 06_COAUTHOR_EXECUTION_RUNBOOK.md and validate setup with
python scripts/validate_coauthor_setup.py --root .
- Version: 0.1.0
- Date: January 8, 2026
- Status: Phase 1 documented, ready for implementation