daily

Solid

Use this skill when creating today's daily note in the Meta-Vault (03-daily/YYYY-MM-DD.md) with valid vaultFrontmatterSchema-compliant YAML frontmatter. Idempotent: re-running on the same day opens the existing note instead of overwriting. Use when starting a work day, capturing scratch notes, or bootstrapping the inbox flow.

AI & Automation 48 stars 8 forks Updated today MIT

Install

View on GitHub

Quality Score: 89/100

Stars 20%
56
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Daily Skill ## Status IMPLEMENTED 2026-04-13. ## Purpose Bootstraps today's daily note in the Meta-Vault so the user can start capturing thoughts, scratch work, and "done today" items without yak-shaving YAML frontmatter each morning. The daily note is the anchor of the PKM workflow: it is where the inbox flow starts, where daily momentum is tracked, and where evening reflections land. Every daily note carries the same frontmatter shape (validated by `vaultFrontmatterSchema`), which makes Dataview queries and the vault-sync validator trivial. ## Prerequisites - Must be invoked from inside a Meta-Vault root (cwd contains `03-daily/`) OR with `VAULT_DIR` resolved to the vault path (see Resolution Order below). - `03-daily/` must already exist — the skill fails fast if it does not. - `bash` + `sed` + `date` (always available on macOS/Linux). ### VAULT_DIR Resolution Order 1. `vault-integration.vault-dir` in Session Config (highest precedence) 2. `VAULT_DIR` environment variable 3. `$PWD` (fallback when neither is set) Claude must read Session Config and export `VAULT_DIR` before calling `generate.sh`. The canonical pattern (mirrors `session-end` and `evolve`): ```bash CONFIG=$(cat .orchestrator/session-config.yaml | yq -o json) VM_DIR=$(echo "$CONFIG" | jq -r '."vault-integration"."vault-dir" // empty') : "${VM_DIR:=$VAULT_DIR}" VAULT_DIR="$VM_DIR" bash /path/to/skills/daily/generate.sh ``` `generate.sh` itself reads only `VAULT_DIR` (pure bash, no Config parser)....

Details

Author
Kanevry
Repository
Kanevry/session-orchestrator
Created
3 months ago
Last Updated
today
Language
JavaScript
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category