# 安装 test-app-automation

- 类型: Skill 技能
- 说明: 通过 Rube MCP 自动化 Test App 测试与操作流程，并先检索最新工具结构。
- 仓库: https://github.com/ComposioHQ/awesome-claude-skills
- ⚠ 安全: 该技能材料本身是提示型说明，未声明本地执行、密钥或直接文件访问；但其用途是通过 Rube MCP 连接远程服务并调用外部工具，存在常规的远程操作与数据外发面。来源为高 star 的开源 GitHub 仓库，显著降低了供应链风险，但具体远程工具行为仍需在实际接入时核验。

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

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

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

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

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

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

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

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