Skip to main content Inicio Creadores akillness oh-my-skills scrapling
scrapling Route web-scraping work into the lightest workable Scrapling mode instead of defaulting to a browser. Use when the user needs HTML extraction, JS-rendered page retrieval, protected-target escalation, quick CLI scraping, agent-facing MCP access, or a larger crawl with Scrapling spiders. Triggers on: scrapling, scrape website, crawl site, adaptive scraping, selector drift, stealthy fetch, browser scraping, scrape to markdown, scrapling mcp, scrapling spider.
Ir a la instalación Skills Marketplace Descubre y explora habilidades de IA creadas por la comunidad.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Copiar promptMostrar detalles del prompt Un comando directo omite el prompt de revisión. Revisa el origen antes de ejecutarlo.
npx skills add https://github.com/akillness/oh-my-skills --skill scraplingEl comando permanece en una sola línea. Desplázate horizontalmente para revisarlo antes de copiarlo.
¿Prefieres una copia local? Descarga los archivos que SkillsMP tiene disponibles ahora.
Descargar Zip Descargando... Más de este repositorio One-shot installer for the akillness/oh-my-gods agent skill bundle (80+ skills spanning agent-browser, agent-workflow, ai-research-skills, api-design, and the full god-skills catalog). Use when the user asks to add the oh-my-gods skill pack, bring in the AgenticSkills bundle, or wants every god-skill copied into Claude Code, Codex CLI, Antigravity/Gemini, and OpenCode in one step. Triggers on: AgenticSkills, agenticskills, oh-my-gods, god-skills, install oh-my-gods, bring in agentic skills bundle, install gods skills, add god skills.
Make any software agent-native with HKUDS CLI-Anything — route between four modes: install ready-made CLI harnesses via the CLI-Hub package manager (`pip install cli-anything-hub`, then `cli-hub list/search/info/install/launch`), give agents the autonomous discovery meta-skill (`npx skills add HKUDS/CLI-Anything --skill cli-hub-meta-skill`), generate a new harness from any codebase or GitHub repo via the 7-phase pipeline (`/plugin install cli-anything` → `/cli-anything <path>`), or iterate with `/cli-anything:refine`, `:test`, `:validate`. 40+ production harnesses (GIMP, Blender, LibreOffice, OBS, ComfyUI, Ollama, Godot, QGIS, …), 2,461 passing tests, Click CLIs with REPL + `--json` output. Use when agents must drive real desktop/server software without GUI automation. Triggers on: cli-anything, cli-hub, cli-anything-hub, agent-native cli, make software agent-native, cli harness generation, /cli-anything, harness refine, HKUDS cli.
Run Comet's Opik — open-source LLM observability, evaluation, and optimization — from one routing-first skill: install the Python/TypeScript SDK, stand up a server (Comet.com cloud, Docker Compose via `./opik.sh`, or Kubernetes/Helm), wire tracing through `@opik.track` or one of 50+ framework integrations (OpenAI, Anthropic, LangChain, LangGraph, LlamaIndex, CrewAI, DSPy, Ollama, Bedrock, Vercel AI SDK, …), score outputs with LLM-as-a-judge metrics (Hallucination, Moderation, Answer Relevance, Context Precision), and run Datasets/Experiments evaluations including PyTest CI gates. Use when the user wants LLM tracing, prompt evaluation, production LLM monitoring, agent optimization, or guardrails with Opik. Triggers on: opik, comet opik, opik configure, opik.sh, llm observability, llm tracing, llm as a judge, hallucination metric, prompt evaluation, opik dashboard, opik guardrails, agent optimizer.
Ocupaciones relacionadas SOC
Basado en la clasificación ocupacional SOC
Explorador de archivos
16 archivos skill-autoresearch-scrapling name scrapling description Route web-scraping work into the lightest workable Scrapling mode instead of defaulting to a browser. Use when the user needs HTML extraction, JS-rendered page retrieval, protected-target escalation, quick CLI scraping, agent-facing MCP access, or a larger crawl with Scrapling spiders. Triggers on: scrapling, scrape website, crawl site, adaptive scraping, selector drift, stealthy fetch, browser scraping, scrape to markdown, scrapling mcp, scrapling spider.
allowed-tools Bash Read Write Edit Glob Grep WebFetch compatibility Requires Python 3.10+ and works best in a virtual environment. Browser-backed fetchers, CLI shell, MCP, and spiders require extras plus `scrapling install` for browser dependencies. license BSD-3-Clause metadata {"tags":"scrapling, web-scraping, crawling, adaptive-scraping, mcp, cli, playwright, cloudflare, spiders, python","version":"1.1","source":"https://github.com/D4Vinci/Scrapling"}
scrapling - routing-first adaptive web scraping
Keyword : scrapling · · ·
adaptive scraping
stealthy fetch
scrapling spider
Respect each target site's terms, robots, rate limits, authorization boundaries, and anti-abuse policies.
Scrapling is most useful when you choose the smallest scraping mode that fits the job :
parse known HTML before reaching for a browser
start with plain HTTP before rendering JavaScript
escalate to stealth only when simpler paths fail
switch to spiders only when crawl state and multi-page orchestration become the real problem
When to use this skill
The user needs one page or a few pages extracted and you must decide between parser-only, HTTP fetch, browser rendering, or stealth
The user wants to prototype with scrapling extract, scrapling shell, or wrapper scripts instead of writing Python first
The user wants adaptive selector recovery because the target DOM changes over time
The user wants Scrapling exposed to an agent via MCP
The user is about to turn repeated fetches into a site crawl and needs to know when Scrapling spiders are justified
The user keeps drifting toward Playwright/Crawlee-style orchestration, direct API interception, or managed unblockers and needs an honest route-out
Instructions
Step 1: Capture one intake packet before choosing tools Collect the minimum packet:
Target class : raw HTML, normal web page, JS-rendered app, protected site, or many-page crawl
Desired output : CSS/XPath extraction, Markdown/text file, structured records, or long-running crawl output
Operational need : quick probe, repeated session reuse, agent/MCP access, or resumable crawling
Constraint : install budget, browser availability, auth/proxy limits, and whether direct API/JSON access may be better than DOM scraping
If HTML is already available, start with Selector
If a live page is needed, start with Fetcher
If the content is rendered client-side, move to DynamicFetcher
If the rendered path is still blocked or empty, move to StealthyFetcher
If the job is now queueing, link following, retries, or checkpoints, move to spiders
If the real need is browser automation, pre-navigation request interception, or a managed unblocker, route out instead of over-promising Scrapling
Step 2: Install only the profile you need Use a virtual environment unless the user explicitly wants a system install.
bash scripts/install.sh --profile parser
bash scripts/install.sh --profile fetchers
bash scripts/install.sh --profile shell
bash scripts/install.sh --profile ai
bash scripts/install.sh --profile all
parser — local HTML parsing only
fetchers — HTTP + browser-backed fetchers
shell — interactive CLI shell workflows
ai — MCP server workflows
all — only when the user truly needs the full surface
Browser-backed flows require scrapling install. Parser-only workflows do not.
Step 3: Choose the lightest extraction path that fits
A. Parser-only path Use this when HTML is already available or the user mainly needs selector logic.
from scrapling import Selector
page = Selector(html_doc, url="https://example.com" )
items = page.css("article h2::text" ).getall()
local HTML fixtures
saved responses
quick selector authoring
low-cost extraction without network/browser concerns
B. HTTP fetch path Use Fetcher or FetcherSession when plain HTTP is likely enough.
from scrapling.fetchers import Fetcher
page = Fetcher.get("https://example.com" , impersonate="chrome" )
title = page.css("title::text" ).get()
docs, blogs, many marketing pages, search results, simple product pages
cheap repeated requests with session reuse
cases where the user only needs rendered HTML if evidence proves HTTP is insufficient
C. Dynamic browser path Use DynamicFetcher or DynamicSession when the target is JS-rendered.
from scrapling.fetchers import DynamicFetcher
page = DynamicFetcher.fetch(
"https://example.com/app" ,
network_idle=True ,
wait_selector=".content"
)
the page is a SPA/dashboard
content appears only after client-side rendering
small interaction or wait controls are enough
D. Stealth path Use StealthyFetcher or StealthySession only when the lighter paths fail because of protection.
from scrapling.fetchers import StealthyFetcher
page = StealthyFetcher.fetch(
"https://example.com/protected" ,
headless=True ,
solve_cloudflare=True
)
Treat anti-bot handling as a documented capability, not a guarantee
If a target still fails or requires stronger infra, route honestly to proxies or managed unblockers instead of pretending one more flag will always fix it
Step 4: Use adaptive scraping only when selector drift is the problem Adaptive scraping is valuable when the DOM changes but the semantic target is still the same.
from scrapling.fetchers import Fetcher
Fetcher.configure(adaptive=True )
page = Fetcher.get("https://example.com" )
saved = page.css(".product" , auto_save=True )
relocated = page.css(".product" , adaptive=True )
adaptive=True is opt-in
auto_save=True stores fingerprints for later reuse
manual save(), retrieve(), and relocate() flows are available
this helps brittle selectors, not auth failures or full site redesign strategy
Step 5: Choose the right operator surface
CLI / shell Use CLI when the user wants quick output files or a terminal-first probe.
bash scripts/run-extract.sh get "https://example.com" article.md --css-selector "article"
bash scripts/run-extract.sh fetch "https://app.example.com" content.md --network-idle
bash scripts/run-extract.sh stealth "https://protected.example.com" content.md --solve-cloudflare
Use scrapling shell when the user wants an interactive REPL rather than a standalone script.
MCP Use MCP when the goal is agent-facing access instead of a bespoke scraper script.
bash scripts/run-mcp.sh
bash scripts/run-mcp.sh --http --host 127.0.0.1 --port 8000
Start with stdio for local agent integration; use HTTP only when the environment already expects streamable HTTP.
Step 6: Switch to spiders only when crawl state matters Use spiders when the task needs:
multiple pages and link following
retries and blocked-response handling
concurrency and session routing
pause/resume checkpoints via crawldir
For one or two isolated pages, fetchers remain simpler.
from scrapling.spiders import Spider, Response
class QuotesSpider (Spider ):
name = "quotes"
start_urls = ["https://quotes.toscrape.com/" ]
async def parse (self, response: Response ):
for quote in response.css(".quote" ):
yield {"text" : quote.css(".text::text" ).get()}
Examples
Example 1: I already have HTML and just need selectors Use Selector, not a browser.
Example 2: A marketing page loads over plain HTTP Start with Fetcher or scrapling extract get, then escalate only if evidence says the content is missing.
Example 3: A React dashboard is empty until JS runs Move to DynamicFetcher and use network_idle or wait_selector.
Example 4: A protected target returns a challenge page Try StealthyFetcher, but make it explicit that stronger proxy/unblocker infrastructure may still be required.
Example 5: An agent needs bounded web extraction Expose Scrapling through MCP instead of forcing a handwritten scraper first.
Example 6: The task has become a real crawl Route from repeated fetches into spiders with checkpointing and session control.
Best practices
Start with the smallest viable mode and escalate only on evidence.
Prefer direct API/JSON access when that is the real source of truth; do not force DOM scraping for browser-heavy apps.
Reuse sessions for repeated requests instead of relaunching browsers on every page.
Use adaptive scraping for selector drift, not as a blanket fix for every failure mode.
Prefer CSS selectors plus .md or .txt outputs to keep model context smaller.
Treat CLI, MCP, and spiders as operator surfaces layered on top of the same routing logic, not three unrelated features.
Route honestly to Playwright/Crawlee-style automation, external unblockers, or another extraction service when Scrapling is no longer the best fit.
References