
Markets
- 12 installs
- 610 repo stars
- Updated June 26, 2026
- alsk1992/cloddsbot
markets is a Claude Code skill that searches prediction markets and views current prices across Polymarket, Kalshi, Manifold and Metaculus.
About
markets is a Claude Code skill that searches prediction markets and views current prices across Polymarket, Kalshi, Manifold and Metaculus. It matches a query to markets, returns YES prices and shows bid/ask orderbook spreads. A developer uses it to look up market prices and compare them across platforms.
- Searches prediction markets across Polymarket, Kalshi, Manifold and Metaculus
- Returns current prices and bid/ask orderbook for a market
- Answers natural-language market lookups and cross-platform price comparisons
Markets by the numbers
- 12 all-time installs (skills.sh)
- Ranked #781 of 1,106 Finance & Trading skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
markets capabilities & compatibility
- Capabilities
- market search · price lookup · orderbook view
- Use cases
- research · web search · trading
- Pricing
- Free
What markets says it does
Use this skill to search for prediction markets and view current prices across platforms.
CFTC-regulated, US legal
npx skills add https://github.com/alsk1992/cloddsbot --skill marketsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 12 |
|---|---|
| repo stars | ★ 610 |
| Last updated | June 26, 2026 |
| Repository | alsk1992/cloddsbot ↗ |
What it does
Search prediction markets and view current prices and orderbooks across Polymarket, Kalshi, Manifold and Metaculus.
Who is it for?
Looking up and comparing prediction-market prices across platforms.
When should I use this skill?
You want the current price or orderbook for a prediction market.
What you get
Current market prices and orderbook spreads returned from a single natural-language query.
- market search results
- current prices
- orderbook spreads
By the numbers
- 4 supported platforms (Polymarket, Kalshi, Manifold, Metaculus)
- 3 commands (search, price, orderbook)
Files
Markets Skill
Use this skill to search for prediction markets and view current prices across platforms.
Commands
Search Markets
Search for markets matching a query:
/markets trump 2028
/markets fed rate cut
/markets super bowlGet Price
Get current price for a specific market:
/price [market-id or slug]View Orderbook
View bid/ask spread:
/orderbook [market-id]Supported Platforms
- Polymarket - Crypto prediction market, highest volume
- Kalshi - CFTC-regulated, US legal
- Manifold - Play money, anyone can create markets
- Metaculus - Forecasting platform, community predictions
Examples
User: "What's the current price on Trump winning 2028?" → Search Polymarket for "Trump 2028", return YES price
User: "Show me Fed rate cut markets" → Search all platforms for "Fed rate", list top results with prices
User: "Compare prices across platforms for Bitcoin ETF approval" → Search multiple platforms, show price comparison table
/**
* Markets CLI Skill
*
* Commands:
* /markets search <query> - Search markets across platforms
* /markets trending - Trending markets
* /markets <platform> <query> - Search specific platform
*/
async function execute(args: string): Promise<string> {
const parts = args.trim().split(/\s+/);
const cmd = parts[0]?.toLowerCase() || 'help';
try {
const feeds = await import('../../../feeds/index');
switch (cmd) {
case 'search': {
const query = parts.slice(1).join(' ');
if (!query) return 'Usage: /markets search <query>';
return `Searching markets for "${query}"...\nUse the feed manager to search across all connected platforms.`;
}
case 'trending':
return 'Fetching trending markets across platforms...';
case 'polymarket':
case 'kalshi':
case 'manifold':
case 'opinion':
case 'betfair':
case 'metaculus':
case 'smarkets':
case 'predictit':
case 'predictfun': {
const query = parts.slice(1).join(' ');
return `Searching ${cmd} for "${query || 'all'}"...`;
}
default:
return helpText();
}
} catch (error) {
return `Markets error: ${error instanceof Error ? error.message : String(error)}`;
}
}
function helpText(): string {
return `**Markets Commands**
/markets search <query> - Search across all platforms
/markets trending - Trending markets
/markets polymarket <query> - Search Polymarket
/markets kalshi <query> - Search Kalshi
/markets manifold <query> - Search Manifold
/markets opinion <query> - Search Opinion
/markets betfair <query> - Search Betfair`;
}
export default {
name: 'markets',
description: 'Search and browse prediction markets across all platforms',
commands: ['/markets', '/market'],
handle: execute,
};