From logseq
ALWAYS invoke when the user says "eod", "end of day", "bye", "bye bye", "goodbye", "good evening", "signing off", "wrapping up", "calling it a day", "goodnight", "good night", "done for today", "that's it for today", or any end-of-day signal. Trigger immediately — do not wait for the user to ask.
How this skill is triggered — by the user, by Claude, or both
Slash command
/logseq:eodThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Close out today's Logseq journal with a reflection on what was shipped.
Close out today's Logseq journal with a reflection on what was shipped.
0. Read graph root
grep '^graph_root=' ~/.logseq-plugin-config 2>/dev/null | cut -d= -f2
If this returns empty, tell the user to run /setup and stop.
Use the returned path as $GRAPH_ROOT for all file paths in this skill.
1. Get today's date and time
date "+%Y_%m_%d"
date "+%H:%M"
2. Pull today's commits
git log --oneline --since="today 00:00" 2>/dev/null | head -20
3. Read today's journal
cat $GRAPH_ROOT/journals/$(date +%Y_%m_%d).md
Note any open TODO items in the morning priorities — they become "carried forward" unless the user says otherwise.
If the file doesn't exist, create it first (see morning skill), then continue.
4. Ask three questions
Wrapping up for today.
- Shipped — what did you finish? (say "see commits" to use git log)
- Carried forward — anything moving to tomorrow?
- Reflection — one sentence on how the day went. (skip with "none")
If they say "see commits", use the git log from step 2.
5. Fill in the Evening section
- ## Evening — "What good have I done today?"
collapsed:: true
logged-at:: HH:MM
- **Shipped:**
- [item]
- [item]
- **Carried forward:**
- [item]
- **Reflection:**
- [reflection or leave blank]
If Work Log is empty but commits exist, add a brief summary there too.
6. Offer an engineering log
Only ask if the day had substantial work (multiple commits, new features, notable fixes):
Want me to create an engineering log for today's session?
If yes → invoke the log skill.
7. Sign off in one sentence
Reference the main thing shipped. E.g. "Good work today — [main thing] is done and committed."
TODO items from the morning go into "Carried forward" unless told otherwiseGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub kaushalkishormishra/logseq-plugins --plugin logseq