Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/HezaoHezao/poirot --skill blogwatcher명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | blogwatcher |
| description | Monitor blogs and RSS/Atom feeds via blogwatcher-cli. |
| allowed-tools | ["bash","read_file"] |
| enabled | true |
| related-skills | [] |
| license | MIT |
| author | Adapted from hermes-agent (Nous Research, MIT); JulienTant/blogwatcher-cli |
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
<link rel="alternate">
tags. Use --feed to specify the feed URL explicitly.scan too frequently.BLOGWATCHER_DB to a
volume-mounted path, or data is lost on container exit.