/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)
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install agent-daily-review - 安装完成后,直接呼叫该 Skill 的名称或使用
/agent-daily-review触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Agent Daily Review 是什么?
Helps agents conduct structured end-of-day review, reflection, and documentation. Provides capabilities to scan today's records, categorize activities, perfo... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 73 次。
如何安装 Agent Daily Review?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install agent-daily-review」即可一键安装,无需额外配置。
Agent Daily Review 是免费的吗?
是的,Agent Daily Review 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Agent Daily Review 支持哪些平台?
Agent Daily Review 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Agent Daily Review?
由 OpenLark(@openlark)开发并维护,当前版本 v1.0.0。