ワンクリックで
obsidian
Read, search, and create notes in the Obsidian vault — conventions, frontmatter, wikilinks, folder routing, and proactive writing.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Read, search, and create notes in the Obsidian vault — conventions, frontmatter, wikilinks, folder routing, and proactive writing.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Use when bootstrapping, auditing, or repairing a Cortex/Obsidian vault: folder layout, note types, frontmatter, naming, promotion rules, seed hygiene, and post-write maintenance.
Use when debugging Hermes/Cortex memory retrieval: hook bootstrap state, semantic-vs-legacy context config, vault_search false negatives, session_search latency, source attribution drift, or Cortex index/embed CLI failures.
Use when retrieving, attributing, or writing durable memory with Cortex/Vault. Hotpath rules for lookup order, source attribution, memory-vs-vault routing, and post-write index/embed workflow.
Use when a Kanban worker has Cortex tools available and needs to retrieve, apply, and cite Vault knowledge while executing a task. Covers vault_search, vault_read_note, and vault_build_context workflows for task context, research, and completion summaries.
SOC 職業分類に基づく
| name | obsidian |
| description | Read, search, and create notes in the Obsidian vault — conventions, frontmatter, wikilinks, folder routing, and proactive writing. |
| Content | Folder |
|---|---|
| Stable facts about systems, tools, environment | 10_facts/ |
| Decisions with rationale | 20_decisions/ |
| Active project contexts | 30_projects/ |
| Repeatable procedures, troubleshooting | 40_runbooks/ |
| People notes | 50_people/ |
| Index and navigation notes | 60_maps/ |
| Note templates | 80_templates/ |
| Human-review candidates only | 00_inbox/ |
Every note must have YAML frontmatter with these fields.
The closing --- delimiter is required — without it the parser treats the note as having no frontmatter at all!
---
type: fact | decision | project | runbook | map | person | note
status: active | draft | archived | deprecated | stale | superseded # canonical values; see docs/METADATA.md
domain: infrastructure | operations | workflow | tools | software # optional but recommended
tags: [tag1, tag2]
aliases: [alternativer_name] # optional, enables redirects
confidence: high | medium | low
importance: high | medium | low
stability: stable | evolving | experimental
last_verified: YYYY-MM-DD
created: YYYY-MM-DD
updated: YYYY-MM-DD
---
---If a note has valid YAML inside the frontmatter block but no closing ---, the cortex parser returns an empty frontmatter dict. The note is still indexed (chunks exist) but fields like type, status, domain are empty strings.
Consequences:
hermes cortex lifecycle nightlyfm_status/fm_type-based filters in the graph viewerCheck: After writing/editing a note, run hermes cortex index --force && hermes cortex graph build --force and call hermes cortex graph status — 0 ambiguous + 0 broken means frontmatter is clean.
00_inbox/ review candidates)Prefer canonical-first writing: high-confidence durable knowledge goes directly
to 10_facts/, 20_decisions/, 30_projects/, or 40_runbooks/. Use
00_inbox/ only for uncertain, conflicting, duplicate-sensitive, or otherwise
human-review-needed cases.
Review candidates in 00_inbox/ need explicit review metadata:
status: draft
review_status: pending
review_reason: "why human review is needed"
promote: true
promote_type: fact|decision|project|runbook
cortex_promote: true # alternative to promote: true
promote_type maps: fact→10_facts, decision→20_decisions, project→30_projects, runbook→40_runbooks.
These fields are stripped from the canonified note during promotion.
Do not use workflow labels like status: review, status: proposed, or
status: planned; they are not canonical Cortex statuses. Store workflow state
in fields such as review_status or roadmap_phase. Do not leave an archived
source note promotable:
status: archived
promote: true # invalid
Link notes together:
See [[Runbook - Promote session knowledge]] for details.
Use related: in frontmatter for structured cross-references:
related: ['[[Runbook - Promote session knowledge]]', '[[Project - Example System]]']
When renaming an Obsidian note, do not stop at the file move:
search_files/grep (e.g. [[Old Title]]).hermes cortex index && hermes cortex embed && hermes cortex graph build.hermes cortex graph broken and fix newly introduced broken references.This is especially important for generic active Decision names reused across runs; archive them with run-specific titles before starting a fresh run.
| Tool | Purpose |
|---|---|
vault_search(query, filters, top_k) | Hybrid search: BM25 + vector + RRF |
vault_read_note(file, heading_path) | Full text of a note |
vault_build_context(query, budget) | Token-budgeted context block |
Write to the vault without being asked when:
20_decisions/10_facts/40_runbooks/30_projects/00_inbox/Do not write: session noise, transient state, task progress logs.
If the user says the analysis is too much to scroll, asks to "save this for later", or the session has produced a large audit/decision tree:
30_projects/Project - ... note over creating a new one.hermes cortex lifecycle maintenance after the vault write.vault_read_note(..., heading_path=...) misses the new heading because chunking/indexing has not exposed it yet, confirm with a filesystem grep/search before assuming the note was not saved.Before creating any new note, ALWAYS verify it doesn't already exist:
vault_search("Note Title", top_k=30) — use high top_k, default 10 is too lowsearch_files(pattern="*Note Title*", target="files") — filesystem backup when vault_search doesn't find itgrep '"file": "30_projects/Project - Note Title.md"' ~/.hermes/cortex/chunks.jsonl — confirm it's indexedMissing this check leads to duplicate notes, wrong cross-references, and
user frustration ("Natürlich gibt es eine Project-Note!"). Vault_search's BM25
ranker can push long target notes outside the top-k window — don't trust a
negative result at face value. See memory-diagnostics for the full diagnostic
flow.
| User says | Action |
|---|---|
| "Remember...", "Note this...", "merk dir das" about user preference/correction/stable tool behavior | memory tool (compact fact) |
| "Remember...", "Note this...", "merk dir das" about project/design/architecture/durable system knowledge | Write/update Vault → index → embed; optionally add compact memory pointer |
| "Save to long-term memory / vault / Obsidian", "in den Vault / ins Langzeitgedächtnis" | Write to vault → index → embed |
Route by content durability, not by phrase alone. A request phrased as "remember this", "note this", or "merk dir das" still belongs in the Vault when the content is project/design/architecture knowledge, a durable system fact, or a decision — even if the user did not literally say "Vault".
When the user wants chronological orientation or same-day continuity, use the
diary pattern in references/daily-journal-and-session-end-memory.md:
on_session_end should behave as short-term working memory / distill queue,
while nightly promotion decides what becomes canonical. Prefer an indexed
60_maps/Map - Daily Journal.md MVP before adding a new journal folder.
[[...]]) for cross-references between notesrelated: in frontmatter for structured links