A conversation-first personal knowledge base.
Chat with an AI. A second AI automatically extracts what you said, organizes it, and writes it into an Obsidian-compatible markdown vault — with wikilinks, frontmatter, and folder structure intact.
Prototype release. This is an early version shared with the community. A polished desktop app with cloud sync is in development at mycelia.garden.
Most knowledge tools make organization the work. Mycelia inverts this. You have a conversation with an AI, and a second AI reads that conversation in the background — extracting notes, journal entries, and connections into a local markdown vault you own entirely.
The interface is a chat window. The output is a structured knowledge base that grows every time you talk.
topics/, people/, projects/, decisions/, ideas/). Existing notes are appended to rather than overwritten.journals/YYYY-MM-DD.md with a timestamp.[[wikilinks]]. Your vault works in Obsidian, iA Writer, or any markdown tool — with or without Mycelia.| Layer | Technology |
|---|---|
| Desktop shell | Tauri v2 (Rust) |
| Frontend | SvelteKit + Svelte 5 + TypeScript |
| Styling | Tailwind CSS v4 |
| AI | Anthropic Claude API (BYOK) |
| Graph | Cytoscape.js + fcose layout |
| Editor | Tiptap v3 |
| Search | BM25 in-memory full-text index |
| Persistence | tauri-plugin-store + tauri-plugin-fs |
git clone https://github.com/your-username/mycelia
cd mycelia
bun install
bun tauri dev
On first launch, the onboarding wizard asks for your Anthropic API key and a vault directory. Both are stored locally.
bun tauri build
writeJournalEntry — summarizes the exchange and appends to today's journal.extractKnowledge — extracts structured notes and writes them to the vault.<vault>/
journals/ — Daily entries (YYYY-MM-DD.md)
topics/ — General knowledge and concepts
people/ — People mentioned in conversation
projects/ — Active projects and ventures
decisions/ — Decisions with reasoning
ideas/ — Raw ideas and creative sparks
.mycelia/
chat.json — Persisted conversation history
src/lib/ai/ — Claude client, extraction engine, RAG
src/lib/vault/ — Filesystem ops, graph builder, journal writer, markdown parser
src/lib/stores/ — Svelte stores (chat, settings, notes)
src/lib/search/ — BM25 full-text search index
src/lib/components/ — UI components
src/routes/ — SvelteKit pages (chat, graph, notes, daily, settings)
src-tauri/src/ — Rust: Tauri plugin registration only
All settings are stored locally and never leave the machine (except the API key, which goes only to Anthropic).
| Setting | Default | Description |
|---|---|---|
| API Key | — | Anthropic API key |
| Vault Path | — | Directory where markdown files are written |
| Conversation Model | claude-sonnet-4-6 | Model used for chat responses |
| Extraction Model | claude-haiku-4-5-20251001 | Model used for background extraction and journaling |
| Writing Perspective | Second person | Whether notes say "You decided…" or "I decided…" |
This is a working prototype. Core features function but expect rough edges:
The commercial version under development adds a polished UX, Ollama integration, cloud sync, multi-device access, and an MCP server so Claude.ai Desktop can access your vault natively.
PolyForm Noncommercial 1.0.0 — free to use, modify, and study for personal non-commercial purposes. See LICENSE for full terms.
Issues and discussion are welcome. Pull requests may be accepted for bug fixes.
For commercial licensing or to follow the product roadmap, visit mycelia.garden.