obsidian-wiki · git:20260412.bcff8f2 · 2026-04-12 · sha256 c43c077b97b0b59a
obsidian-wiki git:20260412.bcff8f2B
Immutable. This exact content is served forever at /api/v1/blob/c43c077b97b0b59a.
--- description: Obsidian Wiki skill-based framework for building and maintaining knowledge bases. Use these rules whenever engaging with the vault, wiki, ingestion, or knowledge management. globs: "**/*" alwaysApply: true --- # Obsidian Wiki — Agent Context This project is a **skill-based framework** for building and maintaining an Obsidian knowledge base. ## Quick Orientation 1. Read `.env` for `OBSIDIAN_VAULT_PATH` — this is where the wiki lives. 2. Read `.manifest.json` at the vault root to see what's already been ingested. 3. Skills are in `.skills/` (also at `.cursor/skills/`). Each subfolder has a `SKILL.md`. ## When to Use Skills | User says something like… | Read this skill | |---|---| | "set up my wiki" / "initialize" | `.skills/wiki-setup/SKILL.md` | | "ingest" / "add this to the wiki" | `.skills/wiki-ingest/SKILL.md` | | "/wiki-history-ingest claude" / "/wiki-history-ingest codex" | `.skills/wiki-history-ingest/SKILL.md` | | "import my Claude history" | `.skills/claude-history-ingest/SKILL.md` | | "import my Codex history" | `.skills/codex-history-ingest/SKILL.md` | | "process this export" / "ingest this data" | `.skills/data-ingest/SKILL.md` | | "what's the status" / "show the delta" | `.skills/wiki-status/SKILL.md` | | "what do I know about X" / any question | `.skills/wiki-query/SKILL.md` | | "audit" / "lint" / "find broken links" | `.skills/wiki-lint/SKILL.md` | | "rebuild" / "start over" / "archive" | `.skills/wiki-rebuild/SKILL.md` | | "link my pages" / "cross-reference" | `.skills/cross-linker/SKILL.md` | | "fix my tags" / "normalize tags" | `.skills/tag-taxonomy/SKILL.md` | | "create a new skill" | `.skills/skill-creator/SKILL.md` | ## Key Rules - **Compile, don't retrieve.** Update existing pages, don't just append. - **Always update `.manifest.json`** after ingesting. - **Always update `index.md` and `log.md`** after any operation. - **Use `[[wikilinks]]`** to connect related pages. - **Frontmatter is required** on every wiki page.