← Back to Skills Marketplace
openlark

Agent Daily Review

by OpenLark · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
73
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install agent-daily-review
Description
Helps agents conduct structured end-of-day review, reflection, and documentation. Provides capabilities to scan today's records, categorize activities, perfo...
README (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)
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install agent-daily-review
  3. After installation, invoke the skill by name or use /agent-daily-review
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug agent-daily-review
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

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.

💬 Comments