camoufox
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseCamoufox Browser Automation
Camoufox浏览器自动化
Use for browser automation. Prefer the CLI directly. The MCP
server is just a thin adapter over the same command layer, and this skill exists
to teach the agent the normal CLI workflow.
camoufox-browser使用进行浏览器自动化操作。建议直接使用CLI。MCP服务器只是在同一命令层之上的轻量适配器,本技能旨在向Agent传授常规的CLI工作流程。
camoufox-browserPrimary workflow
主要工作流程
- Open a page:
bash
camoufox-browser open https://example.com- Inspect the page and collect refs:
bash
camoufox-browser snapshot- Interact using refs from the snapshot:
bash
camoufox-browser click 'button:Sign in'
camoufox-browser fill 'textbox:Email' user@example.com
camoufox-browser select 'combobox:Country' Ukraine
camoufox-browser upload 'textbox:Resume' /absolute/path/resume.pdf-
Re-runafter navigation or significant DOM changes.
snapshot -
Capture artifacts when needed:
bash
camoufox-browser screenshot --output page.png
camoufox-browser eval '() => document.title'- 打开页面:
bash
camoufox-browser open https://example.com- 检查页面并收集引用:
bash
camoufox-browser snapshot- 使用快照中的引用进行交互:
bash
camoufox-browser click 'button:Sign in'
camoufox-browser fill 'textbox:Email' user@example.com
camoufox-browser select 'combobox:Country' Ukraine
camoufox-browser upload 'textbox:Resume' /absolute/path/resume.pdf-
在页面导航或DOM发生重大变化后重新运行命令。
snapshot -
必要时捕获产物:
bash
camoufox-browser screenshot --output page.png
camoufox-browser eval '() => document.title'Notes
注意事项
- You do not need to run for the normal flow.
startauto-starts the daemon with default settings when a browser command needs it.camoufox-browser - Use only when you need explicit daemon control or startup options like
camoufox-browser start --headless.--proxy - is intended for Linux and macOS hosts.
camoufox-browser - Use to discover the full command surface.
camoufox-browser --help - Install this skill through .
npx skills add <repo> --skill camoufox
- 在常规流程中无需运行命令。当浏览器命令需要时,
start会自动使用默认设置启动守护进程(daemon)。camoufox-browser - 仅当你需要显式控制守护进程或使用等启动选项时,才使用
--proxy命令。camoufox-browser start --headless - 适用于Linux和macOS主机。
camoufox-browser - 使用查看完整的命令列表。
camoufox-browser --help - 通过安装本技能。
npx skills add <repo> --skill camoufox
Core commands
核心命令
bash
camoufox-browser open <url>
camoufox-browser snapshot
camoufox-browser click <ref>
camoufox-browser fill <ref> <text>
camoufox-browser select <ref> <value> [more-values...]
camoufox-browser upload <ref> <file> [more-files...]
camoufox-browser screenshot [--output FILE]
camoufox-browser closebash
camoufox-browser open <url>
camoufox-browser snapshot
camoufox-browser click <ref>
camoufox-browser fill <ref> <text>
camoufox-browser select <ref> <value> [more-values...]
camoufox-browser upload <ref> <file> [more-files...]
camoufox-browser screenshot [--output FILE]
camoufox-browser closeAdvanced commands
高级命令
bash
camoufox-browser start [--headless] [--os windows|macos|linux] [--proxy PROXY]
camoufox-browser stop
camoufox-browser status
camoufox-browser tabs list|new|close [index]|select <index>bash
camoufox-browser start [--headless] [--os windows|macos|linux] [--proxy PROXY]
camoufox-browser stop
camoufox-browser status
camoufox-browser tabs list|new|close [index]|select <index>