install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/brucegutman/pipeworx-spacenews" ~/.claude/skills/openclaw-skills-pipeworx-spacenews && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/brucegutman/pipeworx-spacenews" ~/.openclaw/skills/openclaw-skills-pipeworx-spacenews && rm -rf "$T"
manifest:
skills/brucegutman/pipeworx-spacenews/SKILL.mdsource content
Space News
Stay current with spaceflight news. Pulls articles and blog posts from the Spaceflight News API, aggregating coverage from dozens of space journalism outlets.
Three tools
- get_articles -- Latest spaceflight news articles, sorted by publication date
- search_articles -- Keyword search across all articles (e.g., "SpaceX Starship launch")
- get_blogs -- Latest spaceflight blog posts from the community
All three return title, summary, URL, image, source outlet, and publication timestamp.
Example
curl -X POST https://gateway.pipeworx.io/spacenews/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_articles","arguments":{"query":"Artemis moon","limit":5}}}'
{ "mcpServers": { "spacenews": { "url": "https://gateway.pipeworx.io/spacenews/mcp" } } }