Spacex 代码规划
- 作者仓库星标 39
- 作者仓库 awesome-omni-skill
SpaceX Lookup
CLI for AI agents to lookup SpaceX launches, rockets, and crew for their humans. "When's the next SpaceX launch?" — now your agent can answer.
Uses the community SpaceX API. No account or API key needed.
Usage
"What are the upcoming SpaceX launches?"
"Show me the last 5 SpaceX launches"
"Tell me about the Falcon 9"
"Who are the SpaceX crew members?"
Commands
| Action | Command |
|---|---|
| Upcoming launches | spacex launches upcoming [limit] |
| Past launches | spacex launches past [limit] |
| Launch details | spacex launch <id> |
| List rockets | spacex rockets |
| Rocket details | spacex rocket <id> |
| Crew members | spacex crew [limit] |
Examples
spacex launches # Next 10 upcoming launches
spacex launches upcoming 5 # Next 5 upcoming launches
spacex launches past 5 # Last 5 launches
spacex launch 5eb87d47ffd86e000604b38a # Full launch details
spacex rockets # All rockets
spacex rocket 5e9d0d95eda69973a809d1ec # Falcon 9 details
spacex crew 5 # First 5 crew members
Output
Launch list output:
🚀 Starlink 4-36 (v1.5) — Falcon 9, 2022-10-20, Cape Canaveral
Launch detail output:
🚀 SAOCOM 1B, GNOMES-1, Tyvak-0172
ID: 5eb87d47ffd86e000604b38a
Flight #: 101
Date: 2020-08-30 (hour)
Rocket: Falcon 9
Launchpad: Cape Canaveral
Status: ✅ Success
📋 Details:
[Full mission description]
🎥 Webcast: https://youtu.be/P-gLOsDjE3E
📚 Wikipedia: https://en.wikipedia.org/wiki/SAOCOM
Rocket list output:
🛸 Falcon 9 — rocket, 2010-06-04, Active, 98% success
Crew output:
👨🚀 Robert Behnken — NASA, active
Notes
- Uses SpaceX API v4 (api.spacexdata.com)
- No authentication required
- Data may lag behind real-time (community maintained)
- Rockets: Falcon 1, Falcon 9, Falcon Heavy, Starship
- Launchpads: Cape Canaveral, Vandenberg, Boca Chica, Kwajalein
Agent Implementation Notes
Platform note: If your human is on Windows, they'll need WSL, Git Bash, or Cygwin to run this skill.
Script location: {skill_folder}/spacex (wrapper to scripts/spacex)
When user asks about SpaceX:
- Run
./spacex launchesfor upcoming launches - Run
./spacex launches pastfor recent launches - Run
./spacex launch <id>for full mission details - Run
./spacex rocketsfor rocket info
Common queries:
- "Next SpaceX launch" →
spacex launches upcoming 1 - "Recent launches" →
spacex launches past 5 - "Falcon 9 specs" →
spacex rocketsthenspacex rocket <id> - "SpaceX crew" →
spacex crew
Don't use for: Non-SpaceX launches (NASA, Blue Origin, etc.)
- 流狐分类
- AI 智能
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 92 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @diegosouzapw · v1.0.0 · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 需简单配置
- 是否需要外部 API Key
- 需要 · Vendor-specific
- 检测到的系统要求
- Windows · WSL
- 底层运行要求
- 未声明
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- 检测到的网络行为
- 允许外网请求
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 Usage
Action · Command Upcoming launches · spacex launches upcoming [limit] Past launches · spacex launches past [limit]
Examples
Launch list output: Launch detail output: Rocket list output:
Uses SpaceX API v4 (api.spacexdata.com) No authentication required Data may lag behind real-time (community maintained)
Platform note: If your human is on Windows, they'll need WSL, Git Bash, or Cygwin to run this skill. Script location: {skillfolder}/spacex (wrapper to scripts/spacex) When user asks about SpaceX:
# SpaceX Lookup
CLI for AI agents to lookup SpaceX launches, rockets, and crew for their humans. "When's the next SpaceX launch?" — now your agent can answer.
Uses the community SpaceX API. No account or API key needed.
## Usage
```
"What are the upcoming SpaceX launches?"
"Show me the last 5 SpaceX launches"
"Tell me about the Falcon 9"
"Who are the SpaceX crew members?"
```
## Commands
| Action | Command |
|--------|---------|
| Upcoming launches | `spacex launches upcoming [limit]` |
| Past launches | `spacex launches past [limit]` |
| Launch details | `spacex launch <id>` |
| List rockets | `spacex rockets` |
| Rocket details | `spacex rocket <id>` |
| Crew members | `spacex crew [limit]` |
### Examples
```bash
spacex launches # Next 10 upcoming launches
spacex launches upcoming 5 # Next 5 upcoming launches
spacex launches past 5 # Last 5 launches
spacex launch 5eb87d47ffd86e000604b38a # Full launch details
spacex rockets # All rockets
spacex rocket 5e9d0d95eda69973a809d1ec # Falcon 9 details
spacex crew 5 # First 5 crew members
```
## Output
**Launch list output:**
```
🚀 Starlink 4-36 (v1.5) — Falcon 9, 2022-10-20, Cape Canaveral
```
**Launch detail output:**
```
🚀 SAOCOM 1B, GNOMES-1, Tyvak-0172
ID: 5eb87d47ffd86e000604b38a
Flight #: 101
Date: 2020-08-30 (hour)
Rocket: Falcon 9
Launchpad: Cape Canaveral
Status: ✅ Success
📋 Details:
[Full mission description]
🎥 Webcast: https://youtu.be/P-gLOsDjE3E
📚 Wikipedia: https://en.wikipedia.org/wiki/SAOCOM
```
**Rocket list output:**
```
🛸 Falcon 9 — rocket, 2010-06-04, Active, 98% success
```
**Crew output:**
```
👨🚀 Robert Behnken — NASA, active
```
## Notes
- Uses SpaceX API v4 (api.spacexdata.com)
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Usage → Commands → Examples → Output → Notes → Agent Implementation Notes
要点 -> Launch list output · Launch detail output · Rocket list output · Crew output · Platform note · Script location · When user asks about SpaceX · Common queries
文件/命令 -> spacex launches upcoming [limit] · spacex launches past [limit] · spacex launch <id> · spacex rockets · spacex rocket <id> · spacex crew [limit] · {skillfolder}/spacex · scripts/spacex
内容 SHA-256 -> 04b244d5c915
原文结构
适用与边界
原文中的明确线索
spacex launches upcoming [limit]、spacex launches past [limit]、spacex launch <id>、spacex rockets、spacex rocket <id>、spacex crew [limit]、{skillfolder}/spacex、scripts/spacex