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>
65 lines
2.2 KiB
Markdown
65 lines
2.2 KiB
Markdown
# cosmic-brain — Claude + Obsidian Wiki Vault
|
|
|
|
This folder is both a Claude Code plugin and an Obsidian vault.
|
|
|
|
**Plugin name:** `cosmic-brain`
|
|
**Skills:** `/wiki`, `/wiki-ingest`, `/wiki-query`, `/wiki-lint`
|
|
**Vault path:** This directory (open in Obsidian directly)
|
|
|
|
## What This Vault Is For
|
|
|
|
This vault demonstrates the LLM Wiki pattern — a persistent, compounding knowledge base for Claude + Obsidian. Drop any source, ask any question, and the wiki grows richer with every session.
|
|
|
|
## Vault Structure
|
|
|
|
```
|
|
.raw/ source documents — immutable, Claude reads but never modifies
|
|
wiki/ Claude-generated knowledge base
|
|
_templates/ Obsidian Templater templates
|
|
_attachments/ images and PDFs referenced by wiki pages
|
|
```
|
|
|
|
## How to Use
|
|
|
|
Drop a source file into `.raw/`, then tell Claude: "ingest [filename]".
|
|
|
|
Ask any question. Claude reads the index first, then drills into relevant pages.
|
|
|
|
Run `/wiki` to scaffold a new vault or check setup status.
|
|
|
|
Run "lint the wiki" every 10-15 ingests to catch orphans and gaps.
|
|
|
|
## Cross-Project Access
|
|
|
|
To reference this wiki from another Claude Code project, add to that project's CLAUDE.md:
|
|
|
|
```markdown
|
|
## Wiki Knowledge Base
|
|
Path: /path/to/this/vault
|
|
|
|
When you need context not already in this project:
|
|
1. Read wiki/hot.md first (recent context, ~500 words)
|
|
2. If not enough, read wiki/index.md
|
|
3. If you need domain specifics, read wiki/<domain>/_index.md
|
|
4. Only then read individual wiki pages
|
|
|
|
Do NOT read the wiki for general coding questions or things already in this project.
|
|
```
|
|
|
|
## Plugin Skills
|
|
|
|
| Skill | Trigger |
|
|
|-------|---------|
|
|
| `/wiki` | Setup, scaffold, route to sub-skills |
|
|
| `ingest [source]` | Single or batch source ingestion |
|
|
| `query: [question]` | Answer from wiki content |
|
|
| `lint the wiki` | Health check |
|
|
| `/save` | File the current conversation as a structured wiki note |
|
|
| `/autoresearch [topic]` | Autonomous research loop: search, fetch, synthesize, file |
|
|
| `/canvas` | Visual layer: add images, PDFs, notes to Obsidian canvas |
|
|
|
|
## MCP (Optional)
|
|
|
|
If you configured the MCP server, Claude can read and write vault notes directly.
|
|
See `skills/wiki/references/mcp-setup.md` for setup instructions.
|