Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

agent-browser-localAgent 浏览器本地

Agent Skill

agent-browser-local 用于处理浏览器自动化、网页检查和页面信息提取,适合在 Codex、Claude、Cursor、Gemini CLI 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

737

周安装

31

GitHub Stars

1

下载量

258
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:agent-browser-local(Agent 浏览器本地)
来源仓库:https://github.com/nwparker/agent-browser-local
仓库路径:skills/agent-browser-local
安装命令:
npx skills add https://github.com/nwparker/agent-browser-local --skill agent-browser-local
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/nwparker/agent-browser-local --skill agent-browser-local

简介

agent-browser-local 用于处理浏览器自动化和网页信息提取。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中让 Agent 打开页面或验证前端流程时使用。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写操作。
  • 当前暂无详细功能说明,需进一步查阅来源仓库获取完整信息。

SKILL.md

Browser Selection

  • Default: Use Microsoft Edge unless the user explicitly asks for Chrome, Chromium, or Comet.
  • User choice: If the user says "use Chrome", "with Chromium", "in Comet", etc., use that browser instead.

CRITICAL:

DO NOT kill the browser process (pkill) unless absolutely necessary. Killing the process will close all of the user's open windows and tabs.

Always check if CDP is already active before attempting to launch or restart the browser.

1. Check if Already Running (PREFERRED)

Before doing anything, check if CDP is already available on the chosen port. If it is, USE IT and do not restart the browser.

CDP_PORT=${CDP_PORT:-9222}
curl -s http://localhost:${CDP_PORT}/json/version >/dev/null 2>&1 && echo "ALREADY RUNNING" || echo "NEED TO LAUNCH"

If "ALREADY RUNNING", skip all setup steps and go straight to your agent-browser --cdp... commands.

2. Setup: Launch Browser with CDP (ONLY if needed)

If the browser is already running but CDP is *not* enabled, you must ask the user before killing the process, as this will close their active windows.

Headed Mode (MANDATORY — visible browser window)

CRITICAL RULE: The browser MUST be launched in headed (visible) mode. The human user must be able to see and interact with the browser directly alongside the agent. Do not pass any --headless flags.

Edge (default):

# ONLY if user confirms or if no windows are open
pkill -9 -f "Microsoft Edge" 2>/dev/null; sleep 2

# Launch with CDP
"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge" --remote-debugging-port=${CDP_PORT:-9222} &disown 2>/dev/null
sleep 3

# Verify CDP is ready
curl -s http://localhost:${CDP_PORT:-9222}/json/version >/dev/null && echo "CDP ready"

# Bring window to foreground
osascript -e 'tell application "Microsoft Edge" to activate'

Chrome (when user asks for it):

pkill -9 -f "Google Chrome" 2>/dev/null; sleep 2
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" --remote-debugging-port=${CDP_PORT:-9222} &disown 2>/dev/null
sleep 3
curl -s http://localhost:${CDP_PORT:-9222}/json/version >/dev/null && echo "CDP ready"
osascript -e 'tell application "Google Chrome" to activate'

Chromium (when user asks for it):

pkill -9 -f Chromium 2>/dev/null; sleep 2
"/Applications/Chromium.app/Contents/MacOS/Chromium" --remote-debugging-port=${CDP_PORT:-9222} &disown 2>/dev/null
sleep 3
curl -s http://localhost:${CDP_PORT:-9222}/json/version >/dev/null && echo "CDP ready"
osascript -e 'tell application "Chromium" to activate'

Comet (when user asks for it):

pkill -9 -f Comet 2>/dev/null; sleep 2
/Applications/Comet.app/Contents/MacOS/Comet --remote-debugging-port=${CDP_PORT:-9222} &disown 2>/dev/null
sleep 3
curl -s http://localhost:${CDP_PORT:-9222}/json/version >/dev/null && echo "CDP ready"
osascript -e 'tell application "Comet" to activate'

Core Rule: Always Pass --cdp

Every agent-browser command MUST include --cdp ${CDP_PORT:-9222}. This connects to the local browser instance instead of launching a new one.

# CORRECT — uses local browser (Edge by default)
agent-browser --cdp ${CDP_PORT:-9222} open https://example.com
agent-browser --cdp ${CDP_PORT:-9222} snapshot -i
agent-browser --cdp ${CDP_PORT:-9222} click @e1

# WRONG — would launch isolated headless browser, losing auth
agent-browser open https://example.com

Workflow

Every interaction follows this pattern:

  1. Check CDP first: curl -s http://localhost:9222/json/version
  2. Launch ONLY if missing: Following the setup steps above for the chosen browser.
  3. Check for Existing Tab: If the user specifies to continue on a tab with a given URL, you MUST first try to find whether there is already an active tab for that URL (e.g., by checking curl -s http://localhost:9222/json/list).
  4. Navigate: agent-browser --cdp 9222 open <url> (or switch to/use the existing tab if found).
  5. Snapshot: agent-browser --cdp 9222 snapshot -i (get element refs like @e1, @e2).
  6. Interact: Use refs to click, fill, select — always with --cdp 9222.

Authentication / Login Handling

CRITICAL: Do NOT attempt to log in on behalf of the user. Since this skill uses the user's local browser profile, authentication should be handled by the user directly.

When you encounter any of the following, you MUST stop and ask the user to step in:

  • A login page or sign-in form
  • An OAuth/SSO redirect (e.g., "Sign in with Google")
  • A 2FA/MFA prompt
  • A CAPTCHA challenge
  • A "session expired" or "please log in" message
  • Any authentication wall blocking access to the target content

What to do:

  1. Take a snapshot so you can describe what you see.
  2. Tell the user: "I've hit a login/authentication page. Please log in manually in the browser window, then let me know when you're done."
  3. Wait for the user to confirm they have completed login before proceeding.
  4. After the user confirms, take a fresh snapshot and continue with the task.

Do NOT:

  • Try to fill in username/password fields yourself
  • Try to click through OAuth/SSO flows
  • Try to bypass or work around the login in any way
  • Assume credentials from environment variables or files

Session Lifecycle

  • Reuse always: Check CDP before every interaction, never re-launch if already running.
  • Don't kill on "close": agent-browser --cdp 9222 close only disconnects agent-browser's Playwright session from the CDP endpoint. It does NOT close or kill the browser. The user's browser stays open.
  • No cleanup needed: When the Claude Code session ends, the browser keeps running as the user's normal browser.

Agent Browser Usage

Please load the agent-browser skill for detailed agent-browser use

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.89%
按下载量换算93

Claude

30.27%
按下载量换算78

Cursor

17.35%
按下载量换算45

Gemini CLI

9.64%
按下载量换算25

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills