data-scraper-agent

data-scraper-agent is a skill for Claude Code from shennawardana23/skillme. It costs 88 tokens per session (2,005 once invoked), scanned A, original, Apache-2.0.

A scheduled data-collection agent that gathers information from a public website or API, uses a language model to enrich it, stores the results, and learns from user decisions.

In plain words
What is it for?
Use it to track jobs, prices, news, repositories, sports scores, events, or listings, then classify and rank the collected results in a database.
Why use it?
Recurring monitoring otherwise requires repeated manual searches and can waste limited model capacity by processing every item separately.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the skillme plugin — 137 skills, 2 commands shipped together

Good fit Use it to track jobs, prices, news, repositories, sports scores, events, or listings, then classify and rank the collected results in a database.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/shennawardana23/skillme/data-scraper-agent
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 shennawardana23/skillme --skill data-scraper-agent
Clone the repo
git clone --depth 1 https://github.com/shennawardana23/skillme

Made for: Claude Code.

Or install skillme, the plugin that ships this one along with the rest of its 137 skills, 2 commands.

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 data-scraper-agent

README.md
[![agentmods](https://agentmods.dev/badge/skills/shennawardana23/skillme/data-scraper-agent/github.svg)](https://agentmods.dev/skills/shennawardana23/skillme/data-scraper-agent)
Your own site
<a href="https://agentmods.dev/skills/shennawardana23/skillme/data-scraper-agent"><img src="https://agentmods.dev/badge/skills/shennawardana23/skillme/data-scraper-agent/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 data-scraper-agent

Your own site · 80×15
<a href="https://agentmods.dev/skills/shennawardana23/skillme/data-scraper-agent"><img src="https://agentmods.dev/badge/skills/shennawardana23/skillme/data-scraper-agent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 88 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,005 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.00088 $0.02005
Opus 5 $0.00044 $0.01002
Sonnet 5 $0.00018 $0.00401
Haiku 4.5 $0.00009 $0.00200

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

Security

Grade A, and why

data-scraper-agent 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 9d 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.

skills/data-scraper-agent/SKILL.md · 125 lines

How it starts

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

Data Scraper Agent

Build a scheduled agent that collects public data, enriches it with an LLM, stores it, and learns from the user's accept/reject decisions — without requiring paid infrastructure.

When to Activate

  • User wants to scrape or monitor a public website or API on a recurring schedule
  • User says "build a bot that checks...", "monitor X for me", "collect data from..."
  • User wants to track jobs, prices, news, repos, sports scores, events, or listings
  • User wants automated collection that improves over time based on their decisions

The Three-Layer Architecture

COLLECT → ENRICH → STORE
scraper     LLM      database
on a      scores/  (Notion/Sheets/
schedule  classifies  Supabase/etc.)

Two principles make this survive free-tier limits:

  1. Batch every LLM call. Never call the model once per item — batch 5+ items into a single call. Scraping 30 items with one call each burns a rate limit instantly; batching the same 30 items into 6 calls of 5 stays inside almost any free tier.
  2. Cascade through a model fallback chain. On quota exhaustion (HTTP 429) or an unavailable model (404), fall through to the next cheaper/faster model in a pre-ordered list rather than failing the run. Order fastest/cheapest-and-most-available first, since free tiers usually grant the smallest model the highest rate limit.

Workflow

Step 1: Understand the goal

Ask (or infer from an unambiguous request):

  1. What to collect — URL / API / RSS / public endpoint?
  2. What to extract — which fields matter (title, price, URL, date, score)?
  3. Where to store — Notion, Google Sheets, Supabase, or a local file?
  4. How to enrich — should the LLM score, summarize, classify, or match each item against user context?
  5. How often — hourly, daily, weekly?

Common shapes to recognize: job boards scored against a resume, product prices with drop alerts, GitHub repos summarized on new release, news classified by topic/sentiment, sports results tracked in a running table, event listings filtered by interest.

Read the full file on GitHub · 125 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 125 lines · 88 tokens per session scan A 803ebd6aa59d

Subscribe to this mod's changes

data-scraper-agent is a skill published in the GitHub repository shennawardana23/skillme (2 stars, last pushed 12d ago), licensed Apache-2.0. It adds 88 tokens to every session and 2,005 once invoked, about $0.0004 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

eval-iterate

Iterates on a failing AI/LLM eval (an L2 suite, a golden-set / judge eval, or any eval gating a PR) until it is green AND confirmed, not just luckily passing once. Classifies the failure as a code bug, an eval-definition bug (stale golden item / criteria drift), judge-drift (silent grader version change), or flaky.…

mthines/agent-skills · 252 tokens

ai-engineering

Reviews and guides LLM/AI application engineering: prompt design, prompt caching, multimodal inputs, RAG, agent loops and tool design, resilience (rate limits, retries, fallbacks), memory, model migration, evals, testing, prompt-injection defence, and observability. Synthesises practices from Anthropic, OpenAI…

mthines/agent-skills · 161 tokens

optimize-mock-data

Optimizes a directory of structurally-related JSON / JSONL mock fixtures by inferring a shared schema, detecting structural drift between files, normalizing formatting and key order, and optionally shrinking verbose payloads while preserving shape. Use when fixture files have grown inconsistent (mixed tabs / 2-space…

mthines/agent-skills · 195 tokens

ai-model-wechat

A guide to calling AI text models from a WeChat Mini Program, a small app that runs inside WeChat, using CloudBase. It covers generated text and streamed responses, where text arrives piece by piece, through callback functions.

sutchan/Agent-Skills-Hub · 254 tokens

ai-model-nodejs

Use this skill for Node.js backend AI via @cloudbase/node-sdk (>=3.16.0) — cloud functions, CloudRun, Express, Koa, NestJS, serverless APIs, scheduled jobs, LLM proxies. Only SDK supporting image generation (ai.createImageModel + generateImage). Text models via ai.createModel with groups cloudbase, hunyuan-exp, or…

sutchan/Agent-Skills-Hub · 230 tokens

ai-model-web

A guide for adding AI model calls to browser-based web applications through the CloudBase JavaScript library. It covers generating text and streaming text into interfaces such as React, Vue, and dashboard apps.

sutchan/Agent-Skills-Hub · 247 tokens