最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
blogwatcher:RSS 和博客监控 CLI - Openclaw Skills
时间:2026-08-19 09:14:01 编辑:袖梨 来源:一聚教程网
安装与下载
1. ClawHub CLI
从源直接安装技能的最快方式。
npx clawhub@latest install blogwatcher
2. 手动安装
将技能文件夹复制到以下位置之一
全局模式~/.openclaw/skills/
工作区
<project>/skills/
优先级:工作区 > 本地 > 内置
3. 提示词安装
将此提示词复制到 OpenClaw 即可自动安装。
请帮我使用 Clawhub 安装 blogwatcher。如果尚未安装 Clawhub,请先安装(npm i -g clawhub)。
什么是 blogwatcher?
blogwatcher 是一款专门为开发人员和高级用户设计的实用工具,旨在让他们无需离开命令行即可获取喜爱的內容源更新。通过将此工具集成到您的 Openclaw Skills 库中,您可以自动执行检查新文章和管理跨多个出版物的阅读状态。 该工具提供了一个简化的订阅源管理界面,使其成为任何自动化信息采集工作流的必备组件。它允许用户将各种网络资源聚合到一个可搜索的文章列表中,在确保不遗漏任何重要更新的同时,保持一个无干扰的环境。
blogwatcher 应用场景
- 监控技术博客以获取新的教程或项目公告。 - 使用 RSS/Atom 订阅源追踪网络漫画更新或新闻网站。 - 通过同时扫描多个来源来自动化内容策划。 - 通过集中的命令行界面管理个人阅读列表。 - 使用 Openclaw Skills 将订阅源更新集成到更大的自动化流水线中。
- 使用 add 命令向监控列表添加源 URL 和自定义标签。 2. 执行 scan 命令以从所有注册的 RSS 或 Atom 订阅源中获取最新更新。 3. 使用 articles 命令查看新内容,显示未读项目的格式化列表。 4. 通过 ID 将特定文章标记为已读,或使用 read-all 函数清除订阅队列。
blogwatcher 配置指南
要安装 blogwatcher 并将其集成到您的 Openclaw Skills 环境中,请确保您已安装 Go 并运行以下命令:
bash
go install github.com/Hyaxia/blogwatcher/cmd/blogwatcher@latest
安装完成后,您可以通过运行以下命令验证设置并查看可用标志:
bash
blogwatcher --help
blogwatcher 数据架构与分类体系
该工具将数据组织为两个主要实体,以帮助您高效管理 Openclaw Skills 工作流: | 实体 | 描述 | | :--- | :--- | | 博客 | 通过自定义名称和源 URL 识别的受追踪来源。 | | 文章 | 在订阅源中发现的单个条目,通过唯一的数字 ID 和已读/未读状态进行追踪。 | | 元数据 | 每次扫描发现的文章数量与新文章数量的内部追踪。 |
name: blogwatcher
description: Monitor blogs and RSS/Atom feeds for updates using the blogwatcher CLI.
homepage: https://github.com/Hyaxia/blogwatcher
metadata: {"clawdbot":{"emoji":"??","requires":{"bins":["blogwatcher"]},"install":[{"id":"go","kind":"go","module":"github.com/Hyaxia/blogwatcher/cmd/blogwatcher@latest","bins":["blogwatcher"],"label":"Install blogwatcher (go)"}]}}
blogwatcher
Track blog and RSS/Atom feed updates with the blogwatcher CLI.
Install
- Go:
go install github.com/Hyaxia/blogwatcher/cmd/blogwatcher@latest
Quick start
blogwatcher --help
Common commands
- Add a blog:
blogwatcher add "My Blog" https://example.com - List blogs:
blogwatcher blogs - Scan for updates:
blogwatcher scan - List articles:
blogwatcher articles - Mark an article read:
blogwatcher read 1 - Mark all articles read:
blogwatcher read-all - Remove a blog:
blogwatcher remove "My Blog"
Example output
$ blogwatcher blogs
Tracked blogs (1):
xkcd
URL: https://xkcd.com
$ blogwatcher scan
Scanning 1 blog(s)...
xkcd
Source: RSS | Found: 4 | New: 4
Found 4 new article(s) total!
Notes
- Use
blogwatcher <command> --helpto discover flags and options.