Claude Agent Skill · by Steipete

Blogwatcher

Install Blogwatcher skill for Claude Code from steipete/clawdis.

Install
Terminal · npx
$npx skills add https://github.com/vercel-labs/agent-skills --skill web-design-guidelines
Works with Paperclip

How Blogwatcher fits into a Paperclip company.

Blogwatcher drops into any Paperclip agent that handles this kind of work. Assign it to a specialist inside a pre-configured PaperclipOrg company and the skill becomes available on every heartbeat — no prompt engineering, no tool wiring.

S
SaaS FactoryPaired

Pre-configured AI company — 18 agents, 18 skills, one-time purchase.

$27$59
Explore pack
Source file
SKILL.md69 lines
Expand
---name: blogwatcherdescription: Monitor blogs and RSS/Atom feeds for updates using the blogwatcher CLI.homepage: https://github.com/Hyaxia/blogwatchermetadata:  {    "openclaw":      {        "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 blogsTracked blogs (1):   xkcd    URL: https://xkcd.com``` ```$ blogwatcher scanScanning 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.