Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

camofox-browser-remotecamofox 浏览器远程

Agent Skill

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

总安装

4,116

周安装

175

GitHub Stars

公开资料未说明

下载量

1,442
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install camofox-browser-remote

简介

使用 Camoufox 实现远程反检测浏览器自动化,需指定 CAMOFOX_URL。

  • 适用于分布式整理、多账号管理等需要隔离环境的场景。
  • 每个实例拥有独立 IP 与硬件指纹,避免关联封禁风险。
  • 依赖外部服务稳定性,网络抖动可能导致页面加载中断。
  • 商业用途需购买 Camoufox 许可证,个人学习可免费试用。

SKILL.md

name
camofox-browser-remote
description
Remote-mode anti-detection browser automation using Camoufox (Firefox fork with C++ fingerprint spoofing). Requires CAMOFOX_URL pointing to an externally-managed server (Docker container, shared staging, CI). Use when standard browser tools get blocked by Cloudflare, Akamai, or bot detection and a Camofox server is already running. Triggers include "stealth browse", "anti-detection", "bypass bot", "camofox", "blocked by Cloudflare", scraping protected sites (X/Twitter, Amazon, Product Hunt), or when agent-browser/playwright fails with bot detection errors.
allowed-tools
Bash(camofox-browser-remote:*)
user_invocable
true
argument_hint
<url or command>

Camofox Browser — Remote Mode (Docker / Shared Server)

Stealth browser automation via Camoufox. Drives an externally-managed server over HTTP — no install, no local Node process.

Setup (required)

export CAMOFOX_URL=http://172.17.0.1:9377   # required — no default

The server runs externally (Docker container, shared staging, CI). This skill only drives it. See references/docker.md for Docker networking details.

If camofox-remote is not found on PATH: set an alias using the script that ships with this skill. Replace <SKILL_DIR> with the directory containing this SKILL.md file: ``bash alias camofox-remote="bash <SKILL_DIR>/scripts/camofox-remote.sh" ` Example: if this SKILL.md is at ~/my-skills/camofox-browser-remote/SKILL.md, use ~/my-skills/camofox-browser-remote`.
Trust requirement: Every command — page snapshots, screenshots, typed text, navigation history — is sent over HTTP to CAMOFOX_URL. Only point this at a server you own and control. Do not use a shared or third-party endpoint if you will visit sites with credentials or sensitive data.

Quick Start

camofox-remote open https://example.com      # Create tab + navigate
camofox-remote snapshot                      # Get page elements with @refs
camofox-remote click @e1                     # Click element
camofox-remote type @e2 "hello"              # Type text
camofox-remote eval "document.title"         # Execute arbitrary JavaScript
camofox-remote screenshot                    # Save PNG
camofox-remote close                         # Close tab

Core Workflow

  1. Navigatecamofox-remote open <url>
  2. Snapshot — returns an accessibility tree with @e1, @e2 refs (~90% smaller than raw HTML)
  3. Interact — use refs to click, type, scroll
  4. Re-snapshot — after any DOM change, refs are invalidated; get fresh ones
  5. Repeat — the server stays running between commands
camofox-remote open https://example.com/search
camofox-remote snapshot
# @e1 [input] Search box  @e2 [button] Submit
camofox-remote type @e1 "camoufox anti-detection"
camofox-remote click @e2
camofox-remote snapshot                      # MUST re-snapshot after navigation

Commands (at a glance)

CategoryCommands
Serverhealth, start (no-op — manage container externally), stop (no-op — manage container externally)
Navigationopen <url>, navigate <url>, back, forward, refresh, `scroll [down\up\left\right]`
Page statesnapshot, screenshot [path], tabs, links, eval "<js>"
Interactionclick @eN, type @eN "text"
Searchsearch google "query" (13 macros — see references/macros.md)
Session--session <name> <cmd>, close, close-all

Full reference with curl equivalents: references/commands.md.

Ref Lifecycle (critical)

Refs (@e1, @e2) are invalidated whenever the DOM changes. Always re-snapshot after:

  • Clicking links/buttons that navigate
  • Form submissions
  • Dynamic content loads (infinite scroll, SPA route change)

Environment Variables

VariableDefaultMeaning
CAMOFOX_URLREQUIREDRemote base URL — e.g. http://172.17.0.1:9377. No default.
CAMOFOX_SESSIONdefaultDefault session name (isolated cookies/storage)
HTTPS_PROXY*(unset)*Outbound proxy for the browser

When to Use camofox-browser-remote vs agent-browser

ScenarioTool
Normal websites, no bot detectionagent-browser (faster)
Cloudflare / Akamai protectedcamofox-browser-remote
Sites that block Chromium automationcamofox-browser-remote
Need anti-fingerprintingcamofox-browser-remote
Need iOS / mobile simulationagent-browser
Need video recordingagent-browser

Deep-Dive References

FileLoad when
references/docker.mdDocker setup, networking, compose example, CAMOFOX_URL configuration
references/commands.mdNeed exact args, output format, or curl equivalent of any command
references/api-reference.mdCalling an endpoint the wrapper doesn't expose
references/macros.mdUsing search macros (@google_search, etc.)
references/troubleshooting.mdDebugging failures (connect refused, stale refs, empty snapshots)

Ready-to-Use Templates

FileDescription
templates/stealth-scrape.shFull anti-detection scrape (screenshot + snapshot + links)
templates/multi-session.shParallel URLs in isolated sessions

Cleanup

Always close when done:

camofox-remote close-all
camofox-remote stop    # no-op in remote mode; manage the container externally

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

77.34%
按下载量换算1,115

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills