Set up or upgrade an AI-powered Obsidian vault. Interviews you, builds your vault structure (or works with what you already have), creates your CLAUDE.md memory file, installs tools, and gets you journaling — all in one conversation. Also has a repair/upgrade path for existing users.
$npx -y skills add mycelium-hq/ai-brain-starter --skill ai-brain-starterInstalls into the current project.
Run `npx skills use "https://github.com/mycelium-hq/ai-brain-starter" --skill "mycelium-hq/ai-brain-starter"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.
Use the skills in "https://github.com/mycelium-hq/ai-brain-starter" that are relevant to the current task. Run `npx skills add "https://github.com/mycelium-hq/ai-brain-starter"` and select the relevant skills, then follow their instructions.
| 1 | # AI Brain Starter |
| 2 | |
| 3 | |
| 4 | <!-- mycelium-badges:start --> |
| 5 | |
| 6 | <p> |
| 7 | <a href="https://github.com/mycelium-hq/ai-brain-starter/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/github/license/mycelium-hq/ai-brain-starter?color=blue"></a> |
| 8 | <a href="https://github.com/mycelium-hq/ai-brain-starter/stargazers"><img alt="GitHub stars" src="https://img.shields.io/github/stars/mycelium-hq/ai-brain-starter?color=eab308"></a> |
| 9 | <a href="https://github.com/mycelium-hq/ai-brain-starter/commits/main"><img alt="Last commit" src="https://img.shields.io/github/last-commit/mycelium-hq/ai-brain-starter"></a> |
| 10 | <a href="https://github.com/mycelium-hq/ai-brain-starter/issues"><img alt="Open issues" src="https://img.shields.io/github/issues/mycelium-hq/ai-brain-starter"></a> |
| 11 | <a href="https://myceliumai.co"><img alt="Built by Mycelium AI" src="https://img.shields.io/badge/built_by-Mycelium_AI-15B89A"></a> |
| 12 | </p> |
| 13 | |
| 14 | <!-- mycelium-badges:end --> |
| 15 | |
| 16 | A verification harness around your AI agent. So memory compounds instead of corrupts. |
| 17 | |
| 18 | --- |
| 19 | |
| 20 | You have a smart assistant that forgets you every morning. This is the harness that gives it a memory: notes on your disk that the assistant reads before answering you, deterministic guards that block bad edits before they land, and a session-end ritual that files what mattered. Whether you write, run a company, or just want context to stop disappearing between conversations, the same surface works. |
| 21 | |
| 22 | --- |
| 23 | |
| 24 | Microsoft DELEGATE-52 ([arxiv.org/abs/2604.15597](https://arxiv.org/abs/2604.15597), April 2026) measured what most operators already feel: frontier LLMs corrupt 25% of professional content over 20 edit interactions. Document size amplifies the failure 5×. The paper concludes the only reliable mitigation is a domain-specific verification harness around the model. |
| 25 | |
| 26 | This is one. |
| 27 | |
| 28 | **Four moving parts.** |
| 29 | |
| 30 | - **Vault as ground truth.** Markdown on disk. Decisions, patterns, context. The model reads from the vault, not from chat history. |
| 31 | - **Hooks as deterministic guards.** Pre-write hooks block bad edits before they land. Em dashes in external prose. Frontmatter without required fields. Calendar events without timezone offsets. Raw `git add -A` on a 60K-file vault. |
| 32 | - **Bi-temporal rule lineage.** Every codified rule carries two clocks: when it was written, and when it was last verified. The resolver detects conflicts. Drift detection scans high-edit files weekly for cumulative semantic shift. The closed loop promotes hardened patterns into procedural memory and demotes stale ones. |
| 33 | - **Session lifecycle.** Each session start loads context. Each session end cascades decisions, insights, and to-dos to the right files. Nothing stays trapped in a chat transcript. |
| 34 | |
| 35 | **Free to install. Free to run.** Your Claude subscription is the inference. No vector database, no fine-tune, no per-seat license. |
| 36 | |
| 37 | [Install in one paste →](#install) |
| 38 | |
| 39 | --- |
| 40 | |
| 41 | ## Built under load |
| 42 | |
| 43 | The repo is shaped by an active vault: 10,000 markdown files, twelve years of journals, two writing projects, a startup to raise for, an AI consulting practice. The system was forced into shape by the work, not designed in a lab. It's used by the founder who built it; new installs land each week through the consulting practice. |
| 44 | |
| 45 | If you carry context professionally (investor relationships, board decisions, team dynamics, contractor handoffs) plus the parts of a life that don't fit inside the company, this is for you. |
| 46 | |
| 47 | ## A Monday after the system is installed |
| 48 | |
| 49 | **7:04 AM.** You run `/journal`. The advisory panel (Naval, Brene Brown, Hormozi, Buffett, plus the custom voices you build) meets your draft and pushes back where your thinking is soft. You walk into the day with ten-minute clarity on something that would have taken an hour of spinning. |
| 50 | |
| 51 | **11:20 AM.** A one-hour meeting ends. You drop the transcript in. The system files it, tags participants, extracts five action items, routes each one to the right owner by role, and drafts the follow-up message for you to review. Thirty-five minutes of post-meeting work compressed to two. |
| 52 | |
| 53 | **1:00 PM.** Thirty minutes between blocks. You open the book draft. Claude reads the new scene against every previous chapter in the vault, flags a continuity break in chapter three, and scores the voice match against your own corpus. You fix the weak sentence in two minutes and close the tab. |
| 54 | |
| 55 | **3:00 PM.** You write a one-liner for a contractor. A hook blocks the save: missing the four required fields (source, location, shape, channel). You rewrite the task in ninety seconds. She ships in one pass. You save a $500 week. |
| 56 | |
| 57 | **6:45 PM.** A close friend texts about something the two of you talked through six months ago. You ask Claude. Three seconds later you have the thread, the date, what was unresolved, and what you promised. You reply from context, not from guesswork. |
| 58 | |
| 59 | **Sunday, 9:00 PM.** The weekly ritual runs. Every open loop from the last fourteen days surfaces in a single view, across the whole life: the company, the boo |