File contents 云端智能备忘录管理
适用场景
每周自动整理备忘录,去重分类并提取待办,同时做每日滚动提醒。;- 每周自动把碎片笔记整理为“工作/学习/生活”三类结构。
功能说明
云端智能备忘录管理
每周自动整理备忘录,去重分类并提取待办,同时做每日滚动提醒。
这个案例能帮你做什么
解决备忘录“越记越乱、重要事项被淹没”的问题。
每周自动把碎片笔记整理为“工作/学习/生活”三类结构。
自动提取未完成事项并生成下周计划,减少遗漏。
你需要的 Skills(按类型)
类型
Skill / 能力
用途
来源
内置
openclaw schedule
配置每周整理与每日提醒
OpenClaw Built-in
内置
消息推送通道(如飞书)
发送整理结果与提醒
OpenClaw Built-in
内置
备忘录读写能力
读取本周备忘录并做去重分类
OpenClaw Built-in
快速体验版(先跑一轮)
你是我的备忘录助手。
请先对我本周备忘录做一次试运行:
1. 合并重复主题
2. 按工作/学习/生活分类
3. 提取未完成待办
4. 生成下周计划
本轮只输出结果,不写入定时任务。
稳定自动版(可长期运行)
1) 每周整理提示词(源案例)
你:每周日晚上8点:
1. 读取本周所有备忘录
2. 智能去重(相同主题合并)
3. 分类整理(工作/学习/生活)
4. 提取未完成待办
5. 生成下周计划
6. 推送到飞书
2) 调度命令(源案例)
openclaw schedule add "weekly-notes-cleanup" \
--time "Sun 20:00" \
--prompt "整理本周备忘录:去重、分类、提取待办、生成下周计划"
openclaw schedule add "daily-todo" \
--time "09:00" \
--prompt "生成今日待办清单"
openclaw schedule add "todo-reminder" \
--time "15:00" \
--prompt "提醒未完成的高优先级任务"
3) 输出参考
【本周备忘录整理】
- 新增备忘录:45条
- 去重后:28条
- 重要事项:8条
- 已完成:20条
- 待处理:8条
成功标准
每周都能产出结构化整理结果。
待办项从备忘录中被稳定提取并跟进。
重要事项不再被时间轴淹没。
源文件
来源:awesome-openclaw-zh 原始文件:cloud-smart-memo-manager.md
1 --- 2 name: cloud-smart-memo-manager 3 description: 云端智能备忘录管理 4 --- 5 6 # 云端智能备忘录管理 7 8 ## 适用场景 9 > 每周自动整理备忘录,去重分类并提取待办,同时做每日滚动提醒。;- 每周自动把碎片笔记整理为“工作/学习/生活”三类结构。 10 11 ## 功能说明 12 # 云端智能备忘录管理 13 14 > 每周自动整理备忘录,去重分类并提取待办,同时做每日滚动提醒。 15 16 ## 这个案例能帮你做什么 17 18 - 解决备忘录“越记越乱、重要事项被淹没”的问题。 19 - 每周自动把碎片笔记整理为“工作/学习/生活”三类结构。 20 - 自动提取未完成事项并生成下周计划,减少遗漏。 21 22 ## 你需要的 Skills(按类型) 23 24 | 类型 | Skill / 能力 | 用途 | 来源 | 25 |---|---|---|---| 26 | 内置 | `openclaw schedule` | 配置每周整理与每日提醒 | OpenClaw Built-in | 27 | 内置 | 消息推送通道(如飞书) | 发送整理结果与提醒 | OpenClaw Built-in | 28 | 内置 | 备忘录读写能力 | 读取本周备忘录并做去重分类 | OpenClaw Built-in | 29 30 ## 快速体验版(先跑一轮) 31 32 ```text 33 你是我的备忘录助手。 34 请先对我本周备忘录做一次试运行: 35 1. 合并重复主题 36 2. 按工作/学习/生活分类 37 3. 提取未完成待办 38 4. 生成下周计划 39 本轮只输出结果,不写入定时任务。 40 ``` 41 42 ## 稳定自动版(可长期运行) 43 44 ### 1) 每周整理提示词(源案例) 45 46 ```text 47 你:每周日晚上8点: 48 1. 读取本周所有备忘录 49 2. 智能去重(相同主题合并) 50 3. 分类整理(工作/学习/生活) 51 4. 提取未完成待办 52 5. 生成下周计划 53 6. 推送到飞书 54 ``` 55 56 ### 2) 调度命令(源案例) 57 58 ```bash 59 openclaw schedule add "weekly-notes-cleanup" \ 60 --time "Sun 20:00" \ 61 --prompt "整理本周备忘录:去重、分类、提取待办、生成下周计划" 62 63 openclaw schedule add "daily-todo" \ 64 --time "09:00" \ 65 --prompt "生成今日待办清单" 66 67 openclaw schedule add "todo-reminder" \ 68 --time "15:00" \ 69 --prompt "提醒未完成的高优先级任务" 70 ``` 71 72 ### 3) 输出参考 73 74 ```text 75 【本周备忘录整理】 76 - 新增备忘录:45条 77 - 去重后:28条 78 - 重要事项:8条 79 - 已完成:20条 80 - 待处理:8条 81 ``` 82 83 ## 成功标准 84 - 每周都能产出结构化整理结果。 85 - 待办项从备忘录中被稳定提取并跟进。 86 - 重要事项不再被时间轴淹没。 87 88 ## 源文件 89 来源:awesome-openclaw-zh 90 原始文件:cloud-smart-memo-manager.md
YangYuChen-Work/awesome-ai-skills/tree/main/内存管理/cloud-smart-memo-manager commit 7450bafe0c
Frequently asked questions How do I install the Cloud Smart Memo Manager skill? Run npx skillmds@latest add yangyuchen-work/cloud-smart-memo-manager in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What does the Cloud Smart Memo Manager skill do? 云端智能备忘录管理 It is listed under DevOps & Infra on SkillMD.
Is Cloud Smart Memo Manager safe to use? This skill has not completed SkillMD's automated safety review yet. Capability flags: docs only. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
Which AI agents work with Cloud Smart Memo Manager? This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Is Cloud Smart Memo Manager free to use? Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Who published Cloud Smart Memo Manager? YangYuChen-Work (@yangyuchen-work) published this skill. Their other Agent Skills are listed on their SkillMD profile.