# 安装 browser-tool-automation

- 类型: Skill 技能
- 说明: 通过 Rube MCP 自动执行浏览器工具任务，并先检索最新工具模式。
- 仓库: https://github.com/ComposioHQ/awesome-claude-skills
- ⚠ 安全: 该技能本身更像一份开源提示/操作文档，但其设计目标是通过 Rube MCP 连接远程服务并驱动 Browser Tool 工作流，因此整体风险以常规集成型 caution 为主。未见要求本地密钥或明显越权红旗；不过会依赖外部 MCP/连接授权，实际数据外发与执行边界取决于所连接的远程工具。

## 方式一 · 一键代装（复制提示词让 AI 代劳）

### Claude Code
```
请帮我安装 askskill 上的 "browser-tool-automation" 技能：
1. 下载 https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/master/composio-skills/browser-tool-automation/SKILL.md
2. 保存为 ~/.claude/skills/browser-tool-automation/SKILL.md
3. 装好后重载技能，告诉我可以用了
```

### Codex
```
请帮我安装 askskill 上的 "browser-tool-automation" 技能：
1. 下载 https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/master/composio-skills/browser-tool-automation/SKILL.md
2. 保存为 ~/.codex/skills/browser-tool-automation/SKILL.md
3. 装好后重载技能，告诉我可以用了
```

### Cursor
```
请帮我安装 askskill 上的 "browser-tool-automation" 技能：
1. 下载 https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/master/composio-skills/browser-tool-automation/SKILL.md
2. 保存为 ~/.cursor/skills/browser-tool-automation/SKILL.md
3. 装好后重载技能，告诉我可以用了
```

## 方式二 · 命令行安装（原生命令与配置）

### Claude Code
```bash
mkdir -p '~/.claude/skills/browser-tool-automation' && curl -fsSL 'https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/master/composio-skills/browser-tool-automation/SKILL.md' -o '~/.claude/skills/browser-tool-automation/SKILL.md'
```

### Codex
```bash
mkdir -p '~/.codex/skills/browser-tool-automation' && curl -fsSL 'https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/master/composio-skills/browser-tool-automation/SKILL.md' -o '~/.codex/skills/browser-tool-automation/SKILL.md'
```

### Cursor
```bash
mkdir -p '~/.cursor/skills/browser-tool-automation' && curl -fsSL 'https://raw.githubusercontent.com/ComposioHQ/awesome-claude-skills/master/composio-skills/browser-tool-automation/SKILL.md' -o '~/.cursor/skills/browser-tool-automation/SKILL.md'
```
