Trade prediction markets with natural language via Foreseek. Matches your beliefs to Kalshi contracts and executes trades. Use when user wants to bet on or trade predictions about elections, politics, sports outcomes, economic data (Fed rates, CPI, GDP), crypto prices, weather events, or any real-world event outcomes. Supports viewing positions, parsing predictions, executing market/limit orders, managing orders, and checking account status.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install foreseekai或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install foreseekai⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/foreseekai/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: foreseek description: Trade prediction markets with natural language via Foreseek. Matches your beliefs to Kalshi contracts and executes trades. Use when user wants to bet on or trade predictions about elections, politics, sports outcomes, economic data (Fed rates, CPI, GDP), crypto prices, weather events, or any real-world event outcomes. Supports viewing positions, parsing predictions, executing market/limit orders, managing orders, and checking account status. metadata: clawdbot: requires: env: - FORESEEK_API_KEY ---
Trade prediction markets through natural language. Say what you believe, get matched to the right contract on Kalshi.
Get your API key from foreseek.ai/dashboard → API Keys tab.
export FORESEEK_API_KEY="fsk_your_api_key_here"
Converts natural language to matched Kalshi contracts.
curl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \
-H "Authorization: Bearer $FORESEEK_API_KEY" \
-H "Content-Type: application/json" \
-d '{"operation": "parse", "prediction": "Fed will cut rates in March"}'
Response:
{
"matched": true,
"confidence": 0.92,
"direction": "yes",
"market": {
"ticker": "KXFED-25MAR-T475",
"title": "Fed funds rate below 4.75% on March 19",
"price": 0.35,
"event_ticker": "KXFED-25MAR",
"kalshi_url": "https://kalshi.com/markets/kxfed/fed-funds-rate-below-475-on-march-19/kxfed-25mar#market=KXFED-25MAR-T475"
},
"insight": "Currently trading at 35¢, implying 35% probability"
}
Places an order on Kalshi through your connected account.
curl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \
-H "Authorization: Bearer $FORESEEK_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"operation": "trade",
"ticker": "KXFED-25MAR-T475",
"side": "yes",
"action": "buy",
"count": 10,
"type": "market"
}'
Response:
{
"success": true,
"order": {
"order_id": "abc123",
"status": "filled",
"filled_count": 10,
"avg_price": 35
},
"message": "BUY 10 YES contracts on KXFED-25MAR-T475"
}
Shows your current open positions on Kalshi.
curl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \
-H "Authorization: Bearer $FORESEEK_API_KEY" \
-H "Content-Type: application/json" \
-d '{"operation": "positions"}'
Response:
{
"count": 2,
"positions": [
{
"ticker": "KXBTC-120K-JAN",
"title": "Bitcoin above $120,000",
"side": "yes",
"contracts": 25,
"avg_price": 42,
"current_price": 48,
"pnl": 150
}
],
"is_demo": false
}
Browse available markets by keyword or category.
curl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \
-H "Authorization: Bearer $FORESEEK_API_KEY" \
-H "Content-Type: application/json" \
-d '{"operation": "markets", "query": "bitcoin", "limit": 5}'
Shows your pending and recent orders on Kalshi.
curl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \
-H "Authorization: Bearer $FORESEEK_API_KEY" \
-H "Content-Type: application/json" \
-d '{"operation": "orders"}'
Response:
{
"count": 3,
"orders": [
{
"order_id": "abc123",
"ticker": "KXBTC-120K",
"side": "yes",
"action": "buy",
"status": "pending",
"count": 10,
"filled": 5,
"price": 42,
"created_at": "2026-01-31T10:00:00Z"
}
],
"is_demo": false
}
Cancels a pending order by order ID.
curl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \
-H "Authorization: Bearer $FORESEEK_API_KEY" \
-H "Content-Type: application/json" \
-d '{"operation": "cancel", "order_id": "abc123"}'
Response:
{
"success": true,
"order_id": "abc123",
"message": "Order abc123 cancelled successfully"
}
View your subscription tier, usage limits, and connection status.
curl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \
-H "Authorization: Bearer $FORESEEK_API_KEY" \
-H "Content-Type: application/json" \
-d '{"operation": "status"}'
Response:
{
"tier": "pro",
"daily_used": 5000,
"daily_limit": 150000,
"daily_percent": 3.3,
"monthly_used": 25000,
"monthly_limit": 3000000,
"monthly_percent": 0.8,
"predictions_used": 2,
"predictions_limit": 75,
"is_limited": false,
"kalshi_connected": true,
"is_demo": false
}
View your Kalshi account balance and portfolio value.
curl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \
-H "Authorization: Bearer $FORESEEK_API_KEY" \
-H "Content-Type: application/json" \
-d '{"operation": "balance"}'
Response:
{
"balance": 1000.00,
"available": 850.00,
"portfolio_value": 150.00,
"is_demo": false
}
View your saved markets with current prices.
curl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \
-H "Authorization: Bearer $FORESEEK_API_KEY" \
-H "Content-Type: application/json" \
-d '{"operation": "watchlist"}'
Response:
{
"count": 2,
"watchlist": [
{
"ticker": "KXBTC-120K-JAN",
"title": "Bitcoin above $120,000",
"price": 48,
"volume": 125000,
"status": "open",
"added_at": "2026-01-15T08:00:00Z"
}
]
}
| What You Say | Matched Market | |--------------|----------------| | "Trump wins 2028" | KXPRES-2028-REP | | "Bitcoin above $100k by month end" | KXBTC-100K-JAN | | "Eagles win Super Bowl" | KXNFLSB-PHI | | "Fed cuts rates in March" | KXFED-25MAR-T475 | | "CPI above 3% next month" | KXCPI-FEB-3PCT | | "Nvidia hits $200" | KXNVDA-200 |
| Operation | Description | Scope | Consumes Budget | |-----------|-------------|-------|-----------------| | parse | AI prediction matching | parse | Yes | | trade | Execute Kalshi orders | trade | No | | positions | View open positions | positions | No | | markets | Search available markets | markets | No | | orders | View pending orders | orders | No | | cancel | Cancel pending order | cancel | No | | status | Check tier & usage | status | No | | balance | Get account balance | balance | No | | watchlist | View saved markets | watchlist | No |
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | operation | string | Yes | One of: parse, trade, positions, markets, orders, cancel, status, balance, watchlist | | prediction | string | For parse | Natural language prediction | | ticker | string | For trade | Market ticker (e.g., KXBTC-120K-JAN) | | side | string | For trade | "yes" or "no" | | action | string | For trade | "buy" or "sell" (default: buy) | | count | number | For trade | Number of contracts | | type | string | For trade | "market" or "limit" (default: market) | | yes_price | number | For limit | Limit price in cents (for YES side) | | no_price | number | For limit | Limit price in cents (for NO side) | | query | string | For markets | Search term | | category | string | For markets | Filter by category |
...
安装 Foreseek AI 后,可以对 AI 说这些话来触发它
Help me get started with Foreseek AI
Explains what Foreseek AI does, walks through the setup, and runs a quick demo based on your current project
Use Foreseek AI to trade prediction markets with natural language via Foreseek
Invokes Foreseek AI with the right parameters and returns the result directly in the conversation
What can I do with Foreseek AI in my finance & investment workflow?
Lists the top use cases for Foreseek AI, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/foreseekai/ 目录(个人级,所有项目可用),或 .claude/skills/foreseekai/(项目级)。重启 AI 客户端后,用 /foreseekai 主动调用,或让 AI 根据上下文自动发现并使用。
Foreseek AI 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Foreseek AI 可免费安装使用。请查阅仓库了解许可证信息。
Trade prediction markets with natural language via Foreseek. Matches your beliefs to Kalshi contracts and executes trades. Use when user wants to bet on or trade predictions about elections, politics, sports outcomes, economic data (Fed rates, CPI, GDP), crypto prices, weather events, or any real-world event outcomes. Supports viewing positions, parsing predictions, executing market/limit orders, managing orders, and checking account status.
Automate my finance & investment tasks using Foreseek AI
Identifies repetitive steps in your workflow and sets up Foreseek AI to handle them automatically
Foreseek AI 属于「Finance & Investment」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。