Cosmic Notes is a unified AI writing notepad that blends StoryForge-style planning with a powerful Copilot. It features Hemingway-style live editing, advanced proofreading, multimodal support, and a modular agent framework.
Key highlights:
- Infinite Quill creative-writing agent (default Copilot overseer)
- Story Planner with JSON import/export
- Templates and StoryForge style integration
- Local Ollama integration (http://localhost:11434)
- STT providers (Faster-Whisper, Whisper optional)
- Settings persisted to YAML in user data dir
- Create/activate venv and install deps:
python -m venv .venv
.\.venv\Scripts\activate
pip install -U pip wheel setuptools
pip install -r requirements.txt
- Ensure Ollama is running and a model is available (e.g. solar-pro):
ollama serve
ollama pull solar-pro
- Launch the app:
python -m app.main
Or use the helper script:
run_storyforge_studio.bat
- Agents: Research, Draft, Summarize, Cite, Translate, Infinite Quill
- Copilot tasks: summarize, translate, rewrite, style, brainstorm, expand, shorten, draft, analyze_image
- Toggle “Use Infinite Quill as Copilot overseer” in Copilot panel
- Proofreading backends: basic, LanguageTool
- Default branch: main
- Python 3.10+
- See
requirements.txtfor pinned deps
TBD