Overview
- Skill Key
- adastraabyssoque/camoufox-deploy
- Author
- adastraabyssoque
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/adastraabyssoque/camoufox-deploy
- Latest Commit SHA
- 9e2d6bc47b64184aca296e055fe5c60ee62fc1df
One-click deployment of camoufox anti-detection browser with modified agent-browser. Patches agent-browser to auto-detect camoufox/firefox from executable path instead of defaulting to chromium.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 camoufox-deploy 技能。 若已安装,则直接安装 camoufox-deploy 技能。
# camoufox-deploy
🚀 一键部署 camoufox + agent-browser 反检测浏览器工具链。
## 解决的问题
agent-browser 默认只支持 Chromium,但我们需要:
1. **反检测能力**: camoufox 能绕过 Bilibili、Cloudflare 等风控
2. **Firefox 支持**: 修改 agent-browser 自动识别 camoufox/firefox 路径
3. **一键部署**: 自动化繁琐的安装、修改、编译流程
## 概述
这个 skill 帮助用户快速部署:
- **camoufox**: 基于 Firefox 的反检测浏览器
- **agent-browser**: 浏览器自动化工具(修改后支持 camoufox)
## 关键修改点
agent-browser 默认使用 Chromium,需要修改以支持 camoufox/firefox:
1. **修改 browser.ts**: 自动检测 executablePath 中的 camoufox/firefox 关键字
2. **正确的 camoufox 路径**: `~/Library/Caches/camoufox/Camoufox.app/Contents/MacOS/camoufox` (macOS)
3. **重新编译**: 需要重新编译 Rust CLI 并替换 npm 包中的二进制
## 使用方法
### 一键安装
运行安装脚本:
```bash
bash ~/.openclaw/workspace/skills/camoufox-deploy/scripts/install.sh
```
这个脚本会自动完成:
1. 安装 uv (Python 包管理器)
2. 用 uv 安装 camoufox Python 包
3. 下载 camoufox 浏览器二进制
4. 安装 agent-browser npm 包
5. 修改 agent-browser 源码(自动检测 firefox/camoufox)
6. 重新编译 Rust CLI
7. 替换系统版本
### 手动步骤(如果需要)
#### 1. 安装 uv
```bash
curl -LsSf https://astral.sh/uv/install.sh | sh
```
#### 2. 安装 camoufox
```bash
uv pip install camoufox --system
```
#### 3. 下载 camoufox 浏览器
```bash
python3 -c "from camoufox.sync_api import Camoufox; Camoufox()"
```
或手动下载:
```bash
# macOS 路径
~/Library/Caches/camoufox/Camoufox.app/Contents/MacOS/camoufox
```
#### 4. 安装 agent-browser
```bash
npm install -g agent-browser
```
#### 5. 找到并修改 browser.ts
找到 agent-browser 的源码目录:
```bash
# 全局安装位置
npm root -g
cd $(npm root -g)/agent-browser
# 或克隆源码
git clone https://github.com/browser-use/agent-browser.git
cd agent-browser
```
修改 `src/browser.ts` 中的 `getBrowserType` 函数:
```typescript
private getBrowserType(executablePath: string): 'chromium' | 'firefox' {
const lowerPath = execu...
# Camoufox Deploy
一键部署 camoufox + agent-browser 反检测浏览器工具链。
## 快速开始
### 一键安装
```bash
bash ~/.openclaw/workspace/skills/camoufox-deploy/scripts/install.sh
```
### 手动安装
如果一键安装遇到问题,可以按以下步骤手动安装:
#### 1. 安装依赖
```bash
# 安装 uv
curl -LsSf https://astral.sh/uv/install.sh | sh
# 安装 camoufox
uv pip install camoufox --system
# 下载 camoufox 浏览器
python3 -c "from camoufox.sync_api import Camoufox; Camoufox()"
```
#### 2. 安装并修改 agent-browser
```bash
# 安装 agent-browser
npm install -g agent-browser
# 找到安装位置
AGENT_BROWSER_PATH=$(npm root -g)/agent-browser
echo $AGENT_BROWSER_PATH
```
#### 3. 修改源码
编辑 `$AGENT_BROWSER_PATH/src/browser.ts`,找到 `getBrowserType` 函数并修改为:
```typescript
private getBrowserType(executablePath: string): 'chromium' | 'firefox' {
const lowerPath = executablePath.toLowerCase();
if (lowerPath.includes('firefox') || lowerPath.includes('camoufox')) {
return 'firefox';
}
return 'chromium';
}
```
#### 4. 重新编译
```bash
cd $AGENT_BROWSER_PATH
npm install
npm run build
```
## 使用方法
### 使用 camoufox 路径运行
```bash
# macOS
agent-browser --executable-path ~/Library/Caches/camoufox/Camoufox.app/Contents/MacOS/camoufox
# Linux
agent-browser --executable-path ~/.cache/camoufox/camoufox
```
### 在代码中使用
```typescript
import { AgentBrowser } from 'agent-browser';
const browser = new AgentBrowser({
executablePath: '/Users/YOUR_USERNAME/Library/Caches/camoufox/Camoufox.app/Contents/MacOS/camoufox',
headless: false
});
await browser.goto('https://example.com');
```
## 关键路径
| 组件 | macOS 路径 |
|------|-----------|
| camoufox | `~/Library/Caches/camoufox/Camoufox.app/Contents/MacOS/camoufox` |
| agent-browser | `$(npm root -g)/agent-browser` |
## 故障排除
### camoufox 未找到
```bash
# 确认路径
ls -la ~/Library/Caches/camoufox/Camoufox.app/Contents/MacOS/camoufox
# 手动下载
python3 -c "from camoufox.sync_api import Camoufox; Camoufox()...
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
carlulsoe
Local speech-to-text with NVIDIA Parakeet TDT 0.6B v3 (ONNX on CPU). 30x faster than Whisper, 25 languages, auto-detection, OpenAI-compatible API. Use when transcribing audio files, converting speech to text, or processing voice recordings locally without cloud APIs.
carlzhao007
飞书消息自动处理与进度反馈技能。安装后后台运行,监听飞书任务消息并自动创建独立进程处理。 在处理前后发送实时进度反馈(任务确认、进度百分比、完成通知)。 支持任务类型识别、智能解析、错误重试、并发控制、状态持久化。 使用场景:飞书自动化工作流、任务进度追踪、批量任务处理、需要实时反馈的场景。
cartoonitunes
BottyFans agent skill for autonomous creator monetization. Lets AI agents register, build a profile, publish posts (public, subscriber-only, or pay-to-unlock), upload media, accept USDC subscriptions and tips on Base, send and receive DMs, track earnings, and appear on the creator leaderboard. Use this skill when an agent needs to monetize content, interact with fans, manage a creator profile, handle payments in USDC, or operate as an autonomous creator on the BottyFans platform.
camopel
Local arXiv paper manager with semantic search. Crawls arXiv categories, downloads PDFs, chunks content, and indexes with FAISS + Ollama embeddings. No cloud API keys required — everything runs locally.