research-crawl-rss

research-crawl-rss is a skill for Claude Code from thangnguyenworkspace/industry-pulse. It costs 42 tokens per session (4,089 once invoked), scanned A, original, MIT.

A tool for collecting recent items from multiple RSS, Atom, or RDF feeds. These are standard web feeds that publish updates from sites such as news pages, blogs, or journals.

In plain words
What is it for?
Use it to crawl specified feed URLs, limit results by item count or age, save each feed as Markdown, and create a manifest of the collected data.
Why use it?
It gathers updates from many feeds in one run and produces both per-feed files and an overall summary.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution. Also seen: mentions subagents; positional $N argument.

Good fit Use it to crawl specified feed URLs, limit results by item count or age, save each feed as Markdown, and create a manifest of the collected data.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/thangnguyenworkspace/industry-pulse/research-crawl-rss
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add thangnguyenworkspace/industry-pulse --skill research-crawl-rss
Clone the repo
git clone --depth 1 https://github.com/thangnguyenworkspace/industry-pulse

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for research-crawl-rss

README.md
[![agentmods](https://agentmods.dev/badge/skills/thangnguyenworkspace/industry-pulse/research-crawl-rss/github.svg)](https://agentmods.dev/skills/thangnguyenworkspace/industry-pulse/research-crawl-rss)
Your own site
<a href="https://agentmods.dev/skills/thangnguyenworkspace/industry-pulse/research-crawl-rss"><img src="https://agentmods.dev/badge/skills/thangnguyenworkspace/industry-pulse/research-crawl-rss/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for research-crawl-rss

Your own site · 80×15
<a href="https://agentmods.dev/skills/thangnguyenworkspace/industry-pulse/research-crawl-rss"><img src="https://agentmods.dev/badge/skills/thangnguyenworkspace/industry-pulse/research-crawl-rss.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,089 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00042 $0.04089
Opus 5 $0.00021 $0.02044
Sonnet 5 $0.00008 $0.00818
Haiku 4.5 $0.00004 $0.00409

Measured 11d ago against content hash ded4423bd495, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

research-crawl-rss scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/research-crawl-rss/SKILL.md · 264 lines

How it starts

The opening of the file, as written. The whole thing — 264 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Research Crawl RSS

Argument: $ARGUMENTS (required, see Runtime Inputs)

If $ARGUMENTS is empty or missing required fields, STOP and report which fields are absent.


Preamble

Runtime Inputs

Parse from $ARGUMENTS:

--feed-urls=[u1,u2,...]          [JSON-style array of absolute feed URLs (RSS / Atom / RDF), non-empty; each must be an http(s) URL. Singular invocation expressed as a single-element array.]
--raw-output-dir={PATH}          [absolute path to a directory where per-feed rendered markdown files + manifest.json will be written]
--max-items-per-feed={N}         [positive integer per-feed item cap; MUST be ≥ 1, see §1.0 Step 3 + §6.0 row max-items-zero]

# Optional power params (omit when not needed):
--days={N}                       [positive integer recency window in days; default 1]
--max-body-chars={N}             [positive integer per-item body truncation cap; default 8000]

Validation rules (before §1.0):

  • --feed-urls, --raw-output-dir, and --max-items-per-feed mandatory. If any missing, STOP and report which.
  • --feed-urls must parse as a non-empty JSON array of strings. Else reject (feed-urls-malformed).
  • Each entry must be an absolute http:// or https:// URL. First failing entry → STOP and report (feed-urls-malformed) with the offending value named.
  • --raw-output-dir must be absolute. Reject relative paths (caller owns path resolution).
  • --max-items-per-feed must parse as integer ≥ 1. Zero rejected per §6.0 max-items-zero.
  • --days and --max-body-chars must parse as positive integers when supplied; defaults 1 and 8000.

If any validation fails, STOP and report which field failed.

Global References

RSS_INGEST_SCRIPT = scripts/rss-ingest.py    # feedparser-via-Bash leaf engine; one batched run over all feeds

Leaf does not read tool guides at runtime, the documented pitfalls are already encoded inside RSS_INGEST_SCRIPT (browser-UA default load-bearing, Accept-Encoding: identity + gzip fallback, HTML-strip before boundary-aware truncation, per-feed cap + newest-first sort-then-slice as the token governor, recency-window filtering on published/updated dates, dateless-item fallback + items_dropped_dateless surfacing, 403 gating classification cloudflare-waf vs cloudflare-js-challenge, bozo + content-type sniff + empty-body soft-failure surfacing, title-only body_sources:{none} provenance, est_tokens chars/4 budgeting heuristic). RSS fetch is free, $0 per run; the per-feed cap is a context/token governor, not a cost cap.

Read the full file on GitHub · 264 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 264 lines · 42 tokens per session scan A ded4423bd495

Subscribe to this mod's changes

research-crawl-rss is a skill published in the GitHub repository thangnguyenworkspace/industry-pulse (4 stars, last pushed 1mo ago), licensed MIT. It adds 42 tokens to every session and 4,089 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

competitor-x-ray

Decode any set of competitors into their ICP (ideal customer profile), their funnel (how a stranger becomes a customer), and their monetization (every revenue stream and price point). Researches each competitor against real sources and synthesizes a cross-competitor comparison. Use whenever the user wants to research…

Mahanaicoach/competitor-x-ray · 221 tokens

subagent-driven-development

Execute plans via delegatetask subagents (2-stage review).

NousResearch/hermes-agent · 17 tokens

mcporter

List, auth, and call MCP servers/tools from the terminal.

NousResearch/hermes-agent · 16 tokens

article-writing

Write articles, guides, blog posts, tutorials, newsletter issues, and other long-form content in a distinctive voice derived from supplied examples or brand guidance. Use when the user wants polished written content longer than a paragraph, especially when voice consistency, structure, and credibility matter.

affaan-m/ECC · 57 tokens

research-engineer

An uncompromising Academic Research Engineer. Operates with absolute scientific rigor, objective criticism, and zero flair. Focuses on theoretical correctness, formal verification, and optimal implementation across any required technology.

davila7/claude-code-templates · 43 tokens

ha-data-stores

Map of Hope Agent's local data stores and safe read-only query workflow. Use when the user asks where Hope Agent stores data, wants to inspect sessions/messages/memory/logs/background jobs/knowledge indexes/settings, asks the model to query local app data, or debugging requires checking persisted state. Trigger…

shiwenwen/hope-agent · 115 tokens