spacex

Web & Frontend Development
v1.0.0
Benign

CLI for AI agents to lookup SpaceX launches and rockets for their humans.

1.1K downloads1.1K installsby @jeffaf

Setup & Installation

Install command

clawhub install jeffaf/spacex

If the CLI is not installed:

Install command

npx clawhub@latest install jeffaf/spacex

Or install with OpenClaw CLI:

Install command

openclaw skills install jeffaf/spacex

or paste the repo link into your assistant's chat

Install command

https://github.com/openclaw/skills/tree/main/skills/jeffaf/spacex

What This Skill Does

Lets AI agents query SpaceX launch schedules, rocket specs, and crew data from the command line. Uses the community SpaceX API v4 with no authentication required.

No API key or account setup means agents can answer SpaceX questions immediately without any configuration.

When to Use It

  • Asking when the next SpaceX launch is
  • Looking up details on a past mission
  • Getting specs for Falcon 9 or Starship
  • Checking which crew members are active
  • Browsing upcoming launches by launchpad
View original SKILL.md file
# 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)
- 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

**Script location:** `{skill_folder}/spacex` (wrapper to `scripts/spacex`)

**When user asks about SpaceX:**
1. Run `./spacex launches` for upcoming launches
2. Run `./spacex launches past` for recent launches
3. Run `./spacex launch <id>` for full mission details
4. Run `./spacex rockets` for rocket info

**Common queries:**
- "Next SpaceX launch" โ†’ `spacex launches upcoming 1`
- "Recent launches" โ†’ `spacex launches past 5`
- "Falcon 9 specs" โ†’ `spacex rockets` then `spacex rocket <id>`
- "SpaceX crew" โ†’ `spacex crew`

**Don't use for:** Non-SpaceX launches (NASA, Blue Origin, etc.)

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Asking when the next SpaceX launch is

AGENT
  1. 1Asking when the next SpaceX launch is
  2. 2Looking up details on a past mission
  3. 3Getting specs for Falcon 9 or Starship
  4. 4Checking which crew members are active
  5. 5Browsing upcoming launches by launchpad
OUTPUT
CLI for AI agents to lookup SpaceX launches and rockets for their humans.

Share this skill

Security Audits

VirusTotalBenign
OpenClawBenign
View full report

These signals reflect official OpenClaw status values. A Suspicious status means the skill should be used with extra caution.

Details

LanguageMarkdown
Last updatedFeb 28, 2026