← 返回 Skills 市场
openlark

Agent Daily Review

作者 OpenLark · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
73
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install agent-daily-review
功能描述
Helps agents conduct structured end-of-day review, reflection, and documentation. Provides capabilities to scan today's records, categorize activities, perfo...
使用说明 (SKILL.md)

\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

  1. Scan Records - Automatically scan today's memory files, artifacts, and MEMORY.md entries\r
  2. Categorize Activities - Classify activities into: Completed, In Progress, Issues/Blockers, Learning/Growth, Others\r
  3. Reflect and Analyze - Calculate productivity score, identify highlights and challenges, generate improvement suggestions\r
  4. 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\r
  • MEMORY.md - Today's entries in long-term memory\r
  • workspace/*.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)
安全使用建议
This skill appears coherent with its description: it reads local journal files and workspace Markdown files, categorizes entries, produces a Markdown report, and (unless run with --no-memory) appends a summary to your MEMORY.md and saves a report under reviews/. Before installing or scheduling it: 1) review the full script yourself (the provided file content in the prompt was truncated — request the full file if you want a complete audit); 2) if you have sensitive notes, run the script against a copy or use --no-memory to avoid writes; 3) confirm the workspace path (default ~/.qclaw/workspace) and, if you pass a custom -w, point it to a non-sensitive directory; 4) when adding cron, ensure the command path is correct and that you are comfortable with an automated task reading and writing these files; and 5) because this skill runs file I/O on local content, treat it like any tool that can access your notes — inspect the code fully before granting automated execution.
功能分析
Type: OpenClaw Skill Name: agent-daily-review Version: 1.0.0 The agent-daily-review skill is a legitimate tool designed for automated activity summarization and reflection. The core logic in scripts/daily_review.py uses standard file I/O and regex to parse local markdown files within a designated workspace, and it lacks any network activity, obfuscation, or unauthorized access to sensitive system files.
能力评估
Purpose & Capability
The name/description match the provided script: it scans daily memory files and workspace Markdown artifacts, categorizes entries, computes simple analysis, generates a report, and saves/archives it. No unrelated services, credentials, or binaries are requested.
Instruction Scope
SKILL.md and the script instruct the agent to read files from a workspace (default ~/.qclaw/workspace), MEMORY.md, and write reports to reviews/review_YYYY-MM-DD.md and append to MEMORY.md (unless --no-memory). This is expected for the feature, but the skill will access user notes and modify a long-term memory file — users should be aware it reads potentially sensitive local content and (by default) writes/appends to files.
Install Mechanism
No install spec or downloads; the skill is instruction-plus-a-script only. Nothing is fetched from external URLs or installed automatically.
Credentials
The skill declares no required environment variables, credentials, or config paths. The script only uses filesystem paths under the workspace and standard Python libs — no secrets or external services are requested.
Persistence & Privilege
always:false (not force-included). The skill can be invoked autonomously (platform default) which is expected. It does modify files in the user workspace (writes reports and appends to MEMORY.md by default), but it does not request elevated platform privileges or change other skills' configs.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install agent-daily-review
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /agent-daily-review 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
agent-daily-review 1.0.0 - Initial release: structured daily review workflow for agents. - Automatically scans today's memory entries and artifacts, categorizes activities (completed, in progress, issues, learning, meetings). - Performs reflective analysis with productivity scoring, highlights, challenges, and personalized suggestions. - Generates and archives organized daily review reports (Markdown format). - Supports manual execution, module use, and cron-based auto-trigger for cumulative growth.
元数据
Slug agent-daily-review
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

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。

💬 留言讨论