From obsidian
Generate and maintain Maps of Content (MOCs) in an Obsidian knowledge base vault. Use when the user wants to create a new MOC, update an existing MOC with recently added notes, identify missing MOCs, or get a curated overview of a topic area in their vault.
How this skill is triggered — by the user, by Claude, or both
Slash command
/obsidian:kb-mocThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate and maintain Maps of Content (MOCs) — curated index notes that organize vault content by topic with grouped wikilinks, cross-references, and gap analysis.
Generate and maintain Maps of Content (MOCs) — curated index notes that organize vault content by topic with grouped wikilinks, cross-references, and gap analysis.
obsidian tags and folder contentsobsidian search, obsidian tags, and obsidian backlinks00-mocs/ with this structure:
---
title: "Topic MOC"
type: moc
topics:
- relevant-topic
date-added: 2026-03-22
last-updated: 2026-03-22
---
Followed by:
silent flag when creating to avoid switching focus in Obsidianobsidian readlast-updatedlast-updated property# Consensus algorithms
Overview of consensus mechanisms in distributed systems, covering theory and practical implementations.
## Foundational theory
- [[DDIA - Chapter 9 Consistency and Consensus]] — Kleppmann's treatment of linearizability, ordering, and the FLP impossibility result
- [[Raft Paper Notes]] — Understandable consensus, leader election, log replication
## Practical implementations
- [[etcd Consensus Notes]] — Raft in practice, leader leasing
- [[Kafka KRaft Migration]] — From ZooKeeper to Raft-based metadata
## Related MOCs
- [[Distributed Systems MOC]]
- [[Replication and Consistency MOC]]
## Gaps
- No notes yet on Viewstamped Replication
- Byzantine fault tolerance coverage is thin
# Search for notes by topic
obsidian search query="consensus" limit=20
obsidian tags sort=count counts
# Read notes to classify them
obsidian read file="DDIA - Chapter 9 Consistency and Consensus"
# Find related notes via backlinks
obsidian backlinks file="Raft Paper Notes"
# Create the MOC
obsidian create name="Consensus Algorithms MOC" content="..." path="00-mocs/Consensus Algorithms MOC.md" silent
# Update an existing MOC
obsidian append file="Consensus Algorithms MOC" content="- [[New Note]] — description"
00-mocs/ — named as <Topic> MOC.mdlast-updated — always set this property when modifying a MOCnpx claudepluginhub ozthemagician/obsidian-skills --plugin obsidianGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Implements work from a spec or tickets using TDD at agreed seams, with regular typechecking and test runs, followed by code review.