You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
obsidian-nerv provides typed ontology, write-time validation, and bidirectional relationship enforcement for Obsidian vaults. It uses Obsidian CLI (IPC) rather than MCP.
Curaitor currently uses Obsidian MCP for all vault operations. Adding NERV CLI as an optional backend would enable:
Typed ontology: notes declare types (ROOT, LEAF, ONTOLOGY), relationships are bidirectional and typed
Write-time validation: prevents broken cross-references when agents rename/move entities
Schema enforcement: frontmatter schema validated before writes complete
Motivation
obsidian-nerv provides typed ontology, write-time validation, and bidirectional relationship enforcement for Obsidian vaults. It uses Obsidian CLI (IPC) rather than MCP.
Curaitor currently uses Obsidian MCP for all vault operations. Adding NERV CLI as an optional backend would enable:
Architecture
NERV's adapter pattern (
VaultOpsinterface) already decouples from Obsidian CLI:Curaitor could route vault operations through NERV when available:
Requirements
Implementation
vault_backend: mcp|nervtoconfig/user-settings.yamlRelated