$npx -y skills add SafeAI-Lab-X/ClawKeeper --skill blogwatcherMonitor blogs and RSS/Atom feeds for updates using the blogwatcher CLI.
| 1 | # blogwatcher |
| 2 | |
| 3 | Track blog and RSS/Atom feed updates with the `blogwatcher` CLI. |
| 4 | |
| 5 | Install |
| 6 | |
| 7 | - Go: `go install github.com/Hyaxia/blogwatcher/cmd/blogwatcher@latest` |
| 8 | |
| 9 | Quick start |
| 10 | |
| 11 | - `blogwatcher --help` |
| 12 | |
| 13 | Common commands |
| 14 | |
| 15 | - Add a blog: `blogwatcher add "My Blog" https://example.com` |
| 16 | - List blogs: `blogwatcher blogs` |
| 17 | - Scan for updates: `blogwatcher scan` |
| 18 | - List articles: `blogwatcher articles` |
| 19 | - Mark an article read: `blogwatcher read 1` |
| 20 | - Mark all articles read: `blogwatcher read-all` |
| 21 | - Remove a blog: `blogwatcher remove "My Blog"` |
| 22 | |
| 23 | Example output |
| 24 | |
| 25 | ``` |
| 26 | $ blogwatcher blogs |
| 27 | Tracked blogs (1): |
| 28 | |
| 29 | xkcd |
| 30 | URL: https://xkcd.com |
| 31 | ``` |
| 32 | |
| 33 | ``` |
| 34 | $ blogwatcher scan |
| 35 | Scanning 1 blog(s)... |
| 36 | |
| 37 | xkcd |
| 38 | Source: RSS | Found: 4 | New: 4 |
| 39 | |
| 40 | Found 4 new article(s) total! |
| 41 | ``` |
| 42 | |
| 43 | Notes |
| 44 | |
| 45 | - Use `blogwatcher <command> --help` to discover flags and options. |