โ† All skills
Tencent SkillHub ยท Developer Tools

Web Pilot

Search the web and read page contents without API keys. Use when you need to search via DuckDuckGo/Brave/Google (multi-page), extract readable text from URLs...

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

Search the web and read page contents without API keys. Use when you need to search via DuckDuckGo/Brave/Google (multi-page), extract readable text from URLs...

โฌ‡ 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
README.md, SKILL.md, scripts/browser_session.py, scripts/download_file.py, scripts/google_search.py, scripts/read_page.py

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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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 5 sections Open source page

Web Pilot

Four scripts, zero API keys. All output is JSON by default. Dependencies: requests, beautifulsoup4, playwright (with Chromium). Optional: pdfplumber or PyPDF2 for PDF text extraction. Install: pip install requests beautifulsoup4 playwright && playwright install chromium

1. Search the Web

python3 scripts/google_search.py "query" --pages N --engine ENGINE --engine โ€” duckduckgo (default), brave, or google Returns [{title, url, snippet}, ...]

2. Read a Page (one-shot)

python3 scripts/read_page.py "https://url" [--max-chars N] [--visible] [--format json|markdown|text] [--no-dismiss] --format โ€” json (default), markdown, or text Auto-dismisses cookie consent banners (skip with --no-dismiss)

3. Persistent Browser Session

python3 scripts/browser_session.py open "https://url" # Open + extract python3 scripts/browser_session.py navigate "https://other" # Go to new URL python3 scripts/browser_session.py extract [--format FMT] # Re-read page python3 scripts/browser_session.py screenshot [path] [--full] # Save screenshot python3 scripts/browser_session.py click "Submit" # Click by text/selector python3 scripts/browser_session.py search "keyword" # Search text in page python3 scripts/browser_session.py tab new "https://url" # Open new tab python3 scripts/browser_session.py tab list # List all tabs python3 scripts/browser_session.py tab switch 1 # Switch to tab index python3 scripts/browser_session.py tab close [index] # Close tab python3 scripts/browser_session.py dismiss-cookies # Manually dismiss cookies python3 scripts/browser_session.py close # Close browser Cookie consent auto-dismissed on open/navigate Multiple tabs supported โ€” open, switch, close independently Search returns matching lines with line numbers Extract supports json/markdown/text output

4. Download Files

python3 scripts/download_file.py "https://example.com/doc.pdf" [--output DIR] [--filename NAME] Auto-detects filename from URL/headers PDFs: extracts text if pdfplumber/PyPDF2 installed Returns {status, path, filename, size_bytes, content_type, extracted_text}

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
4 Scripts2 Docs
  • SKILL.md Primary doc
  • README.md Docs
  • scripts/browser_session.py Scripts
  • scripts/download_file.py Scripts
  • scripts/google_search.py Scripts
  • scripts/read_page.py Scripts