Overview
- Skill Key
- hypegamer007/foreseekai
- Author
- hypegamer007
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/hypegamer007/foreseekai
- Latest Commit SHA
- 3c7d0e96fd4e1e9445fa3204cc9e522b7772facb
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.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 foreseek 技能。 若已安装,则直接安装 foreseek 技能。
# Foreseek - Prediction Market Trading
Trade prediction markets through natural language. Say what you believe,
get matched to the right contract on Kalshi.
## Setup
Get your API key from [foreseek.ai/dashboard](https://foreseek.ai/dashboard) → API Keys tab.
```bash
export FORESEEK_API_KEY="fsk_your_api_key_here"
```
## Quick Commands
### Parse a Prediction (Find Matching Markets)
Converts natural language to matched Kalshi contracts.
```bash
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:**
```json
{
"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"
}
```
### Execute a Trade
Places an order on Kalshi through your connected account.
```bash
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:**
```json
{
"success": true,
"order": {
"order_id": "abc123",
"status": "filled",
"filled_count": 10,
"avg_price": 35
},
"message": "BUY 10 YES contracts on KXFED-25MAR-T475"
}
```
### View Positions
Shows your current open positions on Kalshi.
```bash
curl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/func...
openstockdata
OpenClaw Skill for stock data analysis
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
christiancattaneo
Secure API key management for OpenClaw. Store, list, test, and delete API keys without exposing them in chat history. Keys are stored directly in openclaw.json via gateway config.patch — fully native integration. Use when a user needs to provide, manage, or test API keys (e.g., OpenAI, ElevenLabs, Anthropic, Brave, or any service). Triggers on phrases like "add API key", "store my key", "manage keys", "test my key", "set up API key", or when a skill requires an API key that isn't configured.
chonknick
Run deep research queries using Chonkie DeepResearch. Returns comprehensive research reports with citations — useful for market analysis, competitive intelligence, technical deep dives, and any research-heavy task.
christianhaberl
Revolut Business API CLI — accounts, balances, transactions, counterparties, payments, FX exchange, CSV export. Auto-refreshes OAuth tokens. Business accounts only (not personal).
chunhualiao
Persistent task queue system. Users add tasks at any time via natural language; tasks are stored in a single persistent queue file and executed asynchronously via subagents. A heartbeat/cron dispatcher wakes periodically to check pending tasks, spawn workers, and report completions. The system never "finishes" — it always remains ready for the next task.