
Web Access
Run browser-backed search and site tasks through your existing Chrome session from OpenClaw without rebuilding login state on every request.
Install
npx skills add https://github.com/ysyyrps777/web-access-openclaw --skill web-accessWhat is this skill?
- OpenClaw custom skill packaging of upstream eze-is/web-access
- Browser-session-backed automation via Chrome CDP
- Session reuse for logged-in or cookie-dependent sites
- Validated on Windows in an OpenClaw environment per adapter notes
- MIT upstream with explicit attribution to 一泽 Eze
Adoption & trust: 1 installs on skills.sh; 1/3 security scanners passed (skills.sh audits); trending (+100% hot-view momentum).
Recommended Skills
Journey fit
Research is the canonical shelf because the skill’s core job is fetching and interacting with the live web when API-only research is insufficient. Research subphase covers competitor pages, docs behind soft gates, and dynamic sites—exactly where session-reuse browser automation helps.
Common Questions / FAQ
Is Web Access safe to install?
skills.sh reports 1 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Web Access
# Attribution This repository adapts the upstream project below for use as an OpenClaw custom skill: - Original project: `eze-is/web-access` - Upstream URL: https://github.com/eze-is/web-access - Original author: 一泽 Eze - Upstream license: MIT What this adaptation changed: - prepared the repository as an OpenClaw custom skill folder - removed non-skill packaging artifacts from the published skill tree - validated runtime behavior in an OpenClaw environment on Windows - verified browser-session-backed automation through Chrome CDP This adaptation should be understood as a packaging/integration layer for OpenClaw usage, not a replacement for the upstream project's authorship or identity. MIT This repository contains an adaptation of the upstream project below: https://github.com/eze-is/web-access Original project author: 一泽 Eze Refer to the upstream project for the original license text and provenance. This repository preserves attribution and presents an OpenClaw-oriented adaptation/integration of that work. # web-access-openclaw An OpenClaw-adapted version of [`eze-is/web-access`](https://github.com/eze-is/web-access), packaged as a custom OpenClaw skill for browser-backed web tasks with session reuse. ## What this is This repository adapts the original `web-access` skill so it can be dropped into OpenClaw's custom skills directory and used for real browser automation through the user's existing Chrome session. It is intended for tasks such as: - searching and reading dynamic websites - using logged-in browser sessions via CDP - interacting with real web UIs instead of static fetches - handling sites that require JavaScript, authentication, or human-like flows ## What was adapted for OpenClaw This repo keeps the skill focused and publishable as an OpenClaw custom skill: - cleaned skill layout (`SKILL.md`, `scripts/`, `references/`) - removed Claude plugin packaging artifacts from the published skill folder - validated on Windows with OpenClaw + Chrome remote debugging - confirmed CDP proxy startup and browser-session reuse - tested a real browser-session flow against Xiaohongshu creator publishing ## Install in OpenClaw Copy this folder into your OpenClaw custom skills directory: ```text ~/.openclaw/workspace/skills/web-access ``` OpenClaw already loads custom skills from the workspace skills directory when configured with: ```json { "skills": { "load": { "extraDirs": ["~/.openclaw/workspace/skills"] } } } ``` ## Requirements - Node.js 22+ - Google Chrome with remote debugging enabled - A live Chrome profile/session for sites that need login - OpenClaw running on the same machine ## Chrome setup Enable Chrome remote debugging from: ```text chrome://inspect/#remote-debugging ``` Enable **Allow remote debugging for this browser instance**. ## How it works The skill uses a local CDP proxy to connect to the user's normal Chrome browser, so it can: - reuse logged-in sessions - open background tabs - read dynamic DOM content - click, scroll, upload files, and submit forms - operate on sites that do not work well through static scraping alone ## Tested status Validated locally on Windows with OpenClaw: - Node.js detected successfully - Chrome remote debugging reachable - CDP proxy reported ready - browser targets visible through proxy - logged-in session reuse confirmed - Xiaohongshu creator flow tested, including text-to-image posting and publish success ## Safety notes This skill can operate inside real logged-in browser sessions. That is powerful and risky. Recommended practice: - require explicit user confirmation before posting, publishing, submitting, deleting, or changing account data - prefer read-only inspection before write actions - avoid touching existing user tabs unless necessary ## Upstream source and attribution This adaptation is based on the original project by **一泽 Eze**: - Upstream: https://github.com/eze-is/web-access The original project is MIT licensed. Th