LaunchKit · 2026
Back to Skills

shipp

Shipp is a real-time data connector.

0
0 downloads
by @kclonts

Setup & Installation

openclaw skills install @kclonts/shipp

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install shipp

What This Skill Does

Shipp is a real-time data connector for live external data such as sports schedules and in-game events. It provides a REST API with JSON responses, authenticated via API key. Connections are created once and polled repeatedly using cursor-based pagination.

Cursor-based pagination via since_event_id means each poll returns only new events, avoiding re-processing duplicates without any client-side diffing logic.

When to use it

  • Tracking live NBA play-by-play events during a game
  • Building a sports dashboard that updates scores every 10 seconds
  • Fetching tonight's NFL schedule to discover game IDs before creating a connection
  • Polling live soccer match events to trigger automated bets on a prediction market
  • Alerting when a specific MLB team scores in the current inning

Example Workflow

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

INPUT

User asks: Stream live play-by-play events for tonight's Lakers game

AGENT
  1. 1Calls GET /api/v1/sports/nba/schedule to find the game_id and team names
  2. 2Creates a connection via POST /api/v1/connections/create with filter_instructions describing the target game
  3. 3Stores the returned connection_id for reuse across all subsequent polls
  4. 4Polls POST /api/v1/connections/{connectionId} on a 10-second interval, passing the latest since_event_id as a cursor
  5. 5Defensively reads schema-flexible fields from data[], deduplicates by event ID, and surfaces new events to the user
OUTPUT

Continuous stream of new play-by-play events for the specified game, deduplicated and formatted

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

Shipp API key from platform.shipp.ai