Knowledge Base
Use this skill for the user's personal knowledge base: factual, evergreen, or reference information that should live in Obsidian but is not primarily a project update, task, person note, or daily journal entry.
Coordinate With
- Use
second-brain for shared vault location, routing, frontmatter, and linking conventions.
- Use
nightly-consolidation for the nightly pass; this skill's review workflow below is the KB-specific portion of that pass.
- Every read and write goes through the
obsidian__* tools; see second-brain -> Tools.
Tools
The server derives every path from type plus topic, so never construct one.
| Need |
Call |
| Create a knowledge note |
obsidian__note_create type="knowledge" name="Chain Wear" topic="Cycling/Repair" |
| Create a topic hub |
obsidian__note_create type="moc" topic="Cycling" |
| Fill a section |
obsidian__section_append note="Chain Wear" section="Details" content="…" |
| Find existing notes on a topic |
obsidian__vault_search query="chain" type="knowledge" |
| List a topic folder |
obsidian__vault_list folder="Knowledge Base" |
| Record a connection |
obsidian__relate note="Chain Wear" target="Drivetrain Maintenance" reason="…" |
| Route an inbox item |
obsidian__inbox_route line="…" destination_note="…" source_note="Knowledge Base/Inbox.md" |
| Drop an inbox line already captured |
obsidian__inbox_clear line="…" captured_as="Chain Wear" source_note="Knowledge Base/Inbox.md" |
Vault area: root folder Knowledge Base/, inbox note Knowledge Base/Inbox.md, index Knowledge Base/README.md.
What Belongs Here
Use Knowledge Base/ for arbitrary information the user decides to keep for future reference:
- Facts, concepts, definitions, frameworks, instructions, techniques, recipes, maintenance procedures, product research, tools, links, videos, articles, and summaries.
- Learning notes that are useful beyond a single day.
- Reference material that may support projects but is not itself project state.
Do not use this skill as the primary home for:
- Active tasks, reminders, or due dates ->
task-tracking.
- Project decisions, blockers, docs, or meeting notes ->
project-tracking.
- Personal diary entries, mood, food, purchases, or day logs ->
daily-journal.
- Conversations or relationship context ->
people-notes.
If a capture crosses boundaries, write the evergreen reference here and cross-link from the relevant project/task/person/daily note only when useful.
Capture Workflow
When the user asks to remember, record, save, or note arbitrary factual/reference material:
Decide whether it clearly belongs in the knowledge base.
Search first: obsidian__vault_search query="…" type="knowledge". Do not create a second note on a topic that already has one.
If an obvious note exists, add to it with obsidian__section_append.
If the topic is obvious but the note does not exist, create it — passing a source URL through fields — then fill ## Summary, ## Details, and ## Sources with obsidian__section_append:
obsidian__note_create type="knowledge" name="Chain Wear" topic="Cycling/Repair" fields={"source":"https://example.com"}
If the topic is unclear, append to Knowledge Base/Inbox.md for nightly organization.
Preserve source links exactly when provided.
Do not invent facts not supplied by the user or present in the captured source context.
For quick raw capture, prefer a compact format:
- YYYY-MM-DD: [Title or description](URL) — why it may be useful, if known.
A substantial note gets the standard shape — ## Summary, ## Details, ## Sources, ## Related — which obsidian__note_create type="knowledge" lays out along with the frontmatter. You do not write frontmatter; pass extra values through fields.
Wikilink mentions of known projects, people, and other knowledge notes inside the body. Cross-links are what make the knowledge base explorable.
Organization Model
Organize by stable topic, not by capture date or source platform.
Preferred structure:
Knowledge Base/
Inbox.md
README.md
Cycling/
Cycling MOC.md
Repair/
YouTube - Video Title.md
Drivetrain Maintenance.md
Gear/
Cooking/
Technology/
Business/
Guidelines:
- Use clear human folder names with title case.
- Avoid over-nesting until there are enough notes to justify it.
- Prefer
Topic/Subtopic/Note.md when the topic is obvious.
- Use source type in filenames only when helpful, such as
YouTube - Bike Chain Replacement.md.
- If a note starts as a link-only capture, it can remain short; do not pad it with invented summary.
- Keep related links together when they serve the same fact pattern or topic.
Maps of Content (MOCs)
A MOC is a hub note that links every note on a topic, making the topic navigable from one place (and giving the graph a hub node). Managed primarily by nightly-consolidation:
- When a topic folder accumulates roughly 5+ notes,
obsidian__note_create type="moc" topic="Cycling" — the note is titled Cycling MOC and placed in that folder. It takes no name.
- Body: short description of the topic, then a linked list of the topic's notes grouped however makes sense, each with a few words of context.
- Keep MOCs updated when notes are added, moved, or merged.
- Link the MOC from
Knowledge Base/README.md.
Nightly Review Workflow
Invoked as part of nightly-consolidation:
Read Knowledge Base/Inbox.md if it exists.
Search/list existing notes under Knowledge Base/.
Group inbox items and loose notes into coherent topics.
Move each item with obsidian__inbox_route, which writes the destination, verifies it landed, and only then removes the inbox line — so an item can never end up nowhere. When the item is better captured by creating a note or a task, do that first and then clear the line with obsidian__inbox_clear line="chain wear" captured_as="Chain Wear" source_note="Knowledge Base/Inbox.md".
Create new folders only when a topic has enough weight or is a clearly stable category.
Add connections with obsidian__relate and update MOCs where useful.
Leave uncertain items in Knowledge Base/Inbox.md with a short Needs routing: note.
Append a dated review entry to the ## Review Log in the KB index:
obsidian__log_append note="Knowledge Base/README.md" section="Review Log" content="Routed 3 inbox items, added Cycling MOC" keep_newest=20
The ## Review Log is built from ### YYYY-MM-DD blocks, and the server writes that heading itself — pass the entry text only, with no date prefix and no bullet marker. Today's block goes at the top, and a second entry the same night joins it rather than starting another. keep_newest caps the log at its 20 newest dated blocks in the same write, so it never needs trimming by hand. If the index does not exist yet, create it with obsidian__note_create type="index" name="Knowledge Base". This is the only place the KB review log lives; never write review logs into project, people, or daily notes.
If nothing changed, skip the log entry entirely; do not accumulate "nothing happened" entries.
Do not spend the nightly review polishing prose for its own sake. The goal is findability and sensible structure.
Safety
- Do not fabricate summaries for source links that were not inspected or described.
- Do not move project, task, people, or daily journal material into the knowledge base unless it is reusable reference material.
- Preserve user-provided wording and source URLs.
- Avoid deleting captures. If merging, move the content into the destination note and leave no information behind.
1---2name: knowledge-base3description: Capture and organize evergreen reference notes in the Obsidian vault: facts, how-tos, techniques, recipes, product research, captured articles/videos/links. Use when info is reusable beyond today and not tied to a specific project, person, or day. NOT for: tasks or reminders (task-tracking), project state (project-tracking), diary entries (daily-journal), or conversations (people-notes).4---56# Knowledge Base78Use this skill for the user's personal knowledge base: factual, evergreen, or reference information that should live in Obsidian but is not primarily a project update, task, person note, or daily journal entry.910## Coordinate With1112- Use `second-brain` for shared vault location, routing, frontmatter, and linking conventions.13- Use `nightly-consolidation` for the nightly pass; this skill's review workflow below is the KB-specific portion of that pass.14- Every read and write goes through the `obsidian__*` tools; see `second-brain` -> Tools.1516## Tools1718The server derives every path from `type` plus `topic`, so never construct one.1920| Need | Call |21|---|---|22| Create a knowledge note | `obsidian__note_create type="knowledge" name="Chain Wear" topic="Cycling/Repair"` |23| Create a topic hub | `obsidian__note_create type="moc" topic="Cycling"` |24| Fill a section | `obsidian__section_append note="Chain Wear" section="Details" content="…"` |25| Find existing notes on a topic | `obsidian__vault_search query="chain" type="knowledge"` |26| List a topic folder | `obsidian__vault_list folder="Knowledge Base"` |27| Record a connection | `obsidian__relate note="Chain Wear" target="Drivetrain Maintenance" reason="…"` |28| Route an inbox item | `obsidian__inbox_route line="…" destination_note="…" source_note="Knowledge Base/Inbox.md"` |29| Drop an inbox line already captured | `obsidian__inbox_clear line="…" captured_as="Chain Wear" source_note="Knowledge Base/Inbox.md"` |3031Vault area: root folder `Knowledge Base/`, inbox note `Knowledge Base/Inbox.md`, index `Knowledge Base/README.md`.3233## What Belongs Here3435Use `Knowledge Base/` for arbitrary information the user decides to keep for future reference:3637- Facts, concepts, definitions, frameworks, instructions, techniques, recipes, maintenance procedures, product research, tools, links, videos, articles, and summaries.38- Learning notes that are useful beyond a single day.39- Reference material that may support projects but is not itself project state.4041Do not use this skill as the primary home for:4243- Active tasks, reminders, or due dates -> `task-tracking`.44- Project decisions, blockers, docs, or meeting notes -> `project-tracking`.45- Personal diary entries, mood, food, purchases, or day logs -> `daily-journal`.46- Conversations or relationship context -> `people-notes`.4748If a capture crosses boundaries, write the evergreen reference here and cross-link from the relevant project/task/person/daily note only when useful.4950## Capture Workflow5152When the user asks to remember, record, save, or note arbitrary factual/reference material:53541. Decide whether it clearly belongs in the knowledge base.552. Search first: `obsidian__vault_search query="…" type="knowledge"`. Do not create a second note on a topic that already has one.563. If an obvious note exists, add to it with `obsidian__section_append`.574. If the topic is obvious but the note does not exist, create it — passing a source URL through `fields` — then fill `## Summary`, `## Details`, and `## Sources` with `obsidian__section_append`:5859 ```60 obsidian__note_create type="knowledge" name="Chain Wear" topic="Cycling/Repair" fields={"source":"https://example.com"}61 ```625. If the topic is unclear, append to `Knowledge Base/Inbox.md` for nightly organization.636. Preserve source links exactly when provided.647. Do not invent facts not supplied by the user or present in the captured source context.6566For quick raw capture, prefer a compact format:6768```markdown69- YYYY-MM-DD: [Title or description](URL) — why it may be useful, if known.70```7172A substantial note gets the standard shape — `## Summary`, `## Details`, `## Sources`, `## Related` — which `obsidian__note_create type="knowledge"` lays out along with the frontmatter. You do not write frontmatter; pass extra values through `fields`.7374Wikilink mentions of known projects, people, and other knowledge notes inside the body. Cross-links are what make the knowledge base explorable.7576## Organization Model7778Organize by stable topic, not by capture date or source platform.7980Preferred structure:8182```text83Knowledge Base/84 Inbox.md85 README.md86 Cycling/87 Cycling MOC.md88 Repair/89 YouTube - Video Title.md90 Drivetrain Maintenance.md91 Gear/92 Cooking/93 Technology/94 Business/95```9697Guidelines:9899- Use clear human folder names with title case.100- Avoid over-nesting until there are enough notes to justify it.101- Prefer `Topic/Subtopic/Note.md` when the topic is obvious.102- Use source type in filenames only when helpful, such as `YouTube - Bike Chain Replacement.md`.103- If a note starts as a link-only capture, it can remain short; do not pad it with invented summary.104- Keep related links together when they serve the same fact pattern or topic.105106## Maps of Content (MOCs)107108A MOC is a hub note that links every note on a topic, making the topic navigable from one place (and giving the graph a hub node). Managed primarily by `nightly-consolidation`:109110- When a topic folder accumulates roughly 5+ notes, `obsidian__note_create type="moc" topic="Cycling"` — the note is titled `Cycling MOC` and placed in that folder. It takes no `name`.111- Body: short description of the topic, then a linked list of the topic's notes grouped however makes sense, each with a few words of context.112- Keep MOCs updated when notes are added, moved, or merged.113- Link the MOC from `Knowledge Base/README.md`.114115## Nightly Review Workflow116117Invoked as part of `nightly-consolidation`:1181191. Read `Knowledge Base/Inbox.md` if it exists.1202. Search/list existing notes under `Knowledge Base/`.1213. Group inbox items and loose notes into coherent topics.1224. Move each item with `obsidian__inbox_route`, which writes the destination, verifies it landed, and only then removes the inbox line — so an item can never end up nowhere. When the item is better captured by creating a note or a task, do that first and then clear the line with `obsidian__inbox_clear line="chain wear" captured_as="Chain Wear" source_note="Knowledge Base/Inbox.md"`.1235. Create new folders only when a topic has enough weight or is a clearly stable category.1246. Add connections with `obsidian__relate` and update MOCs where useful.1257. Leave uncertain items in `Knowledge Base/Inbox.md` with a short `Needs routing:` note.1268. Append a dated review entry to the `## Review Log` in the KB index:127128 ```129 obsidian__log_append note="Knowledge Base/README.md" section="Review Log" content="Routed 3 inbox items, added Cycling MOC" keep_newest=20130 ```131132 The `## Review Log` is built from `### YYYY-MM-DD` blocks, and the server writes that heading itself — pass the entry text only, with no date prefix and no bullet marker. Today's block goes at the top, and a second entry the same night joins it rather than starting another. `keep_newest` caps the log at its 20 newest dated blocks in the same write, so it never needs trimming by hand. If the index does not exist yet, create it with `obsidian__note_create type="index" name="Knowledge Base"`. This is the only place the KB review log lives; never write review logs into project, people, or daily notes.1339. If nothing changed, skip the log entry entirely; do not accumulate "nothing happened" entries.134135Do not spend the nightly review polishing prose for its own sake. The goal is findability and sensible structure.136137## Safety138139- Do not fabricate summaries for source links that were not inspected or described.140- Do not move project, task, people, or daily journal material into the knowledge base unless it is reusable reference material.141- Preserve user-provided wording and source URLs.142- Avoid deleting captures. If merging, move the content into the destination note and leave no information behind.