From sundial-org-awesome-openclaw-skills-4
Generates daily performance reviews tracking communication (Gmail, Slack, X.com), meetings (Fireflies), output (git commits, Google Drive docs), and focus time (macOS Screen Time, ActivityWatch).
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Generate comprehensive daily performance reviews with AI coaching insights.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Generate comprehensive daily performance reviews with AI coaching insights.
| Feature | Source | Status |
|---|---|---|
| Emails sent | Gmail API | ✅ |
| Slack messages | Slack API | ✅ |
| X.com mentions | Bird CLI | ✅ |
| Meetings attended | Fireflies (speaker verified) | ✅ |
| Git commits | git log | ✅ |
| Docs modified | Google Drive API | ✅ |
| Screen Time | macOS knowledgeC.db | ✅ |
| ActivityWatch | AW API | ✅ |
# Run daily review for today
~/clawd/skills/daily-review/scripts/daily-review.sh
# Run for specific date
~/clawd/skills/daily-review/scripts/daily-review.sh 2026-01-15
🏆 Daily Performance Review - 2026-01-15
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📬 COMMUNICATION
• Emails sent: 6
• Slack messages: 203
• X.com mentions: 5
📅 MEETINGS (Fireflies - speaker verified)
• CEO Chat (70 min)
• Meeting with Perfectos (27 min)
• US Squad Standup (27 min)
Total: 3 meetings (~2.0 hrs)
💻 OUTPUT
• Git commits: 6
• Docs modified: 20
• Messages to Ada: 73
⏱️ FOCUS TIME
Screen Time: 9.7 hrs
• Atlas: 203min
• Slack: 163min
• Telegram: 45min
ActivityWatch: 8.5 hrs
• Telegram: 120min
• Ghostty: 90min
• Chrome: 45min
get_screentime.py script for knowledgeC.db queriescp -r daily-review ~/clawd/skills/
# Bird CLI (on Mac)
cd ~/Code && git clone https://github.com/steipete/bird.git
cd bird && npm install && npm run build:dist
# ActivityWatch
# Download from https://activitywatch.net/
# Bird (X.com)
cat > ~/clawd/secrets/bird.env << 'EOF'
AUTH_TOKEN=your_auth_token
CT0=your_ct0
EOF
# Fireflies
echo "your_api_key" > ~/clawd/secrets/fireflies.key
# Slack
echo '{"user_token": "xoxp-xxx"}' > ~/clawd/secrets/slack-super-ada.json
clawdbot cron add --name "daily-review" --schedule "0 9 * * *"
The skill queries macOS Screen Time directly from knowledgeC.db:
SELECT
ZVALUESTRING as app,
SUM(ZENDDATE - ZSTARTDATE) as seconds
FROM ZOBJECT
WHERE ZSTREAMNAME = '/app/usage'
AND date(ZSTARTDATE + 978307200, 'unixepoch') = '2026-01-15'
GROUP BY ZVALUESTRING
ORDER BY seconds DESC
Meetings are verified by checking if user actually spoke (not just invited):
{
transcripts(limit: 30) {
title dateString duration
sentences { speaker_name }
}
}
Only meetings where speaker_name contains user's name are counted.
MIT