Install
$ agentstack add skill-samir-g-agent-skills-rss-monitor ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
RSS monitor
Config-driven RSS mirror. Three subcommands: update, entries, feeds.
uv run "${CLAUDEPLUGINROOT}/skills/rss-monitor/rss_monitor.py" \ --config /path/to/config.json
Add --json (before the subcommand) for machine-readable output.
Config
Required. Same shape as notion_gsheet_sync and phantombuster-monitor.
{ "statePath": "~/.openclaw/workspace/state", "feeds": [ {"url": "https://example.com/feed.xml", "tags": ["ai", "research"]} ] }
Keys:
statePath— directory for the SQLite DB and state JSON. Relative paths resolve against the config file's directory.~is expanded.dbPath— optional override for the DB filename or absolute path. Relative paths resolve insidestatePath.feeds— list of{url, tags}(or bare URL strings). Authoritative: feeds present in the DB but absent from this list are deleted onupdate. Tags are also synced — declared tags are added, undeclared tags removed.
Print a worked example:
uv run rss_monitor.py example-config
Subcommands
update
Syncs DB feeds with config (adds missing, removes extras, syncs tags), fetches new entries from every feed, writes state JSON.
State JSON shape (aligned with sibling skills):
system,lastRun,lastSuccess,previousSuccess,lastErrorstatus(Healthy/Attention)feedCount,errorFeedCount,newEntryCount,materialChange,notes
previousSuccess snapshots the prior lastSuccess on each successful run — it's the cutoff entries uses by default.
runner.sh is a thin wrapper that runs update against the bundled config.json.
entries
Default: lists entries added since the previous successful run (uses previousSuccess from the state file, filters by entry.added).
entries
Override with --since N to instead list entries published in the past N days (integer):
entries --since 1 # past day entries --since 7 # past week
feeds
Lists feeds currently in the DB, with their tags and any last-fetch error.
Behaviour
- Uses the
readerlibrary for storage and feed parsing. - Refuses feed URLs that resolve to private/internal addresses (SSRF guard) when adding from config.
- Config is authoritative — the only way to manage feeds is by editing the config file.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: samir-g
- Source: samir-g/agent-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.