Web Access:
开源 Agent Skill,让 Claude Code / OpenClaw 等 Agent 获得完整联网能力:10个子Agent并行操作100个网页,自带登录态复用、站点经验沉淀、反爬适配。安装一行命令搞定。
What it is
Web Access is an open-source Agent Skill that gives Claude Code, OpenClaw, and compatible agents full browser automation capabilities. It enables 10 sub-agents to operate in parallel across different websites, handling tasks like content reading, form filling, and even social media publishing.
The skill targets AI power users and developers who need their agents to interact with the live web beyond simple search and fetch, including navigating complex UIs, handling login sessions, and operating across multiple platforms simultaneously.
How it saves time or tokens
Without Web Access, agents are limited to basic web search and single-page fetch. This skill eliminates the need to manually browse, copy content, or publish to platforms. The session reuse system means the agent remembers login states and site-specific interaction patterns, getting faster with repeated use. Parallel operation across 10 sub-agents means tasks that would take sequential browsing minutes complete in seconds.
How to use
- Install the skill from GitHub:
npx skills add eze-is/web-access
- The skill activates automatically in Claude Code when web tasks are requested.
- Ask your agent to perform web tasks such as researching across multiple sites, reading platform-specific content, or publishing to social media.
Example
Once installed, the agent can handle complex multi-site operations:
User: Research the top 5 articles about RAG pipelines
on Hacker News and summarize them.
Agent (with Web Access):
- Opens 5 HN article pages in parallel
- Reads full content from each linked article
- Summarizes findings into a structured report
The skill also supports browser automation patterns:
// The skill handles these internally:
// - Page navigation and content extraction
// - Form interaction and button clicks
// - Login session persistence
// - Anti-bot adaptation per site
Related on TokRepo
- Browser automation tools — related tools for web scraping and browser control
- Web scraping tools — dedicated scraping solutions
Common pitfalls
- Sites with aggressive anti-bot measures may block automated access; the skill adapts over time but initial attempts can fail
- Running 10 parallel sub-agents on a machine with limited RAM can cause browser crashes; ensure at least 8GB free memory
- Login session cookies expire; periodically re-authenticate for platforms that enforce short session lifetimes
Frequently Asked Questions
Web Access works with Claude Code, OpenClaw, and any agent framework that supports the Skills installation format. The skill installs via npx skills add and activates through the standard skill loading mechanism.
Yes. The skill uses a headless browser under the hood. Chromium is typically bundled or auto-downloaded during installation. On headless servers, you may need to install additional system dependencies for the browser runtime.
The skill can handle some simple CAPTCHAs automatically. Complex CAPTCHAs like hCaptcha or reCAPTCHA v3 may require manual intervention or a third-party solving service. The skill documents which CAPTCHA types it supports.
Web Access stores cookies and site-specific interaction patterns locally. When the agent visits a previously accessed site, it reuses the stored session instead of logging in again. This reduces friction and avoids triggering rate limits from repeated logins.
Use caution. The skill stores login sessions locally and operates autonomously. Avoid connecting accounts with elevated privileges or financial access unless you have reviewed the skill source code and understand the security implications.
Citations (3)
- Web Access GitHub— Web Access is an open-source Agent Skill for browser automation
- Anthropic Docs— Claude Code supports Skills for extending agent capabilities
- Playwright Docs— Browser automation with Playwright for headless control
Related on TokRepo
Discussion
Related Assets
Claude-Flow — Multi-Agent Orchestration for Claude Code
Layers swarm and hive-mind multi-agent orchestration on top of Claude Code with 64 specialized agents, SQLite memory, and parallel execution.
ccusage — Real-Time Token Cost Tracker for Claude Code
CLI that reads ~/.claude logs and breaks down Claude Code token spend by day, session, and project — pluggable into your statusline.
SuperClaude — Workflow Framework for Claude Code
Adds 16+ slash commands, 9 cognitive personas, and a smart flag system to Claude Code in one pipx install.