prediction

Fetches Polymarket event odds and market detail as JSON via the tribes-cli prediction command group.

1|Updated Jun 17, 2026
One-click install
npx skills add https://github.com/tribes-protocol/trading-harness --skill prediction-tribes-protocol
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: prediction
Source: https://github.com/tribes-protocol/trading-harness/tree/main/skills/prediction
Command: npx skills add https://github.com/tribes-protocol/trading-harness --skill prediction-tribes-protocol

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Trading theses often need market-implied probabilities for binary catalysts like elections, ETF approvals, or Fed rate cuts, but gathering Polymarket odds manually is slow and error-prone. This Skill provides read-only access to Polymarket events and markets through a single CLI, returning structured JSON odds without an API key. ## Core Features & Use Cases - Event Search and Listing: Search active prediction events by query or list events and markets with filters for tags, volume, liquidity, and closed status. - Detailed Market Lookup: Fetch one event or market by id or slug to extract exact outcomes, outcomePrices, volume, liquidity, and endDate before citing odds. - Use Case: Before forming a thesis on a crypto regulation trade, run a search for "SEC crypto" events, then verify the leading market's exact probability with get-market and feed those odds into the strategize skill as one research input. ## Quick Start Ask the agent to search Polymarket for active events about Fed rate cuts and show the leading market odds for each result.

Frequently Asked Questions about prediction

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search Polymarket events from the command line?▼

Run tribes-cli prediction search with a --query flag, optionally adding --limit-per-type (1-25) or repeatable --events-tag filters. Results return active events with leadingMarket, leadingOutcome, and leadingProbability fields.

How do I get exact Polymarket odds for one market?▼

Use tribes-cli prediction get-market with --market-id or --market-slug. Extract the question, outcomes, outcomePrices, volume, liquidity, endDate, and closed keys from the returned JSON before citing the odds.

Can this skill place Polymarket bets or execute trades?▼

No. The prediction command group is strictly read-only research; no subcommand signs or executes anything. Odds should be treated as one research input, never a trade signal by themselves.

Why does prediction search return no results?▼

Search only returns active events, so closed or resolved markets will not appear. Retry with broader keywords, then try list-events --tag-slug or list-events --closed true; if still empty, report that no market exists rather than inventing odds.

Why does the prediction command fail with unknown option --out?▼

The prediction group has no --out flag, so passing it triggers an unknown option error. Redirect stdout to a file instead, for example tribes-cli prediction list-events > events.json.