skills/daily-briefing/SKILL.md
Generate a daily briefing summarizing recent memory and relevant information. Use when the user asks for a morning briefing or daily summary.
npx skillsauth add aymenfurter/polyclaw daily-briefingInstall 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.
Compile a comprehensive daily briefing from memory.
Read today's daily log (if it exists):
cat ~/.polyclaw/memory/daily/$(date +%Y-%m-%d).md 2>/dev/null || echo "No entries yet today."
Read yesterday's daily log for continuity:
cat ~/.polyclaw/memory/daily/$(date -v-1d +%Y-%m-%d).md 2>/dev/null || echo "No entries yesterday."
Scan topic notes for any recently updated items:
find ~/.polyclaw/memory/topics/ -name '*.md' -mtime -2 -exec basename {} .md \;
Compile the briefing:
Use emoji headers and keep it scannable:
Good morning! Here's your briefing for <date>:
**Yesterday**
- ...
**Active Topics**
- ...
**Suggested Actions**
- ...
tools
Search the web for information using Playwright browser automation. Use when the user asks to find, look up, or research something online.
content-media
Summarize the content of a given URL. Use when the user provides a link and asks for a summary or key points.
development
Create, read, update, and organize personal notes. Use when the user asks to take a note, jot something down, save information for later, or manage their notes.
testing
Get a concise summary of a Wikipedia article on any topic. Use when the user says: "summarize from wikipedia", "what is <topic>", "tell me about <topic>", "wikipedia summary of", "quick facts about"