browser_visible
Use this skill when the user needs to control the browser launch mode for browser. By default browser is managed by Playwright and opens no debuggin…
它会碰到什么
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
> Deprecated: This reference supports the stable browser implementation.
> hatch. Prefer the unified browser tool when experimental mode is enabled.
Browser Launch Modes
browser.start launch modes:
- Default: Playwright-managed, no debugging port
cdp_port=N: managed CDP, opens a local debugging port so other local tools can attach (see the browser_cdp skill)private_mode=true: same as the default, kept for backward compatibility
Parameter meanings:
headed: whether to display the browser windowprivate_mode: kept for backward compatibility; it no longer changes the launch mode
The two parameters are independent and can be freely combined.
Common Usage
Default launch:
{"action": "start"}
Open a visible window:
{"action": "start", "headed": true}
private_mode
Already the default behavior — do not set it. The parameter is kept only so that older calls keep working, and passing it together with cdp_port is rejected.
Notes
- The default is Playwright-managed with no debugging port
- The launch mode is entirely determined by the call parameters
- Managed CDP requires Chrome / Chromium / Edge to be installed locally
- When the user manually operates the visible browser, the idle timer may not be refreshed
private_modeis an explicit parameter for eachstartcall and is not persisted- If a browser is already running, you must
stopit and thenstartagain to switch launch modes or window visibility - Visible mode occupies the desktop and requires a graphical environment; it may not work on servers or headless environments
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。
它属于哪个仓库
src/qwenpaw/agents/tools/deprecated_browser/skills/browser_visible-en/SKILL.md同一个仓库里的其他技能
同名技能的其他版本
有 2 个不同仓库或目录里都有叫 browser_visible 的技能。它们内容并不相同,别混用:
- agentscope-ai/QwenPaw — 当用户需要控制 browser 的浏览器启动方式时,使用本 skill。browser 默认由 Playwright 直接管理、不开放调试端口(需让其他本地工具附加时显式传 `cd