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.
cclank
Comprehensive news aggregator that fetches, filters, and deeply analyzes real-time content from 8 major sources: Hacker News, GitHub Trending, Product Hunt, 36Kr, Tencent News, WallStreetCN, V2EX, and Weibo. Best for 'daily scans', 'tech news briefings', 'finance updates', and 'deep interpretations' of hot topics.
cerbug45
Turn incoming text (email/newsletter) into a short TTS podcast with chunking + ffmpeg concat.
ccyaolei
OpenClaw Agent 长期记忆系统 - 温度模型 + 自动归档 + 知识提炼。让 AI Agent 拥有持久记忆,自动管理冷热数据,从经验中提炼可复用技能。
cemoso
Autonomous PR review loop with Greptile. Use when an agent creates a PR and needs to autonomously handle code review feedback — reading Greptile reviews, fixing issues, pushing fixes, re-triggering review, and auto-merging when score is 4/5+. Trigger on commands like "pr review {url}", "review my PR", or when a Greptile review webhook/poll delivers feedback.