← 返回 Skills 市场
220
总下载
1
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install daily-summary-cn
功能描述
每日工作总结自动生成。根据聊天记录和浏览器历史生成一句话工作总结,定时发送飞书。
使用说明 (SKILL.md)
Daily Summary - 每日工作总结
自动生成简洁的每日工作总结,通过飞书发送。
功能
- 读取本地聊天记录(memory 文件)
- 读取浏览器历史(Chrome/Edge)
- 生成一句话工作总结
- 每天定时发送飞书
使用方法
定时任务(自动)
设置每天 17:30 自动生成:
openclaw cron add --schedule "30 17 * * 1-5" --message "生成今日工作总结" --channel feishu
手动生成
python skills/daily-summary/scripts/generate.py
配置
浏览器历史路径
- Chrome:
%LOCALAPPDATA%\Google\Chrome\User Data\Default\History - Edge:
%LOCALAPPDATA%\Microsoft\Edge\User Data\Default\History
飞书发送
需要配置飞书机器人:
{
"channels": {
"feishu": {
"enabled": true,
"appId": "your-app-id",
"appSecret": "your-app-secret"
}
}
}
输出格式
一句话总结今日完成的主要任务,简洁明了。
示例:
今日完成:部署本地模型、安装飞书 skills、创建每日工作总结定时任务、发布 daily-summary skill
安全使用建议
This skill will read your local chat memory files (~/.openclaw/workspace/memory/YYYY-MM-DD.md) and your Chrome/Edge History SQLite to generate a one-line daily summary and will append that summary back into your memory file. The SKILL.md says it can send the summary via Feishu, and shows where you would put an appId/appSecret, but the included Python script does not implement any network/send logic nor does the skill declare required credentials — check this mismatch before installing. Consider:
- If you don't want local browser history read, do not install or run this skill; it explicitly accesses History files (privacy risk).
- The lack of Feishu send code reduces exfiltration risk, but also means the advertised feature isn't implemented; if you need Feishu delivery, inspect/modify the code to securely handle credentials (avoid hardcoding, use platform secrets).
- Verify file permissions on ~/.openclaw/workspace and ensure backups do not leak appended summaries.
- If you proceed, run the script manually first to confirm behavior, and only supply Feishu credentials after reviewing/adding secure sending code.
Given these inconsistencies, treat the skill as suspicious until the author clarifies or the code is updated to match the documentation and to handle credentials securely.
功能分析
Type: OpenClaw Skill
Name: daily-summary-cn
Version: 1.0.0
The skill programmatically accesses and parses sensitive browser history databases (Chrome and Edge) and local workspace memory files. While these actions are aligned with the stated purpose of generating a work summary in SKILL.md, the automated extraction of browser history from SQLite databases in `scripts/generate.py` is a high-risk behavior that could be leveraged for privacy invasion or data harvesting if modified.
能力评估
Purpose & Capability
The name/description say it will read chat history and browser history and send a daily Feishu message. The code reads the expected local memory file and Chrome/Edge History, and writes a summary back to the local memory. However, the code does NOT implement sending to Feishu, and the skill declares no required credentials or environment variables for Feishu — this is an inconsistency between claimed capability and actual implementation.
Instruction Scope
SKILL.md explicitly instructs reading local memory files and browser history (Windows paths are listed) and scheduling a cron. The script indeed reads ~/.openclaw/workspace/memory/YYYY-MM-DD.md and the browser History SQLite. Reading browser history and local memory is privacy-sensitive but consistent with the stated summary-generation purpose. There is no instruction or code that transmits data externally (no network calls present).
Install Mechanism
No install spec; the skill is instruction-only with a small Python script. Nothing is downloaded or written beyond the script itself and its local file operations.
Credentials
SKILL.md shows a Feishu bot configuration (appId/appSecret) but the skill metadata declares no required env vars and the code does not read any appId/appSecret or other credentials. This mismatch means sensitive credentials are referenced in docs but not handled by the code; the skill also accesses local browser history which is sensitive but proportional to the stated purpose.
Persistence & Privilege
always is false and the skill does not modify other skills or system-wide settings. It writes its summary into the user's workspace memory file (appends to a per-day file), which is expected behavior for this feature.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install daily-summary-cn - 安装完成后,直接呼叫该 Skill 的名称或使用
/daily-summary-cn触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
根据和openclaw的聊天记录和浏览器记录生成每日日报
元数据
常见问题
daily_summary 是什么?
每日工作总结自动生成。根据聊天记录和浏览器历史生成一句话工作总结,定时发送飞书。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 220 次。
如何安装 daily_summary?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install daily-summary-cn」即可一键安装,无需额外配置。
daily_summary 是免费的吗?
是的,daily_summary 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
daily_summary 支持哪些平台?
daily_summary 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 daily_summary?
由 ppop0uuiu(@ppop0uuiu)开发并维护,当前版本 v1.0.0。
推荐 Skills