/install agent-daily-review
\r \r
Agent Daily Review\r
\r
Overview\r
\r The Daily Review skill helps agents conduct systematic review and reflection at the end of the day, transforming fragmented daily records into structured growth accumulation.\r \r Core Capabilities:\r
- Scan Records - Automatically scan today's memory files, artifacts, and MEMORY.md entries\r
- Categorize Activities - Classify activities into: Completed, In Progress, Issues/Blockers, Learning/Growth, Others\r
- Reflect and Analyze - Calculate productivity score, identify highlights and challenges, generate improvement suggestions\r
- Generate Report - Output structured review report and archive to long-term memory\r \r Use Cases:\r
- User says "Do my daily review for today"\r
- User says "Summarize today"\r
- Cron scheduled task triggers (e.g., daily at 22:00)\r
- User wants to review work/learning status for a specific day\r \r
Workflow\r
\r
1. Scan Today's Records\r
\r
Execute scripts/daily_review.py to scan the following:\r
memory/YYYY-MM-DD.md- Today's journal entries\rMEMORY.md- Today's entries in long-term memory\rworkspace/*.md- Artifact files generated today\r \r
2. Categorize Activities\r
\r Automatically identify and categorize:\r
- Completed - Contains keywords like "completed," "done," "resolved," ✅\r
- In Progress - Contains keywords like "in progress," "working on," 🔄\r
- Issues/Blockers - Contains keywords like "issue," "blocked," "bug," ❌\r
- Learning/Growth - Contains keywords like "learned," "researched," "understood"\r
- Meetings/Communication - Contains keywords like "meeting," "discussed," "sync"\r \r
3. Reflect and Analyze\r
\r Perform intelligent analysis based on categorization results:\r
- Productivity Score - Calculate based on record count and artifact count (0-100)\r
- Today's Highlights - Identify completed important tasks and decisions\r
- Challenges Encountered - Summarize issues and pending items\r
- Improvement Suggestions - Generate personalized recommendations based on data\r \r
4. Generate Report\r
\r Output structured report containing:\r
- Today's Overview (statistics)\r
- Completed Tasks List\r
- In Progress Tasks List\r
- Issues/Blockers\r
- Learning/Growth Records\r
- Highlights Summary\r
- Reflection and Suggestions\r
- Tomorrow's Plan Framework\r \r
5. Archive to Memory\r
\r
- Save review report to
reviews/review_YYYY-MM-DD.md\r - Append review summary to
MEMORY.md\r \r
Usage\r
\r
Manual Execution\r
\r
# Execute today's review\r
python scripts/daily_review.py\r
\r
# Specify working directory\r
python scripts/daily_review.py -w /path/to/workspace\r
\r
# Specify output file\r
python scripts/daily_review.py -o /path/to/output.md\r
\r
# Review specific date\r
python scripts/daily_review.py -d 2024-01-15\r
\r
# Do not save to MEMORY.md\r
python scripts/daily_review.py --no-memory\r
```\r
\r
### Use as Module\r
\r
```python\r
from scripts.daily_review import DailyReview\r
\r
review = DailyReview("/path/to/workspace")\r
report = review.run(save_to_memory=True)\r
print(report)\r
```\r
\r
### Cron Auto-Trigger\r
\r
Set up automatic daily review at 22:00:\r
\r
```bash\r
# Add scheduled task using openclaw cron\r
openclaw cron add --name "daily-review" \\r
--schedule "0 22 * * *" \\r
--command "python ~/.qclaw/skills/daily-review/scripts/daily_review.py"\r
```\r
\r
Or using cron tool:\r
\r
```json\r
{\r
"name": "daily-review",\r
"schedule": {"kind": "cron", "expr": "0 22 * * *", "tz": "Asia/Shanghai"},\r
"payload": {\r
"kind": "agentTurn",\r
"message": "Please perform today's review using the daily-review skill, scanning today's records and generating a review report."\r
},\r
"sessionTarget": "isolated"\r
}\r
```\r
\r
## Report Format\r
\r
Review reports use Markdown format with the following sections:\r
\r
```markdown\r
# Daily Review Report - YYYY-MM-DD\r
\r
## 📊 Today's Overview\r
- Date, Record Count, Artifact Count, Productivity Score\r
\r
## ✅ Completed\r
- Task List\r
\r
## 🔄 In Progress\r
- Pending List\r
\r
## ⚠️ Issues/Blockers\r
- Issue List\r
\r
## 📚 Learning/Growth\r
- Learning Records\r
\r
## 🎯 Today's Highlights\r
- Highlights Summary\r
\r
## 💭 Reflection and Suggestions\r
- Improvement Suggestions\r
\r
## 📝 Tomorrow's Plan\r
- Plan Framework\r
```\r
\r
## Directory Structure\r
\r
```\r
workspace/\r
├── memory/\r
│ └── 2024-01-15.md # Today's journal entries\r
├── reviews/\r
│ └── review_2024-01-15.md # Review report\r
├── MEMORY.md # Long-term memory (review summary appended here)\r
└── *.md # Artifacts generated today\r
```\r
\r
## Tips\r
\r
1. **Cultivate Journaling Habit** - Record timestamped entries in `memory/YYYY-MM-DD.md` daily for better review results\r
2. **Use Keywords** - Use keywords like "completed," "learning," "encountered issue" when journaling to facilitate auto-categorization\r
3. **Periodic Review** - Review weekly/monthly review reports to discover growth trajectory\r
4. **Integrate with Cron** - Set up automatic review to ensure daily reflection is never missed\r
\r
## Resources\r
\r
- `scripts/daily_review.py` - Core review script\r
- `references/framework.md` - Detailed review framework explanation (optional reading)
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install agent-daily-review - After installation, invoke the skill by name or use
/agent-daily-review - Provide required inputs per the skill's parameter spec and get structured output
What is Agent Daily Review?
Helps agents conduct structured end-of-day review, reflection, and documentation. Provides capabilities to scan today's records, categorize activities, perfo... It is an AI Agent Skill for Claude Code / OpenClaw, with 73 downloads so far.
How do I install Agent Daily Review?
Run "/install agent-daily-review" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Agent Daily Review free?
Yes, Agent Daily Review is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Agent Daily Review support?
Agent Daily Review is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Agent Daily Review?
It is built and maintained by OpenLark (@openlark); the current version is v1.0.0.