web-access
所有联网操作必须通过此 skill 处理,包括:搜索、网页抓取、登录后操作、网络交互等。 触发场景:用户要求搜索信息、查看网页内容、访问需要登录的网站、操作网页界面、抓取社交媒体内容(小红书、微博、推特等)、读取动态渲染页面、以及任何需要真实浏览器环境的网络任务。
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/aysun168/web-access-bakWhat This Skill Does
The web-access skill is the core interface for all networking capabilities within the OpenClaw agent ecosystem. It serves as a unified gateway for internet interaction, abstracting complex operations such as web search, data scraping, navigation of dynamic (JavaScript-heavy) pages, and authenticated browsing. By leveraging a Chrome DevTools Protocol (CDP) Proxy, this skill enables the agent to interact with the web as a human would—navigating, clicking buttons, filling forms, and handling cookies or sessions—ensuring it can bypass common anti-bot hurdles that plague static scrapers.
Installation
To install this skill, run the following command in your terminal:
clawhub install openclaw/skills/skills/aysun168/web-access-bak
Before initial execution, ensure your environment is configured by running the dependency check script:
bash ~/.claude/skills/web-access/scripts/check-deps.sh
Ensure you have Node.js 22+ installed and Chrome remote-debugging enabled (navigate to chrome://inspect/#remote-debugging and enable "Allow remote debugging for this browser instance").
Use Cases
- Complex Research: Searching for information across multiple sources and synthesizing findings while ignoring ad-heavy or irrelevant content.
- Authenticated Tasks: Accessing private information on platforms that require login, such as your personal dashboard, internal company wikis, or subscription-based content.
- Social Media Extraction: Reliably capturing data from sites with complex dynamic rendering or strict anti-scraping measures like X (Twitter), Xiaohongshu, or Weibo.
- Automated Workflow: Navigating multi-step web forms or performing repetitive GUI interactions where programmatic API calls are unavailable.
Example Prompts
- "Find the latest market reports on renewable energy for the last quarter and summarize the key findings for me."
- "Go to my personal dashboard at [website URL], login, and export my last three months of transaction records to a CSV."
- "Navigate to this Xiaohongshu post and extract all comments, then filter for those that mention product pricing concerns."
Tips & Limitations
- The Philosophy of Human Browsing: When using this skill, treat the AI as a human assistant. Don't over-plan. Start with a goal, observe the DOM structure using
/eval, and react based on what you actually see on the page. - Efficiency vs. Accuracy: Prefer Jina (
r.jina.ai) for summarizing long articles or blog posts to save tokens. Use CDP only when high-fidelity interaction or state maintenance (login) is required. - Reliability: Always prefer links found within the page (DOM
href) over manually constructed URLs to ensure you carry over necessary session parameters. - Safety: Since this skill operates via a live browser, ensure you do not use it on untrusted websites that could perform malicious UI actions. Keep the agent focused on specific, verifiable tasks.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-aysun168-web-access-bak": {
"enabled": true,
"auto_update": true
}
}
}Tags(AI)
Flags: network-access, external-api
Related Skills
skill-vetter
Security-first skill vetting for AI agents. Use before installing any skill from ClawdHub, GitHub, or other sources. Checks for red flags, permission scope, and suspicious patterns.
tavily-search
Use Tavily API for real-time web search and content extraction. Use when: user needs real-time web search results, research, or current information from the web. Requires Tavily API key.
baidu-search
Search the web using Baidu AI Search Engine (BDSE). Use for live information, documentation, or research topics.
Self-Improving + Proactive Agent
Self-reflection + Self-criticism + Self-learning + Self-organizing memory. Agent evaluates its own work, catches mistakes, and improves permanently. Use when (1) a command, tool, API, or operation fails; (2) the user corrects you or rejects your work; (3) you realize your knowledge is outdated or incorrect; (4) you discover a better approach; (5) the user explicitly installs or references the skill for the current task.