Agent skill · AI & Agents

browserwing-admin

Manage and operate BrowserWing — an intelligent browser automation platform. Install dependencies, configure LLM, create/manage/execute automation scripts, use AI-driven exploration to generate scripts, browse the script marketplace, and troubleshoot issues.

MemTensorgithub.com/MemTensorGitHub ↗
claude-codeApache-2.0
Install
npx skills add MemTensor/MemOS --skill browserwing-admin --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 16 KB
Bundled scripts: none
Path: apps/memos-local-openclaw/skill/browserwing-admin/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 10,587 · +166 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# BrowserWing Admin Skill ## Overview BrowserWing is an intelligent browser automation platform that allows you to: - Record, create, and replay browser automation scripts - Use AI to autonomously explore websites and generate replayable scripts - Execute scripts via HTTP API or MCP protocol - Manage LLM configurations for AI-powered features **API Base URL:** `http://localhost:8080/api/v1` **Authentication:** Use `X-BrowserWing-Key: <api-key>` header or `Authorization: Bearer <token>` --- ## 1. Installing Google Chrome (Prerequisite) BrowserWing requires Google Chrome to be installed on the host machine. ### Linux (Debian/Ubuntu) ```bash wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list sudo apt-get update sudo apt-get install -y google-chrome-stable ``` ### macOS ```bash brew install --cask google-chrome ``` ### Windows Download and install from: https://www.google.com/chrome/ ### Verify Installation ```bash google-chrome --version # or on macOS: # /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --ver

What's inside
Steps it walks through
  1. Overview
  2. 1. Installing Google Chrome (Prerequisite)
  3. Linux (Debian/Ubuntu)
  4. macOS
  5. Windows
  6. Verify Installation
  7. Using Remote Chrome (Alternative)
  8. 2. LLM Configuration
  9. List LLM Configs
  10. Add LLM Config
  11. Test LLM Config
  12. Update LLM Config
  13. Delete LLM Config
  14. 3. AI Autonomous Exploration (Generate Scripts Automatically)
Commands it runs
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list
sudo apt-get update
sudo apt-get install -y google-chrome-stable
brew install --cask google-chrome
google-chrome --version
or on macOS:
google-chrome --remote-debugging-port=9222 --remote-debugging-address=0.0.0.0 --no-sandbox
curl -X GET 'http://localhost:8080/api/v1/llm-configs'
curl -X POST 'http://localhost:8080/api/v1/llm-configs' \
More from MemOS
All skills →
About this skill
What does the browserwing-admin skill do?

Manage and operate BrowserWing — an intelligent browser automation platform. Install dependencies, configure LLM, create/manage/execute automation scripts, use AI-driven exploration to generate scripts, browse the script marketplace, and troubleshoot issues.

How do I install it?

Run `npx skills add MemTensor/MemOS --skill browserwing-admin --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From MemTensor/MemOS, a repository with 10,587 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going