Space tracker
High-quality, objectively evaluated, and secure AI agent skills.
npx -y skills add grantmcd/skills --skill space-trackerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use this skill to track global space launch schedules and real-time mission telemetry. Activate whenever the user asks about upcoming rocket launches, SpaceX missions, NASA schedules, or wants to watch a live space stream, even if they don't explicitly mention 'Launch Library' or 'telemetry'. Provides live countdowns, pad maps, and booster flight history.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.2 KB, as published. Nobody here has run it
Triggers
- "When is the next space launch?"
- "Show me the space launch schedule."
- "What's happening in space this week?"
- "Track the next SpaceX mission."
Instructions
- Fetch Data: When triggered, run the
scripts/fetch_launches.pyscript to retrieve the latest launch data from the Launch Library 2 API. - Mandate: CLI-First Reporting: ALWAYS provide a high-signal text summary directly in the CLI (Launch Name, Time, Agency, Vehicle, Status, and Live Stream link) before or alongside the UI preview.
- Mandate: Date Filtering: The
fetch_launches.pyscript MUST filter results to only include future missions (NET > now). Never show "stale" data in the UI or CLI. - Mandate: Defensive Parsing: When parsing the complex LL2 API, ALWAYS use defensive dictionary access (
.get()with defaults) to prevent crashes on missing optional fields (e.g.,vidURLs,launcher_stage). - Handle Rate Limits: The script includes built-in caching (60 minutes) to respect the API's 15 requests per hour limit.
- Generate Review: Once data is fetched, run the
scripts/generate_review.pyscript to prepare the JSON payload for the Review UI. - Display UI: Open the
ui/viewer.htmlfile using the generated data to show the user a visual dashboard of upcoming launches.
Available Resources
space-tracker/scripts/fetch_launches.py: Python script to fetch, filter, and cache launch data with CLI-first output.space-tracker/scripts/generate_review.py: Python script to format data for the Review UI with defensive parsing.space-tracker/ui/viewer.html: High-fidelity dashboard for visualizing upcoming launches.
Review UI
space-tracker/ui/viewer.html