Use when running the `obsidian` CLI command, interacting with an Obsidian vault from the terminal, creating/appending/reading notes programmatically, searching vault content, managing daily notes, querying tags or backlinks, or automating any Obsidian vault operations. Requires Obsidian 1.12+, app running, CLI enabled in Settings → General → CLI.
Conducts a structured gap assessment of an organization's readiness against ISO 42001:2023 (AI Management System standard). Runs an interview-style evaluation across all mandatory clauses (4-10) and applicable Annex A controls. Produces a scored gap assessment report saved to the vault, a draft Statement of Applicability, and a prioritized list of gaps to address before certification. Requires a vault created by /setup-iso42001-vault.
Use when extending the agent itself — adding facades, tools, vault operations, brain features, new skills, or modifying agent internals. Triggers on "add a facade", "new tool", "extend vault", "add brain feature", "new skill", "add operation", "extend agent", or when the work target is the agent's own codebase rather than a project the agent assists with. Enforces vault-first knowledge gathering before any code reading or planning. --- # Agent Dev — Vault-First Internal Development Develop the agent's own internals with the vault as the primary source of truth. The vault knows more about the agent than any code scan or model training data. Always search the vault first, extract maximum context, and only then touch code. ## When to Use Any time the work target is the agent's own codebase: adding tools, extending facades, modifying vault operations, brain features, skills, or transport. Not for projects that merely _use_ the agent. ## Core Principle **Vault first. Before code. Before training data. Always.** The vault is the authoritative source for how the agent works. Do not rely on general knowledge from training data — it is outdated and lacks project-specific decisions. Do not scan the codebase to understand architecture — the vault already has it. ## Orchestration Sequence ### Step 1: Search the Vault (MANDATORY — before anything else) Before reading any source file, before making any plan, before offering any advice: ```