ワンクリックで
browser-pilot
增强版浏览器自动化。基于 Playwright 实现完整浏览器操作,包括基础导航、截图、点击、表单填写、内容提取、文件上传/下载、多标签页管理。支持反检测和高级自动化。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
增强版浏览器自动化。基于 Playwright 实现完整浏览器操作,包括基础导航、截图、点击、表单填写、内容提取、文件上传/下载、多标签页管理。支持反检测和高级自动化。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Generate images using Qwen Image API (Alibaba Cloud DashScope). Use when users request image generation with Chinese prompts or need high-quality AI-generated images from text descriptions.
Transform agents from task-followers into proactive partners.
Orchestrate multi-agent teams with defined roles, task lifecycles, handoff protocols, and review workflows. Use when: (1) Setting up a team of 2+ agents with different specializations, (2) Defining task routing and lifecycle (inbox → spec → build → review → done), (3) Creating handoff protocols between agents, (4) Establishing review and quality gates, (5) Managing async communication and artifact sharing between agents.
自动生成短视频。支持图文轮播、文字动画、卡片风格和 AI 视频大模型生成等多种视频类型。用户需要生成视频时使用此技能。
Process multiple items with progress tracking, checkpointing, and failure recovery.
增强版图表生成功能。支持8种图表类型(折线图、柱状图、饼图、散点图、面积图、热力图、箱线图、雷达图)和3种主题(默认、深色、商务)。基于 matplotlib + seaborn 实现。
| name | browser-pilot |
| triggers | null |
| version | 1.0.0 |
| status | enhanced |
| description | 增强版浏览器自动化。基于 Playwright 实现完整浏览器操作,包括基础导航、截图、点击、表单填写、内容提取、文件上传/下载、多标签页管理。支持反检测和高级自动化。 |
| provides | null |
| os | null |
| clawdbot | null |
| emoji | 🌐 |
| category | automation |
| priority | high |
| updated | "2026-03-11T00:00:00.000Z" |
✅ 状态:增强版已上线,功能完整。
用户说"打开网页"、"截图"、"自动化操作"时自动触发。
# 健康检查
python3 scripts/browse.py --check
# 访问网页
python3 scripts/browse.py --url "https://example.com"
# 访问网页并截图
python3 scripts/browse.py --url "https://example.com" --screenshot
# 访问网页并提取文本
python3 scripts/browse.py --url "https://example.com" --extract "h1"
# 有头模式(显示浏览器窗口)
python3 scripts/browse.py --url "https://example.com" --headed
# 自定义延迟
python3 scripts/browse.py --url "https://example.com" --slow-mo 500
from browse import BrowserPilot
with BrowserPilot(headless=True, slow_mo=100) as pilot:
# 启动
pilot.start("chromium")
# 导航
pilot.navigate("https://example.com")
# 截图
pilot.screenshot("output.png")
# 点击
pilot.click("#login-button")
# 填写表单
pilot.fill("#username", "myuser")
pilot.fill("#password", "mypass")
# 提取文本
text = pilot.extract_text("h1")
print(text["text"])
# 关闭(with 语句自动关闭)
基于 playwright Python 库实现,提供同步 API。
# 安装 playwright
pip install playwright
# 安装浏览器
playwright install
--headed 切换有头模式)截图和输出文件保存到:~/.xyvaclaw/output/browser/