plugins/workflow-skills/skills/end-of-day/SKILL.md
End-of-day wrap-up that summarizes completed tasks, surfaces carryover items, and appends to today's daily note. Use when the user says "end of day", "eod", "wrap up", "done for today", or "daily wrap".
npx skillsauth add arosenkranz/claude-code-config end-of-dayInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Refer to ~/.claude/skills/obsidian-core/SKILL.md for CLI patterns, preflight checks, and error handling.
Check the user's invocation:
Determine reflection depth based on context:
Check today's day of week (from the date) to set the default.
Run these in parallel — this is background data gathering, not a user interaction step:
obsidian daily:read 2>/dev/null
obsidian tasks daily 2>/dev/null
obsidian files folder=Sessions 2>/dev/null
From tasks daily, separate completed (- [x]) and open (- [ ]) tasks. From files folder=Sessions, filter for files matching today's date prefix YYYY-MM-DD-*.
Show the completed tasks found. Ask: "Anything else you finished today that isn't tracked here?"
Wait for response. Add any extras to the completed list.
Show open tasks in batches of 5. For each batch, ask: "For these — carry forward to tomorrow, drop them, or already done?"
Wait for response after each batch before showing the next.
Ask reflection questions one at a time, waiting for a response between each.
Light touch (weekdays):
Deep reflection (Fridays or "deep"/"reflect" invocation):
Assemble the EOD summary from everything collected and present it for confirmation:
## EOD Summary — YYYY-MM-DD
**Completed today:**
- [x] Task 1
- [x] Task 2
**Carry to tomorrow:**
- [ ] Unfinished item A
**Key accomplishments:**
- [wins from reflection]
**Sessions worked:**
- [session file names / topics]
**Reflection:**
- [answers from Step 4]
After the user confirms, append to the daily note:
obsidian daily:append content="---\n## EOD Summary\n\n**Completed:**\n- [x] ...\n\n**Carry forward:**\n- [ ] ...\n\n**Accomplishments:**\n- ...\n\n**Reflection:**\n- ...\n"
morning-plan carryover checktools
Lightweight orchestrator for spec-before-plan workflow. Use when starting a feature with ambiguous requirements. Walks SPEC.md → PLAN.md → execute, delegating to /superpowers:writing-plans and /superpowers:executing-plans. Invoke when asked to "spec this out", "spec-first", "spec and plan for X", or when feature requirements are vague.
tools
Problem Statement Co-Authoring Skill
development
Structure and maintain professional brag documents with clear templates for accomplishments, projects, and growth tracking. Use when documenting achievements, creating brag document entries, formatting accomplishments, or tracking career progress.
development
Analyze technical documentation for clarity, conciseness, and effectiveness using Google Technical Writing principles. Use when reviewing documentation, checking writing quality, improving docs, or providing writing feedback.