js-eyes
v2.8.2
Published
JS Eyes user CLI for local server management, diagnostics, and extension downloads
Maintainers
Readme
JS Eyes
Browser Automation for AI Agent Frameworks
Give your AI agents real eyes into the browser — WebSocket-powered automation with native OpenClaw support
Quick Install
Linux / macOS:
curl -fsSL https://js-eyes.com/install.sh | bashWindows (PowerShell):
irm https://js-eyes.com/install.ps1 | iexThis downloads the skill bundle, installs dependencies, and prints the OpenClaw registration path. The standard ClawHub/OpenClaw path expects Node.js 22+ for plugin mode. See Manual Installation for other options.
Optional: Auto-sync token to browser extensions
After installing the CLI (npm i -g js-eyes or as part of the skill install flow), register a Native Messaging host so the extension can read server.token locally without manual copy-paste:
npx js-eyes native-host install --browser allSee docs/native-messaging.md for details and the threat model — the NM path defends against external web-page attacks only; a compromised local device is out of scope.
Introduction
JS Eyes is a browser extension + WebSocket server that gives AI agents full browser automation capabilities. It connects to AI agent frameworks (OpenClaw, DeepSeek Cowork, or custom) and provides tools for tab management, content extraction, script execution, cookie access, and more.
Browser Extension <── WebSocket ──> JS-Eyes Server <── WebSocket ──> AI Agent (OpenClaw)
(Chrome/Edge/FF) (packages/server-core) (openclaw-plugin)Monorepo Layout
JS Eyes now uses a publish-oriented monorepo layout:
| Path | Purpose |
|------|---------|
| apps/cli | Public js-eyes npm CLI |
| apps/native-host | Browser Native Messaging host for auto-injecting server.token |
| packages/protocol | Shared protocol constants and compatibility matrix |
| packages/runtime-paths | Runtime directories and filesystem layout |
| packages/config | CLI config loading and persistence |
| packages/client-sdk | Browser automation SDK for Node.js / skills |
| packages/server-core | HTTP + WebSocket server core |
| openclaw-plugin | Optional OpenClaw plugin component |
| packages/devtools | Internal build/release tooling |
| extensions/* | Browser extension source assets for Chrome/Edge and Firefox |
| skills/* | Independent extension skills built on @js-eyes/client-sdk |
The source repository no longer keeps root-level compatibility trees like server/, clients/, or cli/. The openclaw-plugin/ directory is now a first-class optional component at the repo root.
Supported Agent Frameworks
| Framework | Description | |-----------|-------------| | apps/cli + packages/server-core | Lightweight built-in server and published npm CLI | | OpenClaw + openclaw-plugin | Registers as OpenClaw plugin — 9 AI tools, background service, CLI commands | | DeepSeek Cowork | Full-featured agent framework (separate WS port, HMAC auth, SSE, rate limiting) |
Features
- Real-time WebSocket Communication — Persistent connection with server
- Auto Server Discovery — Automatic capability detection and endpoint configuration
- Tab Management — Auto-sync tab information to server
- Remote Control — Remote open/close tabs, execute scripts
- Content Retrieval — Get page HTML, text, links
- Cookie Management — Auto-retrieve and sync page cookies
- Code Injection — JavaScript execution and CSS injection
- Health Check & Circuit Breaker — Service health monitoring with automatic circuit breaker protection
- Rate Limiting & Deduplication — Request rate limiting and deduplication for stability
- Native Messaging Token Sync (2.4.0+) — Browser extensions auto-fetch
server.tokenand HTTP URL from the local CLI via Native Messaging; no manual copy-paste in the default flow - Bearer Token Authentication — WebSocket upgrades authenticated via
Sec-WebSocket-Protocol: bearer.<token>and?token=<token>(loopback only). Anonymous mode gated bysecurity.allowAnonymous - Extension Skills — Discover and install higher-level skills (e.g. X.com search) on top of base automation
Supported Browsers
| Browser | Version | Manifest | |---------|---------|----------| | Chrome | 88+ | V3 | | Edge | 88+ | V3 | | Firefox | 58+ | V2 |
Download
Download the latest release from GitHub Releases:
- Chrome/Edge Extension: release asset
js-eyes-chrome-v<version>.zip - Firefox Extension: release asset
js-eyes-firefox-v<version>.xpi
Or download directly from js-eyes.com. The Chrome and Firefox buttons on the website open the latest GitHub release so they always point at the current published assets.
Manual Installation
Browser Extension
Chrome / Edge
- Open browser and navigate to
chrome://extensions/(oredge://extensions/) - Enable "Developer mode" in the top right
- Click "Load unpacked"
- Select the
extensions/chromefolder
Firefox
Signed XPI (recommended): drag and drop the .xpi file into Firefox.
Temporary (development): open about:debugging > This Firefox > Load Temporary Add-on > select extensions/firefox/manifest.json.
OpenClaw Skill Bundle
If you prefer manual setup instead of the one-command install:
- Download
js-eyes-skill.zipfrom js-eyes.com, or the versionedjs-eyes-skill-v<version>.zipasset (e.g.js-eyes-skill-v2.6.3.zip) from GitHub Releases - Extract to a directory (for example
./skills/js-eyes) - Run
npm installinside the extracted folder with Node.js 22 or newer - Register the plugin in the resolved OpenClaw config file (see OpenClaw Plugin)
npm link Development Mode
If you want to use the public js-eyes command shape while debugging the current source tree, you can link the published CLI workspace into your global npm bin directory:
cd /path/to/your/js-eyes-repo
npm install
cd apps/cli
npm linkAfter that, js-eyes resolves to the local apps/cli workspace, so changes in apps/cli and the runtime workspace packages under packages/* are picked up immediately.
On Windows, replace which js-eyes with where js-eyes.
which js-eyes
js-eyes --help
js-eyes doctorIf you also want the linked CLI to run skills directly from this repository instead of the default runtime directory, point skillsDir at the repo's skills/ folder:
js-eyes config set skillsDir "/absolute/path/to/js-eyes/skills"
js-eyes skills enable js-x-ops-skill
js-eyes skill run js-x-ops-skill search "AI agent" --max-pages 2To return to a normal global install later:
cd /path/to/your/js-eyes-repo/apps/cli
npm unlink
npm uninstall -g js-eyesUsage
1. Start a Compatible Server
Option A — Built-in lightweight server:
npm run server
# Starts on http://localhost:18080 (HTTP + WebSocket)Or, after publishing the CLI:
js-eyes server start
js-eyes doctorOption B — Use as an OpenClaw plugin (see OpenClaw Plugin section below).
Option C — Use a supported agent framework such as DeepSeek Cowork.
2. Configure Connection
Default flow (2.4.0+, recommended) — install the Native Messaging host once and the extension auto-syncs both the server URL and server.token:
npx js-eyes native-host install --browser allOpen the popup and click Sync Token From Host (or simply wait for the auto-sync on startup) — the connection status should flip to "Connected" without any manual input.
Manual fallback — if Native Messaging is unavailable, expand Advanced in the popup and:
- Enter the server HTTP address (e.g.
http://localhost:18080) and click Connect - Paste
server.tokencontents into Server Token (2.2.0+) (runjs-eyes server token show --revealto retrieve it) and click Save
Auto-Connect: the extension reconnects automatically on startup and after disconnections (exponential backoff); toggle it off under Advanced if you need manual control.
2.2.0 is security-hardened by default. Connections without a matching server token are rejected unless you set
security.allowAnonymous=trueinconfig.json. See SECURITY.md and the 2.2.0 migration guide.2.3.0 adds a non-interactive policy engine (
task origin+taint+egress allowlist) in front of every sink. Defaultenforcement=softkeeps existing workflows working; see the 2.3.0 migration guide.
3. Verify Connection
openclaw js-eyes statusExpected output shows server uptime, connected extensions, and tab count.
4. Manage Skills from the CLI
js-eyes now acts as the host for extension skills as well:
# List remote + installed skills (shows "Update available" when the registry is newer)
js-eyes skills list
# Install and enable a skill
js-eyes skills install js-x-ops-skill
js-eyes skills enable js-x-ops-skill
# Update a single sub-skill to the latest version published in the registry
js-eyes skills update js-x-ops-skill
# Update every primary-source sub-skill in one shot
js-eyes skills update --all
# Preview what would change without touching the installed skill
js-eyes skills update js-x-ops-skill --dry-run
# Run a skill command through the js-eyes host
js-eyes skill run js-x-ops-skill search "AI agent" --max-pages 2Skill install state is tracked by the JS Eyes runtime config. OpenClaw only needs to load the main js-eyes plugin; the main plugin auto-discovers enabled local skills from the same runtime skills/ directory when it starts.
skills update preserves the user's skillsEnabled state and verifies the downloaded bundle against the registry's sha256. If the registry entry declares minParentVersion higher than the installed js-eyes parent skill, the update is blocked with exit code 2 and the operator is asked to upgrade the parent first.
Starting with 2.2.0,
install_skillonly writes a plan underruntime/pending-skills/<id>.json. Operators finalize withjs-eyes skills approve <id>and enable withjs-eyes skills enable <id>. See SECURITY.md.
Security Posture (2.8.2)
The table below summarises the attack surface js-eyes exposes, what the stock
install ships with, and the single-knob tightening path for each. Every row
links to a section of SECURITY_SCAN_NOTES.md that
explains the trade-off in full.
| Risk item | Current default | How to tighten | Config switch | Verify |
| --- | --- | --- | --- | --- |
| Host-side raw JavaScript eval (execute_script family) | allowRawEval=false (SKILL.md deployment opts in to true) | Leave false; run in Safe Default Mode — click / type / open_url / screenshot still work | security.allowRawEval in ~/.js-eyes/config/config.json (notes) | js-eyes doctor --json \| jq '.security.allowRawEval' |
| Plugin auto-starts embedded WS/HTTP server | autoStartServer=true, loopback-only bind, token required | Set autoStartServer=false and start the server manually with js-eyes server start | plugins.entries["js-eyes"].config.autoStartServer in openclaw.json (notes) | js-eyes doctor → Server section |
| Single OpenClaw tool exposes the JS Eyes router | tools.alsoAllow: ["js-eyes"] + per-action confirm gate on sensitive actions | Keep only js-eyes allowed; tighten individual actions with security.toolPolicies | tools.allow / security.toolPolicies (notes) | js-eyes consent list + js-eyes doctor |
| extraSkillDirs skipped integrity verification | New switch off — 2.6.1 behaviour preserved | Set security.verifyExtraSkillDirs=true; skills link then auto-snapshots, skills relink after reviewed edits | security.verifyExtraSkillDirs in ~/.js-eyes/config/config.json (notes) | js-eyes doctor prints integrity: verified \| drifted \| missing-snapshot per extra; js-eyes doctor --json exposes it on each skill row |
| Native-host install path runs remote code (npx) | npx js-eyes native-host install remains supported (does not seed the server token) | Use the local launcher bin/js-eyes-native-host-install.sh \| .ps1 — zero network and 2.6.3+ also runs js-eyes server token init so popup Sync Token From Host works on first try | none — doc-only change in 2.6.2 (notes) | node apps/cli/bin/js-eyes.js native-host status + js-eyes server token show |
| Server token handling | Generated on demand, file 0600 / Windows icacls, bearer on WS + HTTP | Keep defaults; rotate periodically; never set allowAnonymous=true in production | security.allowAnonymous, js-eyes server token rotate (notes) | js-eyes doctor → Token section; js-eyes audit tail |
| npm install path (installSkillDependencies) | spawnSync with whitelisted argv, shell:false, filtered env (safe-npm.js) | Enforce strict lockfile usage so remote tarballs must match | plugins.entries["js-eyes"].config.requireLockfile=true (notes) | npm test -- test/safe-npm.test.js |
Run js-eyes doctor --json to get the live machine-readable snapshot of every
row above; pipe to jq or your auditor's tool of choice.
5. Security Quickstart (2.2.0+ / 2.3.0+)
# Generate / inspect / rotate the local server token
js-eyes server token init
js-eyes server token show --reveal
js-eyes server token rotate
# Tail the audit log (JSONL)
js-eyes audit tail
# Review and approve sensitive tool calls awaiting consent
js-eyes consent list
js-eyes consent approve <consent-id>
# 2.3.0+: Policy engine enforcement and pending-egress
js-eyes security show
js-eyes security enforce <off|soft|strict> # soft is the 2.3.0 default
js-eyes egress list
js-eyes egress approve <id> # allow this destination for the session
js-eyes egress allow <domain> # permanent allowlist entry
# Two-step skill install with integrity pinning
js-eyes skills install js-x-ops-skill # writes a plan; prompts to approve
js-eyes skills approve js-x-ops-skill
js-eyes skills enable js-x-ops-skill
js-eyes skills verify # re-check .integrity.json across installed skills
# One-shot posture check (includes 2.3 policy engine report)
js-eyes doctorSecure defaults in 2.2.0:
- WebSocket/HTTP require a bearer token and an allow-listed
Origin; non-loopback host binds requiresecurity.allowRemoteHost=true. execute_script,get_cookies*,upload_file*,inject_css, andinstall_skilldefault to theconfirmpolicy and require a consent approval.- Raw
eval-style scripts are refused unlesssecurity.allowRawEval=true. The host pushes this value to the extension atinit_ackhandshake, so a single toggle in~/.js-eyes/config/config.jsonis enough; thechrome.storage.local.allowRawEvalkey is retained only as an explicit opt-out override for hardened deployments. Preferexecute_actionfor declarative actions when possible. config.json,server.token,audit.log, and pending-consents files are written at0600on POSIX and locked viaicaclson Windows.
New in 2.3.0:
- A non-interactive policy engine (
task origin,taint,egress allowlist) is wired throughBrowserAutomationand server-side dispatch. Defaultenforcement=softmeans no hard rejects — violatingopenUrlcalls becomepending-egressrecords, other sinks returnPOLICY_SOFT_BLOCKfor the agent to re-plan. - Every returned cookie is tagged with a canary (
__canary: "jse-c-..."); sinks that serialize a canary or a raw cookie value are soft-blocked. - HTTP responses from
server-corenow carryContent-Security-Policy: default-src 'none',X-Content-Type-Options: nosniff,X-Frame-Options: DENY.
Compatibility escape hatches (use sparingly):
security.allowAnonymous=trueaccepts unauthenticated clients during a migration — every anonymous session is audited andjs-eyes doctorwill flag it.security.toolPolicies.<tool>=allowrestores pre-2.2.0 behavior for a specific tool.js-eyes security enforce off(orJS_EYES_POLICY_ENFORCEMENT=off) turns the 2.3 policy engine into audit-only mode.
CLI Runtime Directory
By default, the published js-eyes CLI now stores config, logs, downloads, cache, and installed skills under ~/.js-eyes on macOS, Linux, and Windows.
- macOS:
~/.js-eyes - Linux:
~/.js-eyes - Windows:
%USERPROFILE%/.js-eyes
If an older installation exists in a legacy OS-specific runtime directory, js-eyes migrates it automatically on first run:
- macOS:
~/Library/Application Support/js-eyes - Linux:
$XDG_CONFIG_HOME/js-eyesor~/.config/js-eyes - Windows:
%APPDATA%/js-eyes
If JS_EYES_HOME is set, that override still takes precedence and automatic migration is skipped.
OpenClaw Plugin
JS Eyes registers as an OpenClaw plugin, exposing one js-eyes tool that routes browser automation and extension-skill actions.
For native plugin loading, follow the OpenClaw runtime requirements for external plugins (ESM + Node 22+).
What It Provides
- Background Service — Automatically starts/stops the built-in WebSocket server
- 1 AI Tool —
js-eyes, with path-style actions for browser automation and skill management - CLI Commands —
openclaw js-eyes status,openclaw js-eyes tabs,openclaw js-eyes server start/stop
| Action | Description |
|--------|-------------|
| browser/get-tabs | List all open browser tabs with ID, URL, title |
| browser/list-clients | List connected browser extension clients |
| browser/open-url | Open a URL in a new or existing tab |
| browser/close-tab | Close a tab by ID |
| browser/get-html | Get full HTML content of a tab |
| browser/execute-script | Run JavaScript in a tab and return the result |
| browser/get-cookies | Get all cookies for a tab's domain |
| skills/discover | Query the skill registry for available extension skills |
| skills/plan-install | Download, verify, and stage an extension-skill install plan |
Setup
Use this order for the standard ClawHub/OpenClaw install path:
- Install the browser extension in Chrome/Edge/Firefox (same as above)
- Run
npm installin the skill root with Node.js 22+ - Resolve the OpenClaw config path using this precedence:
OPENCLAW_CONFIG_PATHOPENCLAW_STATE_DIR/openclaw.jsonOPENCLAW_HOME/.openclaw/openclaw.json- default
~/.openclaw/openclaw.json
- Add the plugin to the resolved OpenClaw config:
{
"plugins": {
"load": {
"paths": ["/path/to/skills/js-eyes/openclaw-plugin"]
},
"entries": {
"js-eyes": {
"enabled": true,
"config": {
"serverPort": 18080,
"autoStartServer": true
}
}
}
}
}- Restart or refresh OpenClaw — the server launches automatically and AI agents can control the browser via registered tools.
For local source-repo development, point plugins.load.paths directly to the repo-root openclaw-plugin directory inside your clone.
Plugin Configuration
| Option | Type | Default | Description |
|--------|------|---------|-------------|
| serverHost | string | "localhost" | Server listen address |
| serverPort | number | 18080 | Server port |
| autoStartServer | boolean | true | Auto-start server when plugin loads |
| requestTimeout | number | 1800 | Request timeout in seconds (default 30 minutes; server reads this value on startup) |
| skillsRegistryUrl | string | "https://js-eyes.com/skills.json" | URL of the extension skill registry |
| skillsDir | string | "" | Primary skill install directory — empty = auto-detect skills/ under skill root. All install / approve / uninstall / integrity checks target this directory only. |
| extraSkillDirs | string[] | [] | Additional read-only skill sources. Each entry can be a single skill directory (contains skill.contract.js) or a parent directory (scanned 1 level deep). Primary wins on id conflicts; extras skip integrity checks. See deployment mode D. |
Compatibility Matrix
js-eyes doctor now prints the local package versions, server protocol version, and compatibility status. The current expected matrix is:
| Surface | Expected version |
|---------|------------------|
| Protocol | 1.0 |
| CLI | 2.8.2 |
| Browser extension assets | 2.8.2 |
| @js-eyes/server-core | 2.8.2 |
| @js-eyes/client-sdk | 2.8.2 |
| openclaw-plugin | 2.8.2 |
| Skills using @js-eyes/client-sdk | 2.8.2 |
Extension Skills
JS Eyes supports extension skills — higher-level capabilities built on top of the base browser automation. The main ClawHub bundle is intentionally minimal and does not preinstall child skills. Each extension skill adds new AI tools and can be installed independently after the base stack is working.
The recommended hosting model is now:
- extend the
js-eyesCLI with skill-specific commands - let the main
js-eyesOpenClaw plugin discover and register enabled local skills during startup
Migration note: child skills no longer ship their own openclaw-plugin wrapper files. OpenClaw should keep loading only the main js-eyes plugin, which then auto-loads enabled local skills.
| Skill | Description | Tools |
|-------|-------------|-------|
| js-x-ops-skill | X.com (Twitter) content operations — search content, browse timelines and feed, read post details, and handle posting flows | x_search_tweets, x_get_profile, x_get_post, x_get_home_feed |
Discovering Skills
AI agents can discover available skills automatically:
# Via the js-eyes AI tool
tool: js-eyes
action: skills/discover
# Via the skill registry
https://js-eyes.com/skills.jsonInstalling Extension Skills
One-command install (and upgrade):
# Linux / macOS (arg)
curl -fsSL https://js-eyes.com/install.sh | bash -s -- js-x-ops-skill
# Linux / macOS (env var, same as PowerShell)
curl -fsSL https://js-eyes.com/install.sh | JS_EYES_SKILL=js-x-ops-skill bash
# Upgrade every installed sub-skill in one go
curl -fsSL https://js-eyes.com/install.sh | JS_EYES_SKILL=all bash
# Windows PowerShell
$env:JS_EYES_SKILL="js-x-ops-skill"; irm https://js-eyes.com/install.ps1 | iexRe-running install.sh for a sub-skill that is already installed is safe:
the script reads the local package.json version, compares it against the
registry, and reports up to date when they match. When the registry is
newer it upgrades in place (no Overwrite? prompt) after verifying the
bundle sha256. JS_EYES_SKILL=all iterates every directory under
<install-dir>/js-eyes/skills/.
Via AI agent: the agent calls the js-eyes tool with action: skills/plan-install and the skill ID in args. It downloads, verifies, and stages an install plan; finalize with js-eyes skills approve <id> and js-eyes skills enable <id>. The main plugin then hot-loads the skill via SkillRegistry + chokidar within ~300 ms — no OpenClaw restart needed for new skill actions.
Via the js-eyes CLI:
js-eyes skills install js-x-ops-skill
js-eyes skills enable js-x-ops-skill
js-eyes skill run js-x-ops-skill search "AI agent" --max-pages 2Manual: download the skill zip from js-eyes.com/skills/js-x-ops-skill/, extract to skills/js-eyes/skills/js-x-ops-skill/, run npm install, then js-eyes skills enable js-x-ops-skill. A running OpenClaw + js-eyes plugin will hot-load the skill via the config watcher; call js-eyes skills reload or action: skills/reload through the js-eyes tool to force a reload.
Authoring your own JS Eyes Skill
Custom skills don't have to live inside this repository. Two ways to hook them in:
- Point
skillsDirat the parent folder that contains your skills (js-eyes takes full lifecycle ownership —install/approve/verifyall act on this dir). - Keep the default
skillsDirand add individual skill folders (or parent folders) toextraSkillDirs. Extras are read-only: they're discovered and routed throughjs-eyes, but js-eyes never mutates them.
The fastest path for an external custom skill is zero-restart: js-eyes skills link /abs/path/to/my-skill appends the directory to extraSkillDirs and triggers an in-memory registry.reload() on the running plugin. js-eyes skills unlink <path> / js-eyes skills reload (or action: skills/reload through the js-eyes tool) cover the rest of the lifecycle. See deployment.zh.md §5.3.
See:
- docs/dev/js-eyes-skills/ — authoring guide,
skill.contract.jsreference, deployment modes (Chinese first). - examples/js-eyes-skills/js-hello-ops-skill/ — minimal runnable sample (one tool, no side effects).
The runtime packages are published to the js-eyes npm organization under the @js-eyes/* scope, so external skills can depend on them directly:
npm install @js-eyes/client-sdk @js-eyes/config @js-eyes/skill-recording
@js-eyes/*scope is reserved for official packages published by this repository's maintainers. Third-party JS Eyes Skills and integrations must publish under their own npm scope (e.g.@acme/js-my-cool-skill) or an unscoped name, never under@js-eyes/*. See docs/dev/js-eyes-skills/README.md for the full governance rule.
Terminology: JS Eyes Skills refers to this repo's
skill.contract.jscontract. Theskills/namespace under docs/dev/ and examples/ is reserved for future compatibility with generic Skills specs (Anthropic Agent Skills, Cursor Skills, etc.). See docs/README.md for the full namespace map.
Building
Prerequisites
- Node.js >= 22
- Run
npm installin the project root npm run build:firefoxrequiresAMO_API_KEYandAMO_API_SECRET(for Mozilla signing). The repository now installsweb-extlocally vianpm install, so no separate global install is required.
Build Commands
# Build the main ClawHub/OpenClaw skill bundle only
npm run build:skill
# Build site (docs/) + skill bundles + skills.json registry
npm run build:site
# Build all release artifacts
npm run build
# Build Chrome extension only
npm run build:chrome
# Build and sign Firefox extension
npm run build:firefox
# Bump version across all manifests (note: this does NOT touch skills/*/package.json —
# sub-skills keep their own independent versions so users can upgrade them via
# `js-eyes skills update` without reinstalling the parent bundle)
npm run bump -- 2.8.2Output files are saved to the dist/ directory. The main skill bundle is staged under dist/skill-bundle/js-eyes/, published to docs/js-eyes-skill.zip, and versioned for releases as dist/js-eyes-skill-v<version>.zip.
For ClawHub publishing, use the generated bundle output (dist/skill-bundle/js-eyes/ or the versioned zip in dist/) as the source of truth instead of publishing from the monorepo root.
For the maintainer release checklist (develop -> main, npm CLI publish, GitHub Release, Firefox signed XPI, and AMO public submission), see RELEASE.md.
Smoke Test
Use this checklist after a fresh ClawHub install:
cd ./skills/js-eyes && npm install- Confirm the resolved
openclaw.jsoncontains:plugins.load.paths-> absolute path to./skills/js-eyes/openclaw-pluginplugins.entries["js-eyes"].enabled->true
- Restart or refresh OpenClaw
- Run
openclaw js-eyes status - Install the browser extension, connect it to
http://localhost:18080, then runopenclaw js-eyes tabs - Ask the agent to call
js-eyeswithaction: browser/get-tabs - Ask the agent to call
js-eyeswithaction: skills/discover - Install one child skill with
action: skills/plan-install(orjs-eyes skills link <path>for external skills). The main plugin hot-reloads within ~300 ms via the config watcher; confirm viaaction: skills/reloador theHot-loaded skill/addedentries in the gateway logs.
Troubleshooting
| Symptom | Fix |
|---------|-----|
| Extension shows "Disconnected" | Check openclaw js-eyes status; ensure autoStartServer is true |
| browser/get-tabs returns empty | Click extension icon, verify address, click Connect |
| Cannot find module 'ws' | Run npm install in the skill root |
| Tools not appearing in OpenClaw | Ensure plugins.load.paths points to the main openclaw-plugin subdirectory and the target child skill is not disabled in the JS Eyes host config |
| Plugin path not found (Windows) | Use forward slashes in JSON, e.g. C:/Users/you/skills/js-eyes/openclaw-plugin |
| Agent returns pending-egress / policy-blocked text | The server policy engine blocked the URL or operation before it reached the browser. Run js-eyes security show to inspect egressAllowlist and taskOrigin; then use js-eyes egress list, js-eyes egress approve <id>, or js-eyes egress allow <domain> as appropriate. This is different from extension disconnects and consent gating. |
Related Projects
- OpenClaw — AI agent framework with extensible plugin system
- DeepSeek Cowork — AI agent framework with full-featured browser automation support
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Author
Created by @imjszhang
Browser automation for any AI agent framework
