home / skills / openclaw / skills / blogwatcher
This skill helps you monitor blogs and RSS feeds efficiently using blogwatcher to track updates and read articles quickly.
npx playbooks add skill openclaw/skills --skill blogwatcherReview the files below or copy the command above to add this skill to your agents.
---
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> --help` to discover flags and options.
This skill installs and runs blogwatcher, a simple CLI tool to monitor blogs and RSS/Atom feeds for updates. It helps you track multiple sites, discover new articles, and manage read status from the command line. The tool is lightweight and suited for automation or manual checks.
blogwatcher stores a list of tracked blogs and periodically scans each source to detect new articles. It supports RSS and Atom sources and reports how many items were found and which are new. You add and remove blogs with commands, list tracked sites and articles, and mark items as read to keep the feed state tidy.
How do I install blogwatcher?
Install the CLI using Go's install command for the published package. After installation, run blogwatcher --help to see available commands and flags.
Can it detect RSS and Atom feeds reliably?
Yes. blogwatcher identifies RSS or Atom sources and reports the source type and counts found during scans. Ensure the provided URL exposes a valid feed.