From llmwiki
Creates or updates today's daily note, pulling calendar events, overdue tasks, conversation context, and last night's reconcile summary into a single entry.
How this command is triggered — by the user, by Claude, or both
Slash command
/llmwiki:vault-dailyThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /vault-daily # Requires: vault-mind MCP server Create or update the daily note for today. ## Steps 1. **Read `_CLAUDE.md`** at vault root (via `vault.exists` + `vault.read`) for folder map, naming conventions, daily-note location override. 2. **Read `CRITICAL_FACTS.md`** (via `vault.exists` + `vault.read`) for timezone and user identity. If absent, default to system timezone and warn once. 3. **Resolve today's daily note path**: default `daily/YYYY-MM-DD.md` (override via `_CLAUDE.md` if present). - Use `vault.exists` to check if today's file exists. - If not: read `templates/...
Create or update the daily note for today.
Read _CLAUDE.md at vault root (via vault.exists + vault.read) for folder map, naming conventions, daily-note location override.
Read CRITICAL_FACTS.md (via vault.exists + vault.read) for timezone and user identity. If absent, default to system timezone and warn once.
Resolve today's daily note path: default daily/YYYY-MM-DD.md (override via _CLAUDE.md if present).
vault.exists to check if today's file exists.templates/Daily Note.md via vault.read, fill date fields, create via vault.create.vault.modify or vault.append.Pull calendar events (if Google Calendar MCP tools available):
google_calendar_list_events or equivalent.## Calendar section to the daily note with time, title, attendees for each event.[[Person Name]] pages (use vault.search to verify the person note exists; only link if it does).Pull overdue and due-today tasks from kanban boards:
vault.list with glob boards/**/*.md to enumerate boards.@YYYY-MM-DD that match today or are past due.## Focus section with priority markers (red = P0, yellow = P1, green = P2).Scan current conversation for anything relevant to today:
## Context section with that context.Check log.md for last night's sleeptime consolidation:
vault-reconcile skill + agent/ scheduler), summarize what it did (reconciled contradictions, synthesized patterns, healed orphans).## Overnight section so the user knows what changed while they slept.Report: return the path of the daily note, plus a one-line summary of what was added (e.g., "3 events, 5 focus tasks, 2 conversation decisions, 1 overnight synthesis").
_CLAUDE.md).date: YYYY-MM-DD and tags: [daily]._CLAUDE.md absent -> use this skill's defaults. Calendar MCP absent -> skip. Template absent -> generate a minimal note with just # YYYY-MM-DD heading + empty sections./vault-daily twice on the same day updates, never duplicates.vault-reconcile -- the nightly 5-phase agent whose output this skill summarizes into ## Overnight.vault-save -- when a /vault-daily invocation produces saveable items (decisions, tasks), defer to vault-save instead of inlining.vault-librarian -- for retrieval-heavy daily prep (e.g., "what did I decide yesterday"), invoke this persona.Adapted from obsidian-second-brain/commands/obsidian-daily.md (upstream: eugeniughelbur/obsidian-second-brain, MIT license). MCP tool references rewritten to use vault-mind MCP surface (vault.*) in place of the upstream mcp-obsidian surface (get_file_contents / list_files_in_vault / write_file). Google Calendar MCP reference preserved as-is (cross-system dependency).
npx claudepluginhub 2233admin/obsidian-llm-wiki --plugin llmwiki/obsidian-dailyCreates or updates today's daily note in an Obsidian vault by pulling calendar events, overdue tasks, and conversation context. Follows vault-specific templates and folder maps.
/briefProduces a daily morning brief summarizing today's calendar, overdue items, prep needs, and a key insight. Also supports an 'evening' variant for end-of-day review.
/todoManage TODO.md (show / add / complete / delete / update via natural language) and show today's calendar.
/kb-logUpdates the current project's Daily note, and optionally the plan, hub, and runtime binding summary. Helps maintain a knowledge base for project context.
/SKILLCreates a focused daily plan by reading mission-control files, prioritizing tasks, triaging brain dump items, and suggesting time blocks.