# 安装 openweather-api-automation

- 类型: Skill 技能
- 说明: 通过 Rube MCP 自动执行 OpenWeather API 查询与天气数据流程编排。
- 仓库: https://github.com/ComposioHQ/awesome-claude-skills
- ⚠ 安全: 该技能本身是开源的提示型封装，未直接声明本地代码执行、文件读写或固定远程端点，整体风险较低。但其设计依赖外部 Rube MCP 与 Openweather 连接流程，实际运行时会把操作委托给第三方服务，应留意外部连接与会话数据处理边界。

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

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

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

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

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

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

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

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