chore: sync vault to ~/cosmic-brain (Obsidian-registered path)

This commit is contained in:
Daniel
2026-04-07 12:05:18 +03:00
commit 4dc6ff3b32
50 changed files with 4407 additions and 0 deletions

11
.obsidian/app.json vendored Normal file
View File

@@ -0,0 +1,11 @@
{
"userIgnoreFilters": [
"agents",
"commands",
"hooks",
"skills",
"README.md",
"CLAUDE.md",
"WIKI.md"
]
}

5
.obsidian/appearance.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"enabledCssSnippets": [
"vault-colors"
]
}

33
.obsidian/core-plugins.json vendored Normal file
View File

@@ -0,0 +1,33 @@
{
"file-explorer": true,
"global-search": true,
"switcher": true,
"graph": true,
"backlink": true,
"canvas": true,
"outgoing-link": true,
"tag-pane": true,
"footnotes": false,
"properties": true,
"page-preview": true,
"daily-notes": true,
"templates": true,
"note-composer": true,
"command-palette": true,
"slash-command": false,
"editor-status": true,
"bookmarks": true,
"markdown-importer": false,
"zk-prefixer": false,
"random-note": false,
"outline": true,
"word-count": true,
"slides": false,
"audio-recorder": false,
"workspaces": false,
"file-recovery": true,
"publish": false,
"sync": true,
"bases": true,
"webviewer": false
}

55
.obsidian/graph.json vendored Normal file
View File

@@ -0,0 +1,55 @@
{
"collapse-filter": false,
"search": "",
"showTags": false,
"showAttachments": false,
"hideUnresolved": true,
"showOrphans": false,
"collapse-color-groups": false,
"colorGroups": [
{
"query": "path:wiki/entities",
"color": { "a": 1, "rgb": 12945088 }
},
{
"query": "path:wiki/concepts",
"color": { "a": 1, "rgb": 5227007 }
},
{
"query": "path:wiki/domains",
"color": { "a": 1, "rgb": 5227007 }
},
{
"query": "path:wiki/sources",
"color": { "a": 1, "rgb": 6986069 }
},
{
"query": "path:wiki/questions",
"color": { "a": 1, "rgb": 6986069 }
},
{
"query": "path:wiki/comparisons",
"color": { "a": 1, "rgb": 6986069 }
},
{
"query": "path:wiki",
"color": { "a": 1, "rgb": 5676246 }
},
{
"query": "path:_templates",
"color": { "a": 0.3, "rgb": 6316128 }
}
],
"collapse-display": true,
"showArrow": true,
"textFadeMultiplier": -1,
"nodeSizeMultiplier": 1.5,
"lineSizeMultiplier": 1,
"collapse-forces": true,
"centerStrength": 0.6,
"repelStrength": 25,
"linkStrength": 1.2,
"linkDistance": 100,
"scale": 0.9,
"close": false
}

60
.obsidian/snippets/vault-colors.css vendored Normal file
View File

@@ -0,0 +1,60 @@
/* ============================================================
cosmic-brain vault colors
3-color scheme: blue (knowledge) | green (content) | purple (people)
============================================================ */
:root {
--cb-blue: #4fc1ff; /* concepts, domains — knowledge nodes */
--cb-green: #6a9955; /* sources, questions — content nodes */
--cb-purple: #c586c0; /* entities — people & orgs */
--cb-meta: #569cd6; /* wiki meta: index, hot, log */
--cb-dim: #606060; /* templates, raw — de-emphasized */
}
/* ── Wiki meta (light blue) ── */
.nav-folder-title[data-path="wiki"] { color: var(--cb-meta); }
.nav-folder-title[data-path^="wiki/meta"] { color: var(--cb-meta); }
/* ── Knowledge — blue ── */
.nav-folder-title[data-path^="wiki/concepts"] { color: var(--cb-blue); }
.nav-folder-title[data-path^="wiki/domains"] { color: var(--cb-blue); }
/* ── Content — green ── */
.nav-folder-title[data-path^="wiki/sources"] { color: var(--cb-green); }
.nav-folder-title[data-path^="wiki/questions"] { color: var(--cb-green); }
.nav-folder-title[data-path^="wiki/comparisons"] { color: var(--cb-green); }
/* ── People & orgs — purple ── */
.nav-folder-title[data-path^="wiki/entities"] { color: var(--cb-purple); }
/* ── De-emphasized ── */
.nav-folder-title[data-path=".raw"] { color: var(--cb-dim); opacity: 0.55; }
.nav-folder-title[data-path="_templates"] { color: var(--cb-dim); opacity: 0.55; }
.nav-folder-title[data-path="agents"] { color: var(--cb-dim); opacity: 0.55; }
.nav-folder-title[data-path="commands"] { color: var(--cb-dim); opacity: 0.55; }
.nav-folder-title[data-path="hooks"] { color: var(--cb-dim); opacity: 0.55; }
.nav-folder-title[data-path="skills"] { color: var(--cb-dim); opacity: 0.55; }
/* ── Custom callouts ── */
.callout[data-callout='contradiction'] {
--callout-color: 209, 105, 105;
--callout-icon: lucide-alert-triangle;
}
.callout[data-callout='gap'] {
--callout-color: 220, 220, 170;
--callout-icon: lucide-help-circle;
}
.callout[data-callout='key-insight'] {
--callout-color: 79, 193, 255;
--callout-icon: lucide-lightbulb;
}
.callout[data-callout='stale'] {
--callout-color: 128, 128, 128;
--callout-icon: lucide-clock;
}
/* ── Canvas card accents (match graph node colors) ── */
.canvas-node[data-color="1"] { --canvas-color: 79, 193, 255; } /* blue */
.canvas-node[data-color="3"] { --canvas-color: 197, 134, 192; } /* purple */
.canvas-node[data-color="4"] { --canvas-color: 106, 153, 85; } /* green */
.canvas-node[data-color="5"] { --canvas-color: 86, 156, 214; } /* meta */