Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

agent-daily-reviewAgent 每日回顾

Agent Skill

agent-daily-review 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,521

周安装

103

GitHub Stars

公开资料未说明

下载量

808
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:agent-daily-review(Agent 每日回顾)
来源仓库:https://github.com/openlark/agent-daily-review
安装命令:
openclaw skills install agent-daily-review
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install agent-daily-review

简介

agent-daily-review 帮助代理进行结构化日终审查与反思记录。

  • 适用于 OpenClaw 中促进代理自我改进与经验沉淀的场景。
  • 扫描当日活动并分类归档关键事件。
  • 支持手动补充遗漏事项与标记优先级。
  • 建议定期回顾以优化行为策略。agent-daily-review 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
agent-daily-review
description
Helps 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.

Agent Daily Review

Overview

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.

Core Capabilities:

  1. Scan Records - Automatically scan today's memory files, artifacts, and MEMORY.md entries
  2. Categorize Activities - Classify activities into: Completed, In Progress, Issues/Blockers, Learning/Growth, Others
  3. Reflect and Analyze - Calculate productivity score, identify highlights and challenges, generate improvement suggestions
  4. Generate Report - Output structured review report and archive to long-term memory

Use Cases:

  • User says "Do my daily review for today"
  • User says "Summarize today"
  • Cron scheduled task triggers (e.g., daily at 22:00)
  • User wants to review work/learning status for a specific day

Workflow

1. Scan Today's Records

Execute scripts/daily_review.py to scan the following:

  • memory/YYYY-MM-DD.md - Today's journal entries
  • MEMORY.md - Today's entries in long-term memory
  • workspace/*.md - Artifact files generated today

2. Categorize Activities

Automatically identify and categorize:

  • Completed - Contains keywords like "completed," "done," "resolved," ✅
  • In Progress - Contains keywords like "in progress," "working on," 🔄
  • Issues/Blockers - Contains keywords like "issue," "blocked," "bug," ❌
  • Learning/Growth - Contains keywords like "learned," "researched," "understood"
  • Meetings/Communication - Contains keywords like "meeting," "discussed," "sync"

3. Reflect and Analyze

Perform intelligent analysis based on categorization results:

  • Productivity Score - Calculate based on record count and artifact count (0-100)
  • Today's Highlights - Identify completed important tasks and decisions
  • Challenges Encountered - Summarize issues and pending items
  • Improvement Suggestions - Generate personalized recommendations based on data

4. Generate Report

Output structured report containing:

  • Today's Overview (statistics)
  • Completed Tasks List
  • In Progress Tasks List
  • Issues/Blockers
  • Learning/Growth Records
  • Highlights Summary
  • Reflection and Suggestions
  • Tomorrow's Plan Framework

5. Archive to Memory

  • Save review report to reviews/review_YYYY-MM-DD.md
  • Append review summary to MEMORY.md

Usage

Manual Execution

# 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

Use as Module

from scripts.daily_review import DailyReview

review = DailyReview("/path/to/workspace")
report = review.run(save_to_memory=True)
print(report)

Cron Auto-Trigger

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"
}

Report Format

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

Directory Structure

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

Tips

  1. Cultivate Journaling Habit - Record timestamped entries in memory/YYYY-MM-DD.md daily for better review results
  2. Use Keywords - Use keywords like "completed," "learning," "encountered issue" when journaling to facilitate auto-categorization
  3. Periodic Review - Review weekly/monthly review reports to discover growth trajectory
  4. Integrate with Cron - Set up automatic review to ensure daily reflection is never missed

Resources

  • scripts/daily_review.py - Core review script
  • references/framework.md - Detailed review framework explanation (optional reading)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

97.58%
按下载量换算788

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills