Monitor blogs and RSS/Atom feeds via blogwatcher-cli.
npx skills add https://github.com/HezaoHezao/poirot --skill blogwatcher
Track blog and RSS/Atom feed updates with the blogwatcher-cli tool. Supports
automatic feed discovery, HTML scraping fallback, OPML import, and read/unread
article management.
blogwatcher-cli must be installed. Pick one method:
# Go install
go install github.com/JulienTant/blogwatcher-cli/cmd/blogwatcher-cli@latest
# Binary (Linux amd64)
curl -sL https://github.com/JulienTant/blogwatcher-cli/releases/latest/download/blogwatcher-cli_linux_amd64.tar.gz | tar xz -C /usr/local/bin blogwatcher-cli
# Docker
docker run --rm -v blogwatcher-cli:/data ghcr.io/julientant/blogwatcher-cli scan
All releases: https://github.com/JulienTant/blogwatcher-cli/releases
Verify installation:
blogwatcher-cli --version
# Add a blog to track
blogwatcher-cli add https://example.com/blog
# Add with explicit feed URL
blogwatcher-cli add https://example.com/blog --feed https://example.com/feed.xml
# Scan for new articles
blogwatcher-cli scan
# List tracked blogs
blogwatcher-cli list
# List unread articles
blogwatcher-cli articles --unread
# Mark article as read
blogwatcher-cli read <article-id>
# Import OPML
blogwatcher-cli import subscriptions.opml
# Export OPML
blogwatcher-cli export > subscriptions.opml
# Install blogwatcher-cli (see Prerequisites)
# Add blogs to track
blogwatcher-cli add https://blog1.com
blogwatcher-cli add https://blog2.com
# Or import existing OPML
blogwatcher-cli import my-subscriptions.opml
# Scan for new articles
blogwatcher-cli scan
# Show unread
blogwatcher-cli articles --unread
# Read an article (marks as read)
blogwatcher-cli read <article-id>
Set up a cron job to scan periodically:
# Scan every morning at 8am
echo "0 8 * * * blogwatcher-cli scan" | crontab -
The database lives at ~/.blogwatcher-cli/blogwatcher-cli.db by default. In
Docker, use a volume to persist:
# Named volume
docker run --rm -v blogwatcher-cli:/data -e BLOGWATCHER_DB=/data/blogwatcher-cli.db ghcr.io/julientant/blogwatcher-cli scan
# Host bind mount
docker run --rm -v /path/on/host:/data -e BLOGWATCHER_DB=/data/blogwatcher-cli.db ghcr.io/julientant/blogwatcher-cli scan
Install first (see Prerequisites).
<link rel="alternate">tags. Use --feed to specify the feed URL explicitly.
handles this, but don't run scan too frequently.
BLOGWATCHER_DB to avolume-mounted path, or data is lost on container exit.
Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.
Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup
Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.
React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.
Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling
Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification
Take hezaohezao/blogwatcher from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference go, docker.
Without those the skill loads but fails at the first command.