website-scraping

website-scraping is a skill for Claude Code, Codex from moonlight-lupin/agent-skills. It costs 210 tokens per session (5,537 once invoked), scanned A, original, MIT.

A general workflow for collecting structured records from websites, such as products, hotel prices, flights, properties, jobs, or reviews.

In plain words
What is it for?
Use it to turn one or more website URLs into JSONL records after checking the page structure, embedded data, available APIs, and browser requirements.
Why use it?
It helps choose the simplest workable extraction method instead of starting with complex browser automation unnecessarily.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to turn one or more website URLs into JSONL records after checking the page structure, embedded data, available APIs, and browser requirements.

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

Made for: Claude Code, Codex.

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 website-scraping

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/moonlight-lupin/agent-skills/website-scraping"><img src="https://agentmods.dev/badge/skills/moonlight-lupin/agent-skills/website-scraping.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 210 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,537 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00210 $0.05537
Opus 5 $0.00105 $0.02769
Sonnet 5 $0.00042 $0.01107
Haiku 4.5 $0.00021 $0.00554

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

Security

Grade A, and why

website-scraping scanned grade A with 1 finding 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.

The scan reads SKILL.md. This mod also ships 3 executable files (examples/agentic-browsing-quotes-demo/explore.py, examples/agentic-browsing-quotes-demo/final_runs/run_1/final_script.py, scripts/recon.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

**2.0b — Is this a hostile mega-platform?** A handful of sites — Amazon, LinkedIn, Instagram, TikTok, Facebook, YouTube, Zillow, Google Maps, Crunchbase, and similar — invest heavily in defeating DIY scraping and change
web-scraping/website-scraping/SKILL.md · 263 lines

How it starts

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

Website scraping

A workflow for turning websites into structured data. Bias toward the lightest tool that works: static HTML → JSON-in-page → reverse-engineered API → browser automation, in that order. Skipping recon and reaching straight for Playwright is the single most common way to waste hours.

When to use

This skill applies to any task shaped like "given a URL or a list of URLs, produce structured records". Examples:

  • Competitor price monitoring (hotels, flights, retail, rentals, student housing, SaaS)
  • E-commerce product catalogue extraction
  • Real-estate or job-listing harvesting
  • Reviews, ratings, availability calendars
  • One-off "pull this table into a spreadsheet" jobs

Out of scope: database persistence, scheduling, dashboards, downstream normalisation against a fixed schema. This skill produces JSONL — what the caller does with it is their problem.

Workflow

Follow these steps in order. Most failures come from skipping step 1.

1. Frame the goal before touching code

Pin down the answers in writing before opening an editor:

  • What records do you want? One row per what? Per product? Per (product × variant × date)? Per (hotel × room-type × check-in)? Be explicit — many sites force you to choose between "one row per listing card" and "one row per price-variant", and the choice cascades through the whole scraper.
  • What fields per record? Required vs nice-to-have. Mark anything the source might not publish on every record (sometimes-missing fields are normal, not a bug).
  • Input shape: a single URL? A list of URLs? A search query you need to execute first? A seed listing page you crawl from?
  • Output shape: this skill recommends JSONL (one JSON object per line, caller-defined keys) plus a sidecar manifest file. See "Output convention" below.
  • Scale & cadence: how many records, how often? This one answer drives every downstream cost decision. A one-off harvest of 100 pages and a daily refresh of 10,000 SKUs are different projects: the first just needs a polite time.sleep; the second has to justify proxy/managed-service economics (see step 4, Tier 5+). Pin down volume and repeat-frequency now, not after you've built a single-shot scraper that can't keep up.
  • What's "ground truth"? Pick one specific item you'll eyeball in the browser end-to-end to verify the scraper matches.

Read the full file on GitHub · 263 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 · 263 lines · 210 tokens per session scan A 3864eb5b0291

Subscribe to this mod's changes

website-scraping is a skill published in the GitHub repository moonlight-lupin/agent-skills (62 stars, last pushed 4d ago), licensed MIT. It adds 210 tokens to every session and 5,537 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

firecrawl

Scrape, search et interagit avec le web via Firecrawl — extrait du contenu propre en Markdown depuis n'importe quelle URL, recherche sur le web, crawl de sites entiers, et interaction avec des pages dynamiques (clics, formulaires). Clef API dans FIRECRAWLAPIKEY.

RobinBeraud/hermes-skills · 65 tokens

playwright-cli

Automate browser interactions, test web pages and work with Playwright tests.

microsoft/playwright · 19 tokens

hive.slack-notifications-setup

Set up a Slack notification channel (Sentinel) for a colony by driving the browser — reuse or create the "Hive Sentinel" Slack app from a JSON manifest, install it, capture the bot + app tokens, create/select the channel via the Slack API, and turn Sentinel on so the colony can ping the user on Slack and accept…

aden-hive/hive · 136 tokens

browser-edge-cases

SOP for debugging browser automation failures on complex websites. Use when browser tools fail on specific sites like LinkedIn, Twitter/X, SPAs, or sites with Shadow DOM.

aden-hive/hive · 40 tokens

amazon-search-listing

Amazon search and category listing scraper: extract product listings from any Amazon search results page, keyword search URL, or category browse page and return per-item cards (asin, title, url, image, price, listPrice, stars, reviewCount, badges, isAmazonChoice, isBestSeller, isSponsored, delivery, boughtInPast…

browser-act/skills · 341 tokens

walmart-product-detail

Walmart product detail page extractor: given a walmart.com product URL (walmart.com/ip/...), extract full product data including itemId, title, brand, model, UPC, price, wasPrice, currency, availability, category path, seller info, all images, shortDescription, longDescription, product highlights, full specifications…

browser-act/skills · 252 tokens