โ† All skills
Tencent SkillHub ยท Developer Tools

Prediction Bridge Skill

Query live prediction market data from the Prediction Bridge API. Use when the user asks about prediction markets, event odds, market prices, whale trades, trader analytics, or news related to prediction markets. Provides semantic search across 9+ platforms (Polymarket, Kalshi, Limitless, Probable, PredictFun, SxBet, Myriad, PancakeSwap), on-chain whale trade monitoring, Smart PnL analytics, and trader leaderboards. Run the bundled Python script to fetch real-time data.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Query live prediction market data from the Prediction Bridge API. Use when the user asks about prediction markets, event odds, market prices, whale trades, trader analytics, or news related to prediction markets. Provides semantic search across 9+ platforms (Polymarket, Kalshi, Limitless, Probable, PredictFun, SxBet, Myriad, PancakeSwap), on-chain whale trade monitoring, Smart PnL analytics, and trader leaderboards. Run the bundled Python script to fetch real-time data.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/prediction_bridge.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

Prediction Bridge

Query live prediction market data across 9+ platforms via the Prediction Bridge API.

How to Use

Run the script at scripts/prediction_bridge.py with the appropriate command. It uses only Python stdlib โ€” no pip install needed. python scripts/prediction_bridge.py <command> [args] [options]

Search events by meaning

python scripts/prediction_bridge.py search "trump tariff" --limit 5 python scripts/prediction_bridge.py search "will bitcoin hit 100k" python scripts/prediction_bridge.py search "2028 election" --include-inactive

Browse events

python scripts/prediction_bridge.py events --limit 10 python scripts/prediction_bridge.py events --source polymarket --limit 5 python scripts/prediction_bridge.py events --status active --category "Crypto" python scripts/prediction_bridge.py event 1839 # detail by ID

News matched to events

python scripts/prediction_bridge.py news --limit 10

Platform statistics

python scripts/prediction_bridge.py stats

Whale trades (on-chain large trades)

python scripts/prediction_bridge.py whale-trades --limit 10 python scripts/prediction_bridge.py whale-trades --address 0x1234... # by wallet python scripts/prediction_bridge.py whale-trades --min-value 50000 # min USD python scripts/prediction_bridge.py whale-trades --only-alerts # above alert threshold python scripts/prediction_bridge.py whale-trades --event-slug "us-election"

Market price data

python scripts/prediction_bridge.py market-history polymarket 18454 python scripts/prediction_bridge.py market-candles polymarket 18454 --interval 1h

Analytics

python scripts/prediction_bridge.py smart-pnl 18454 # market Smart PnL python scripts/prediction_bridge.py top-holders 18454 # top holders breakdown python scripts/prediction_bridge.py leaderboard --limit 20 # top traders python scripts/prediction_bridge.py user-summary 0x1234... # wallet portfolio python scripts/prediction_bridge.py user-pnl 0x1234... # realized PnL

Other

python scripts/prediction_bridge.py languages # supported languages python scripts/prediction_bridge.py --help # full help

Typical Workflows

"What are the hottest prediction markets right now?" โ†’ events --limit 10 (sorted by volume) "Find markets about AI regulation" โ†’ search "AI regulation" (semantic search) "Show me recent whale trades on Polymarket" โ†’ whale-trades --limit 10 "Who are the top traders and what are they betting on?" โ†’ leaderboard --limit 10, then user-summary <address> for details "What's the Smart PnL signal for a specific market?" โ†’ Get market ID from event <id>, then smart-pnl <market_id> "Any news moving prediction markets today?" โ†’ news --limit 10

Environment

Set PREDICTION_BRIDGE_URL to override the default API base URL: export PREDICTION_BRIDGE_URL=https://prediction-bridge.onrender.com

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/prediction_bridge.py Scripts