Install
openclaw skills install smart-collect分析和总结URL链接内容,并保存到obsidian中,同时定期提醒复习
openclaw skills install smart-collect基于艾宾浩斯遗忘曲线的智能收藏系统,支持自动抓取、摘要生成、定时复习提醒。
smart-collect/
├── SKILL.md # 本文件
├── lib/
│ ├── reviewEngine.js # 艾宾浩斯复习引擎
│ ├── markdownStore.js # Markdown 存储模块
│ ├── nlpParser.js # 自然语言解析模块
│ └── fetcher.js # 网页抓取模块
├── scripts/
│ ├── shoucang-add.js # 添加收藏脚本
│ ├── shoucang-review.js # 复习回顾脚本
│ └── smart-collect.js # 主入口
└── config.json.example # 配置示例
复制 config.json.example 为 config.json 并填入:
每天 09:30 触发复习
30 9 * * *
{
"jobs": [
{
"id": "smart-collect-review",
"name": "智能收藏每日复习",
"description": "基于艾宾浩斯曲线触发收藏复习提醒",
"enabled": true,
"schedule": {
"kind": "cron",
"expr": "30 9 * * *"
},
"sessionTarget": "isolated",
"wakeMode": "now",
"payload": {
"kind": "agentTurn",
"message": "请执行智能收藏的每日复习任务,运行命令:cd ~/.openclaw/skills/smart-collect && node scripts/shoucang-review.js"
},
"delivery": {
"mode": "announce",
"channel": "feishu",
"to": "ou_你的飞书ID"
}
}
]
}
cp config.json.example config.json
# 编辑 config.json 填入你的配置
# 编辑 ~/.openclaw/cron/jobs.json 添加上述配置
openclaw gateway restart
smart-collect/
├── SKILL.md # 本文件
├── lib/
│ ├── reviewEngine.js # 艾宾浩斯复习引擎
│ ├── markdownStore.js # Markdown 存储模块
│ ├── nlpParser.js # 自然语言解析模块
│ └── fetcher.js # 网页抓取模块
├── scripts/
│ ├── shoucang-add.js # 添加收藏脚本
│ ├── shoucang-review.js # 复习回顾脚本
│ └── smart-collect.js # 主入口
└── config.json.example # 配置示例