Configure the browser tool for Clacky. Guides the user through Chrome or Edge setup, verifies the connection, and writes ~/.clacky/browser.yml. Supports macOS, Linux, and WSL (Windows Chrome/Edge via remote debugging). Trigger on: "browser setup", "setup browser", "配置浏览器", "browser config", "browser doctor". Subcommands: setup, doctor.
Configure the browser tool for Clacky. Config is stored at ~/.clacky/browser.yml.
Whenever you show the user a link to download or upgrade Chrome/Edge, pick the right one for their region instead of always using google.com.
Treat the user as in China when any of these is true:
echo $LANG contains zh_CN / zh_)install_browser.sh reported Region: china (visible in its output)curl -s --max-time 3 https://www.google.com -o /dev/null -w "%{http_code}" returns 000 while baidu.com worksUse these links accordingly:
When unsure, show both lines (label them "China:" and "Global:") so the user can pick.
| User says | Subcommand |
|---|---|
browser setup, 配置浏览器, setup browser | setup |
browser doctor | doctor |
If no subcommand is clear, default to setup.
setupCore Strategy: Progressive validation with clear next steps at each failure point.
Check Node.js version:
node --version 2>/dev/nullParse the version. If Node.js is missing or version < 20:
Run the bundled installer to automatically install Node.js:
bash ~/.clacky/scripts/install_browser.shIf the script exits 0 → Node.js is now installed. Proceed to Step 2.
If the script exits non-zero or doesn't exist:
❌ Node.js 20+ is required for browser automation.
Please install Node.js from: https://nodejs.org
Let me know when done and I'll continue.
Wait for user confirmation, then retry this step once. If still failing, stop.
Check if installed:
chrome-devtools-mcp --version 2>/dev/nullIf found and exits 0 → skip to Step 3.
If missing, run the bundled installer:
bash ~/.clacky/scripts/install_browser.shIf the script exits non-zero or doesn't exist:
❌ Failed to install chrome-devtools-mcp automatically.
Please run manually:
npm install -g chrome-devtools-mcp@latestLet me know when done.
Wait for user confirmation, then verify installation:
chrome-devtools-mcp --version 2>/dev/nullIf still missing after user confirms, stop with error message.
CRITICAL: Do NOT attempt browser() calls yet. First check if the browser is reachable using the API:
curl -s http://${CLACKY_SERVER_HOST}:${CLACKY_SERVER_PORT}/api/browser/statusThis returns JSON with daemon_running and enabled status. Ignore the result for now — we just need to see if the Clacky server is running.
Now attempt a browser connection to detect Chrome:
browser(action="status")If this succeeds → Chrome is running and reachable. Proceed to Step 4.
If this fails → The error message will indicate the specific issue. Parse it carefully:
This is the most common case. The system can't find Chrome's DevToolsActivePort file or the port is not reachable.
Action: Guide the user to enable remote debugging.
On macOS:
open "chrome://inspect/#remote-debugging" 2>/dev/null || echo "Please open chrome://inspect/#remote-debugging manually"Then tell the user:
I've tried to open the remote debugging page in Chrome.
Please follow these steps:
- Make sure Chrome or Edge is open
- Visit:
chrome://inspect/#remote-debugging(oredge://inspect/#remote-debugging)- Click "Allow remote debugging for this browser instance"
- You should see a brief connection message appear
Let me know when done ✅
On Linux (non-WSL):
Please follow these steps:
- Make sure Chrome or Edge is open
- Visit:
chrome://inspect/#remote-debugging- Click "Allow remote debugging for this browser instance"
Let me know when done ✅
On WSL:
Please follow these steps:
- Open Edge on Windows
- Visit:
edge://inspect/#remote-debugging- Click "Allow remote debugging for this browser instance"
Let me know when done ✅
After user confirms, retry the connection once:
browser(action="status")If still failing:
❌ Still unable to connect to Chrome.
Please make sure:
- Chrome/Edge is running
- You clicked "Allow remote debugging" in chrome://inspect/#remote-debugging
- No firewall is blocking localhost connections
Run
/browser-setup doctorto diagnose the issue in detail.
Fetch the online troubleshooting guide for additional help:
web_fetch(url="https://www.openclacky.com/docs/browser-troubleshooting")Stop here and suggest running doctor.
For any other error message, show it to the user and suggest:
❌ Browser connection failed:
This may be a temporary issue. Please try:
- Restart your browser
- Run
/browser-setupagainIf the problem persists, run
/browser-setup doctorfor detailed diagnostics.
Now that connection is established, get the version:
browser(action="act", kind="evaluate", js="navigator.userAgentData?.brands?.find(b => b.brand === 'Google Chrome' || b.brand === 'Microsoft Edge')?.version || navigator.userAgent.match(/Chrome\/(\d+)/)?.[1] || 'unknown'")Parse the version number:
⚠️ Your browser version is v${VERSION}. Version 146+ is recommended for best compatibility. Continuing anyway...
❌ Browser version v${VERSION} is too old. Please upgrade Chrome or Edge to v146+.
Use the download link from the Region-Aware Download Links section above (pick
ChinaorGlobalbased on the user's region).After upgrading, run
/browser-setupagain.
Call the API to save the configuration:
curl -s -X POST http://${CLACKY_SERVER_HOST}:${CLACKY_SERVER_PORT}/api/browser/configure \
-H "Content-Type: application/json" \
-d "{\"chrome_version\":\"${VERSION}\"}"If this fails (HTTP error or empty response), show a warning:
⚠️ Failed to save configuration via API. You may need to run
/browser-setupagain after restarting Clacky.
✅ Browser setup complete!
Chrome/Edge v${VERSION} is connected and ready to use.
You can now use browser automation features. Try asking me to:
- "Open google.com in the browser"
- "Take a screenshot"
- "Fill out a form on this page"
doctorCore Strategy: Diagnose don't fix. Check each component and report status.
This is a diagnostic tool, not a repair tool. It will check each component and tell you what's wrong, but won't automatically fix things.
Run all checks before showing results. Then show a summary report.
test -f ~/.clacky/browser.yml && cat ~/.clacky/browser.ymlParse the result:
enabled: false → ⏸️ Disabledenabled: true → ✅ Enablednode --version 2>/dev/nullchrome-devtools-mcp --version 2>/dev/nullcurl -s -f http://${CLACKY_SERVER_HOST}:${CLACKY_SERVER_PORT}/api/browser/statusdaemon_running statusOnly run this if steps 1-4 are OK.
browser(action="status")Only run this if step 5 succeeded.
browser(action="act", kind="evaluate", js="navigator.userAgent.match(/Chrome\/(\d+)/)?.[1] || 'unknown'")Show results in a clean table:
Browser Doctor — Diagnostic Report
═══════════════════════════════════════════════════════════════
Configuration
[✅] Config file found (~/.clacky/browser.yml)
[✅] Browser tool enabled
Dependencies
[✅] Node.js v22.1.0
[✅] chrome-devtools-mcp installed (v1.2.3)
Connection
[✅] Clacky server running
[✅] MCP daemon running
[✅] Chrome connected (3 tabs open)
[✅] Chrome v146
═══════════════════════════════════════════════════════════════
✅ All systems operational!If there are any ❌ or ⚠️ items, show them first in a Problems Found section, followed by specific Recommended Actions:
Browser Doctor — Diagnostic Report
═══════════════════════════════════════════════════════════════
⚠️ Problems Found
[❌] Chrome not connected
Error: Chrome/Edge is not running or remote debugging is not enabled
[❌] Chrome version v142 is too old
───────────────────────────────────────────────────────────────
Configuration
[✅] Config file found
[✅] Browser tool enabled
Dependencies
[✅] Node.js v22.1.0
[✅] chrome-devtools-mcp installed
Connection
[✅] Clacky server running
[❌] Chrome not connected
═══════════════════════════════════════════════════════════════
🔧 Recommended Actions
1. Enable remote debugging:
- Open Chrome and visit: chrome://inspect/#remote-debugging
- Click "Allow remote debugging for this browser instance"
2. Upgrade your browser:
- Chrome v142 is too old (need v146+)
- Pick the download link for the user's region from the
**Region-Aware Download Links** section at the top of this skill
(China users → google.cn; others → google.com).
After fixing these issues, run `/browser-setup` again to verify.Scenario 1: Config not found
[❌] Config file not found
🔧 Fix: Run `/browser-setup` to configure the browser tool.Scenario 2: Chrome not running
[❌] Chrome not connected
Error: Chrome/Edge is not running or remote debugging is not enabled
🔧 Fix:
1. Open Chrome or Edge
2. Visit: chrome://inspect/#remote-debugging
3. Click "Allow remote debugging"Scenario 3: MCP not installed
[❌] chrome-devtools-mcp not installed
🔧 Fix: Run `npm install -g chrome-devtools-mcp@latest`
(or run `/browser-setup` to install automatically)Scenario 4: Everything OK
✅ All systems operational!
The browser tool is ready to use.If any ❌ items are found, or the user reports a problem you cannot resolve with the above scenarios, fetch the latest troubleshooting guide:
web_fetch(url="https://www.openclacky.com/docs/browser-troubleshooting")Use the content from that page to provide up-to-date diagnosis and resolution steps. This online document is maintained separately and may contain newer solutions not listed here.
8a66b10
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.