Agent skill
opml-reader
Store OPML files and fetch latest posts across RSS/Atom feeds. Use when a user provides an OPML URL or file path, wants it saved under ~/Code/Files, or wants the newest entries aggregated across feeds (with optional JSON/TSV output, dedupe, and concurrency controls).
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/opml-reader
SKILL.md
OPML Reader
Overview
Use scripts/opml_reader.py to (1) store OPML from a URL and (2) list the latest posts across all feeds in the OPML. Output timestamps are ISO-8601 in UTC.
Quick Start
- Create a venv and install dependency:
python3 -m venv ~/Code/sandbox/.venv-opml-reader
~/Code/sandbox/.venv-opml-reader/bin/pip install feedparser
- Store an OPML file:
~/Code/sandbox/.venv-opml-reader/bin/python scripts/opml_reader.py store \
"https://example.com/feeds.opml" \
"~/Code/Files/feeds.opml"
- Fetch latest posts:
~/Code/sandbox/.venv-opml-reader/bin/python scripts/opml_reader.py latest \
"~/Code/Files/feeds.opml" \
--limit 5
Workflow
- If the user supplies an OPML URL, store it under
~/Code/Filesusingstore. - If the OPML file already exists, reuse it unless the user explicitly asks to overwrite.
- Run
latestto aggregate posts and return the newest entries across feeds. - Report partial results if some feeds fail (network timeouts are expected on large lists).
Output Options
- Default output:
textlines formatted asindex. title | feed | date | link. - Use
--format jsonor--format tsvif the user needs machine-readable output. - Dedupe is on by default. Use
--no-dedupeif the user wants raw results. - Adjust
--workersand--timeoutfor large or slow feed lists.
Resources
scripts/
scripts/opml_reader.py: Store OPML files and list latest posts across RSS/Atom feeds.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?