do not use this skill
This skill helps you read, search, and create Dendron notes using the filesystem or the local notes.db sqlite database. Notes are plaintext markdown with dot-delimited filenames. Vaults are folders containing a dendron.yml and notes/ directory.
dendron.yml to see workspace vault list (workspace.vaults).<vault>/notes/ and are named with dot-delimited ids plus .md.daily.journal.YYYY.MM.DD, task.YYYY.MM.DD, books.*, scratch.*.[[...]].ls, rg, etc., scoped to the target vault’s notes/ dir.notes.db): schema in /Users/kevinlin/code/dendron-lite/prisma/schema.prisma (tables: Note, Vault, Heading, Link, SyncStatus).Note.fname stores the dot-delimited id, raw stores markdown (no frontmatter), title/desc/tags optional, vaultId links to Vault.Vault table has name and fsPath; join to limit queries to the active vault unless cross-vault is requested.rg "pattern" <vault>/notes -g "*.md" or sqlite LIKE queries on fname/raw.hierarchy. and extract the next segment.<vault>/notes/<fname>.md; include frontmatter if needed.daily.journal.YYYY.MM.DD), then search contents for scout.pkg., return the segment immediately after pkg (unique, non-empty).<vault>/notes/report.2025.11-weekly-scout-activities.md with frontmatter and write the report content analyzing scout activities from recent daily notes.rg for content search; avoid expensive full-tree scans when a vault path is known.dendron.yml and resolve workspace.vaults entry whose fsPath matches CWD (default .).rg "term" <vault>/notes -g "*.md".sqlite3 notes.db "SELECT fname FROM Note n JOIN Vault v ON n.vaultId=v.id WHERE v.fsPath='.' AND fname LIKE 'daily.journal.%' AND date(n.updated/1000,'unixepoch')>=date('now','-7 day') AND raw LIKE '%scout%';"find <vault>/notes -name 'pkg.*.md' -maxdepth 1 then parse next segment.report.$(date +%Y).$(date +%m)-{kebab-case-name}.md and write to <vault>/notes/ with frontmatter.Follow these steps when responding:
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer