Files
personal-wiki/wiki/getting-started.md
Daniel c8c27141d7 release: v1.2.0 — community-ready, full docs, PDF guide
Critical fixes:
- marketplace.json: fix version 1.0.0→1.2.0, fix email to ***REMOVED***
- main.canvas: remove 5 broken file references (gitignored files)
- community-plugins.json: deduplicate from 6→4 canonical entries

Vault onboarding:
- wiki/getting-started.md: new onboarding page inside the vault
- wiki/index.md: populate Entities, Sources, Questions, Comparisons sections
- wiki/meta/dashboard.md: fix Dataview queries (was referencing non-existent fields)
- welcome.canvas: add CTA node pointing to getting-started
- CLAUDE.md: replace placeholder text with actual vault description

Docs:
- README.md: complete Plugins section (pre-installed + recommended), CSS Snippets section, Banner usage section, file structure updated
- bin/setup-vault.sh: expanded success message listing all plugins and CSS snippets
- docs/install-guide.md + docs/install-guide.pdf: printable community install guide

Version: 1.1.0 → 1.2.0

Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 14:20:23 +03:00

101 lines
3.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
type: meta
title: "Getting Started"
updated: 2026-04-07
tags:
- meta
- onboarding
status: evergreen
related:
- "[[index]]"
- "[[overview]]"
- "[[LLM Wiki Pattern]]"
- "[[Wiki vs RAG]]"
- "[[Wiki Map]]"
---
# Getting Started with cosmic-brain
Welcome. This vault is your compounding knowledge base — a persistent second brain built with Claude and Obsidian.
Every source you add gets processed into 815 cross-referenced wiki pages. Every question you ask pulls from everything that's been ingested. Knowledge compounds like interest.
---
## Three-Step Quick Start
### 1. Drop a source
Put any document into the `.raw/` folder:
- PDFs, markdown files, transcripts, articles
- Or paste a URL and ask Claude to fetch it
### 2. Ingest it
Tell Claude in any Claude Code session:
```
ingest [filename]
```
Claude reads the source, creates 815 wiki pages under `wiki/`, cross-references everything, and updates `wiki/index.md`, `wiki/log.md`, and `wiki/hot.md`.
### 3. Ask questions
```
what do you know about [topic]?
```
Claude reads the hot cache, scans the index, drills into relevant pages, and gives you a synthesized answer — citing specific wiki pages, not training data.
---
## How the Hot Cache Works
`wiki/hot.md` is a ~500-word summary of recent vault context. It loads automatically at the start of every session (via the SessionStart hook).
You don't need to recap. Claude starts every session knowing what you've been working on.
Update it manually at any time: `update hot cache`
---
## Your First Ingest — Walkthrough
1. Create a file in `.raw/` — copy a transcript, paste an article, or save a PDF
2. Open Claude Code in this vault folder
3. Type: `ingest [your-filename]`
4. Watch the wiki grow — Claude will report which pages it created
5. Open `wiki/index.md` — you'll see the new pages listed
6. Open Graph View in Obsidian — a new cluster of connected nodes appears
After 35 ingests, the graph starts to look like a real knowledge network. Cross-references emerge automatically.
---
## Key Commands
| You say | Claude does |
|---------|-------------|
| `ingest [file]` | Creates 815 wiki pages from a source |
| `what do you know about X?` | Queries the wiki, cites pages |
| `/save` | Files this conversation as a wiki note |
| `/autoresearch [topic]` | Searches the web, ingests results autonomously |
| `lint the wiki` | Health check — finds orphans, gaps, stale links |
| `update hot cache` | Refreshes the session context summary |
---
## Navigate the Vault
- **[[Wiki Map]]** — visual Fibonacci graph of all wiki pages
- **[[index]]** — master catalog, all pages by type
- **[[overview]]** — executive summary of vault contents
- **[[LLM Wiki Pattern]]** — the pattern this vault is built on
- **[[Wiki vs RAG]]** — why a wiki beats RAG at human scale
- **[[dashboard]]** — live Dataview queries (requires Dataview plugin)
---
*Built on the [LLM Wiki pattern](https://github.com/karpathy) by Andrej Karpathy. Hot cache and cross-project patterns by Nate Herk.*