Install
openclaw skills install @terrycarter1985/daily-digest-proGenerate a structured daily work digest from session logs and memory files. Use when the user asks for a daily summary, end-of-day recap, work log, or 'what did I do today'. Scans memory/*.md, session transcripts, and git activity to produce a human-readable digest with key accomplishments, decisions, and pending items.
openclaw skills install @terrycarter1985/daily-digest-proGenerate a structured, human-readable daily digest from OpenClaw session activity, memory files, and workspace state.
memory/ directory with daily notes (or empty if first run)session-logs skill available for transcript searchDefault to today (local timezone). Accept explicit date arguments (YYYY-MM-DD).
Run these in parallel where possible:
# Daily memory note
cat memory/YYYY-MM-DD.md 2>/dev/null
# Recent memory files from the last 24h
find memory/ -name "*.md" -newermt "YYYY-MM-DD HH:MM" 2>/dev/null
# Git activity (if workspace is a repo)
git -C workspace log --since="YYYY-MM-DD 00:00" --until="YYYY-MM-DD 23:59" --oneline --all 2>/dev/null
Use the session-logs skill to search for key events:
Search session transcripts for today's date, looking for:
- Task completions (files created, published, deployed)
- Decisions made
- Errors resolved
- Questions answered
Sort findings into these sections:
| Section | What goes there |
|---|---|
| ✅ 完成事项 | Concrete deliverables, published content, resolved issues |
| 📝 决策记录 | Choices made, preferences confirmed, paths selected |
| ⚠️ 遗留问题 | Open blockers, deferred items, things to follow up |
| 🔄 进行中 | Tasks started but not finished |
memory/digests/YYYY-MM-DD-digest.md for future reference.# 📰 每日工作摘要 — YYYY-MM-DD
## ✅ 完成事项
- [item]
## 📝 决策记录
- [decision]
## ⚠️ 遗留问题
- [blocker]
## 🔄 进行中
- [in-progress]