โ† All skills
Tencent SkillHub ยท Developer Tools

Scrape

Legal web scraping with robots.txt compliance, rate limiting, and GDPR/CCPA-aware data handling.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Legal web scraping with robots.txt compliance, rate limiting, and GDPR/CCPA-aware data handling.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, code.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 4 sections Open source page

Pre-Scrape Compliance Checklist

Before writing any scraping code: robots.txt โ€” Fetch {domain}/robots.txt, check if target path is disallowed. If yes, stop. Terms of Service โ€” Check /terms, /tos, /legal. Explicit scraping prohibition = need permission. Data type โ€” Public factual data (prices, listings) is safer. Personal data triggers GDPR/CCPA. Authentication โ€” Data behind login is off-limits without authorization. Never scrape protected content. API available? โ€” If site offers an API, use it. Always. Scraping when API exists often violates ToS.

Legal Boundaries

Public data, no login โ€” Generally legal (hiQ v. LinkedIn 2022) Bypassing barriers โ€” CFAA violation risk (Van Buren v. US 2021) Ignoring robots.txt โ€” Gray area, often breaches ToS (Meta v. Bright Data 2024) Personal data without consent โ€” GDPR/CCPA violation Republishing copyrighted content โ€” Copyright infringement

Request Discipline

Rate limit: Minimum 2-3 seconds between requests. Faster = server strain = legal exposure. User-Agent: Real browser string + contact email: Mozilla/5.0 ... (contact: you@email.com) Respect 429: Exponential backoff. Ignoring 429s shows intent to harm. Session reuse: Keep connections open to reduce server load.

Data Handling

Strip PII immediately โ€” Don't collect names, emails, phones unless legally justified. No fingerprinting โ€” Don't combine data to identify individuals indirectly. Minimize storage โ€” Cache only what you need, delete what you don't. Audit trail โ€” Log what, when, where. Evidence of good faith if challenged. For code patterns and robots.txt parser, see code.md

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • code.md Docs