Install
openclaw skills install @openlark/agent-daily-reviewHelps agents conduct structured end-of-day review, reflection, and documentation. Provides capabilities to scan today's records, categorize activities, perform reflective analysis, and generate review reports. Supports Cron auto-trigger for cumulative growth with each run.
openclaw skills install @openlark/agent-daily-reviewThe Daily Review skill helps agents conduct systematic review and reflection at the end of the day, transforming fragmented daily records into structured growth accumulation.
Core Capabilities:
Use Cases:
Execute scripts/daily_review.py to scan the following:
memory/YYYY-MM-DD.md - Today's journal entriesMEMORY.md - Today's entries in long-term memoryworkspace/*.md - Artifact files generated todayAutomatically identify and categorize:
Perform intelligent analysis based on categorization results:
Output structured report containing:
reviews/review_YYYY-MM-DD.mdMEMORY.md# Execute today's review
python scripts/daily_review.py
# Specify working directory
python scripts/daily_review.py -w /path/to/workspace
# Specify output file
python scripts/daily_review.py -o /path/to/output.md
# Review specific date
python scripts/daily_review.py -d 2024-01-15
# Do not save to MEMORY.md
python scripts/daily_review.py --no-memory
from scripts.daily_review import DailyReview
review = DailyReview("/path/to/workspace")
report = review.run(save_to_memory=True)
print(report)
Set up automatic daily review at 22:00:
# Add scheduled task using openclaw cron
openclaw cron add --name "daily-review" \
--schedule "0 22 * * *" \
--command "python ~/.qclaw/skills/daily-review/scripts/daily_review.py"
Or using cron tool:
{
"name": "daily-review",
"schedule": {"kind": "cron", "expr": "0 22 * * *", "tz": "Asia/Shanghai"},
"payload": {
"kind": "agentTurn",
"message": "Please perform today's review using the daily-review skill, scanning today's records and generating a review report."
},
"sessionTarget": "isolated"
}
Review reports use Markdown format with the following sections:
# Daily Review Report - YYYY-MM-DD
## 📊 Today's Overview
- Date, Record Count, Artifact Count, Productivity Score
## ✅ Completed
- Task List
## 🔄 In Progress
- Pending List
## ⚠️ Issues/Blockers
- Issue List
## 📚 Learning/Growth
- Learning Records
## 🎯 Today's Highlights
- Highlights Summary
## 💭 Reflection and Suggestions
- Improvement Suggestions
## 📝 Tomorrow's Plan
- Plan Framework
workspace/
├── memory/
│ └── 2024-01-15.md # Today's journal entries
├── reviews/
│ └── review_2024-01-15.md # Review report
├── MEMORY.md # Long-term memory (review summary appended here)
└── *.md # Artifacts generated today
memory/YYYY-MM-DD.md daily for better review resultsscripts/daily_review.py - Core review scriptreferences/framework.md - Detailed review framework explanation (optional reading)