← 返回
未分类 Key

smart-collect

分析和总结URL链接内容,并保存到obsidian中,同时定期提醒复习
分析URL内容,存入Obsidian并定期复习提醒
nbutmickey nbutmickey 来源
未分类 clawhub v1.0.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 516
下载
💾 1
安装
1
版本
#latest

概述

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      # 配置示例

功能

1. 自动抓取

  • 支持 GitHub/微信公众号/小红书/普通网页
  • Readability 算法提取正文
  • LLM 生成摘要、标签、分类

2. 艾宾浩斯复习

  • 间隔:1天 → 2天 → 4天 → 7天 → 15天
  • 超过5次自动归档

3. 自然语言管理

  • 推迟X天
  • 已看完归档
  • 添加/删除标签
  • 标记已回顾

配置

复制 config.json.exampleconfig.json 并填入:

  • 收藏存储路径
  • 飞书配置
  • LLM API 配置

OpenClaw Cron 配置

定时规则

每天 09:30 触发复习

cron 表达式

30 9 * * *

OpenClaw jobs.json 配置

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

部署步骤

  1. 复制配置到 OpenClaw cron 目录:
  2. cp config.json.example config.json
    # 编辑 config.json 填入你的配置
    
  1. 添加 cron 任务:
  2. # 编辑 ~/.openclaw/cron/jobs.json 添加上述配置
    
  1. 重启 Gateway:
  2. 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      # 配置示例

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-30 22:02 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

knowledge-management

Obsidian

steipete
操作 Obsidian 仓库(纯 Markdown 笔记)并通过 obsidian-cli 自动化。
★ 451 📥 106,195
knowledge-management

web-tools-guide

user_ec205dbb
MANDATORY before calling web_search, web_fetch, browser, or opencli. Contains required error-handling procedures (web_se
★ 101 📥 171,900
knowledge-management

Summarize

paudyyin
智能摘要工具,自动为长文本、文档、网页生成摘要,提取要点与关键词,支持自定义摘要长度。
★ 970 📥 524,024