Daily Briefing Skill
Compile a comprehensive daily briefing from memory.
Steps
- •
Read today's daily log (if it exists):
bashcat ~/.octoclaw/memory/daily/$(date +%Y-%m-%d).md 2>/dev/null || echo "No entries yet today."
- •
Read yesterday's daily log for continuity:
bashcat ~/.octoclaw/memory/daily/$(date -v-1d +%Y-%m-%d).md 2>/dev/null || echo "No entries yesterday."
- •
Scan topic notes for any recently updated items:
bashfind ~/.octoclaw/memory/topics/ -name '*.md' -mtime -2 -exec basename {} .md \; - •
Compile the briefing:
- •Good morning greeting
- •Yesterday recap -- key events from yesterday's log
- •Pending items -- anything left unfinished
- •Active topics -- recently updated topic notes
- •Suggested actions -- things the user might want to follow up on
Format
Use emoji headers and keep it scannable:
code
Good morning! Here's your briefing for <date>: **Yesterday** - ... **Active Topics** - ... **Suggested Actions** - ...