Eod
Use when /eod is invoked or when Shane wants to close out his day. Diffs Today's Focus vs Session Log, increments deferrals in patterns.md for unlogged tasks, flags items at 3+ deferrals, and writes an EOD Audit to today's daily note.From its SKILL.md
npx -y skills add slogsdon/skills-vault-rituals --skill eodAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
6.0 KB, ~1.6k tokens by cl100k_base, as published. Nobody here has run it
Skill: /eod
End-of-day accountability audit. Delegate analysis to Qwen; Claude handles writes.
Steps
-
Determine today's date (YYYY-MM-DD format)
-
Read these files using obsidian CLI:
obsidian read file='Daily/[today's date]'obsidian read file='Knowledge/Context/patterns'obsidian read file='Knowledge/Context/accountability'
-
Call
mcp__ollama-agent__qwen_start(standalone) ormcp__plugin_shane-config_ollama-agent__qwen_start(plugin — use whichever is available) with:task: "You are Shane's EOD accountability agent. Compare the 'Today's Focus' section against the 'Session Log' section in today's daily note (provided). For each focus item NOT reflected in the session log, flag it as deferred. Check patterns.md for existing deferral counts and increment them. Flag any item now at 3+ deferrals with: 'PATTERN ALERT: [task] has been deferred [N] times. Is this actually a priority?' Output: (1) EOD Audit block for the daily note, (2) updated rows for patterns.md Deferred Tasks Log."skill: "eod"context: content of all three files
-
Loop: if
statusis"running", callmcp__ollama-agent__qwen_continue(ormcp__plugin_shane-config_ollama-agent__qwen_continuein plugin) withsession_id; repeat untilstatusis"done"or"error" -
Walk check:
- Ask Shane: "Did you walk today? (y/n / skipped)"
- Log to today's session log:
obsidian append file='Daily/[today's date]' content='**[HH:MM]** 🚶 Walk: [yes/no/skipped]' - If yes: in patterns.md find
walk_streak_missedand reset to 0 (skip if field absent) - If no or skipped: find or add
walk_streak_missedin patterns.md, increment by 1; flag if 3+
-
Decision avoidance scan (before writing the audit):
- Scan focus items and session log entries for language like "figure out", "decide on", "choose between", "TBD", "still thinking about", or any item that's clearly an undecided decision rather than a task.
- For each one found, check
Knowledge/Context/avoidance-mapto see if it already exists. - If it appears in the map already: note it as recurring in the EOD Audit — "Decision recurring: [item] — consider running /decide"
- Do not write to avoidance-map here; that's the /decide skill's job. Just surface it in the audit.
-
Parse Qwen's
result:- Run
obsidian append file='Daily/[today's date]' content='## EOD Audit\n\n[audit block]' - Run
obsidian append file='Knowledge/Context/patterns' content='[updated deferral rows]'(or use read→edit cycle if replacing existing rows) - For each item Qwen marks as completed today: read
Knowledge/Context/accountability, find the matching planning note status line (e.g., "visual polish remaining", "in progress"), and update it to reflect completion with the date. Use the Write tool on the vault file path directly (~/Library/Mobile Documents/iCloud~md~obsidian/Documents/Personal/Knowledge/Context/accountability.md). This keeps accountability.md current so /morning always sees accurate state.
- Run
-
If any day had no session log entries at all, add a
## Logging Gapentry to that day's note -
Commit the vault changes:
VAULT="$HOME/Library/Mobile Documents/iCloud~md~obsidian/Documents/Personal" git -C "$VAULT" add -A && git -C "$VAULT" commit -m "docs: append EOD audit to [today's date]" -
Present the audit summary to Shane
Fallback (if qwen_start/qwen_continue unavailable)
Execute the skill directly:
-
Determine today's date (YYYY-MM-DD)
-
Read the following files via bash:
obsidian read file='Daily/[today's date]'obsidian read file='Knowledge/Context/patterns'obsidian read file='Knowledge/Context/accountability'
-
Diff focus vs session log:
- Extract items from
## Today's Focus - Extract completed items from
## Session Log - Items in focus but NOT in session log = deferred today 3a. Walk check:
- Ask "Did you walk today? (y/n / skipped)"
- Note current time (HH:MM); log:
obsidian append file='Daily/[today's date]' content='**[HH:MM]** 🚶 Walk: [yes/no/skipped]' - If yes: find
walk_streak_missedin patterns.md; reset to 0 if present - If no or skipped: find or add
walk_streak_missedin patterns.md, increment by 1; add PATTERN ALERT if 3+ 3b. Decision avoidance scan: - Scan focus items and session log for language like "figure out", "decide on", "choose between", "TBD", "still thinking about", or any item that's clearly an undecided decision.
- For each one found, check
Knowledge/Context/avoidance-map(if it exists) to see if it's already there. - If recurring: add to the EOD Audit block: "Decision recurring: [item] — consider running /decide"
- Do not write to avoidance-map here; that's the /decide skill's job.
- Extract items from
-
For each deferred item, check
Knowledge/Context/patterns.mdDeferred Tasks Log:- If it exists: increment the deferral count
- If new: add a row with count = 1
- If count reaches 3+: add a PATTERN ALERT line
-
Build the EOD Audit block:
## EOD Audit **Completed:** [items from session log that matched focus] **Deferred:** - [task] (deferred [N] times total) [PATTERN ALERT if N >= 3] **Logging gaps:** [note if session log was empty] **OKR alignment:** [brief assessment of whether completed work mapped to active OKRs] -
Append the audit block to
Daily/[today's date].md -
Update the Deferred Tasks Log section in
Knowledge/Context/patterns.mdwith new/incremented rows -
If the session log was empty, also add a
## Logging Gapentry to today's note -
Commit the vault changes:
VAULT="$HOME/Library/Mobile Documents/iCloud~md~obsidian/Documents/Personal" git -C "$VAULT" add -A && git -C "$VAULT" commit -m "docs: append EOD audit to [today's date]" -
Present the audit summary to Shane
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.