{
  "schemaVersion": "1.0",
  "item": {
    "slug": "foreseekai",
    "name": "Foreseek AI",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/HypeGamer007/foreseekai",
    "canonicalUrl": "https://clawhub.ai/HypeGamer007/foreseekai",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/foreseekai",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=foreseekai",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/foreseekai"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/foreseekai",
    "agentPageUrl": "https://openagent3.xyz/skills/foreseekai/agent",
    "manifestUrl": "https://openagent3.xyz/skills/foreseekai/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/foreseekai/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Foreseek - Prediction Market Trading",
        "body": "Trade prediction markets through natural language. Say what you believe,\nget matched to the right contract on Kalshi."
      },
      {
        "title": "Setup",
        "body": "Get your API key from foreseek.ai/dashboard → API Keys tab.\n\nexport FORESEEK_API_KEY=\"fsk_your_api_key_here\""
      },
      {
        "title": "Parse a Prediction (Find Matching Markets)",
        "body": "Converts natural language to matched Kalshi contracts.\n\ncurl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \\\n  -H \"Authorization: Bearer $FORESEEK_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"operation\": \"parse\", \"prediction\": \"Fed will cut rates in March\"}'\n\nResponse:\n\n{\n  \"matched\": true,\n  \"confidence\": 0.92,\n  \"direction\": \"yes\",\n  \"market\": {\n    \"ticker\": \"KXFED-25MAR-T475\",\n    \"title\": \"Fed funds rate below 4.75% on March 19\",\n    \"price\": 0.35,\n    \"event_ticker\": \"KXFED-25MAR\",\n    \"kalshi_url\": \"https://kalshi.com/markets/kxfed/fed-funds-rate-below-475-on-march-19/kxfed-25mar#market=KXFED-25MAR-T475\"\n  },\n  \"insight\": \"Currently trading at 35¢, implying 35% probability\"\n}"
      },
      {
        "title": "Execute a Trade",
        "body": "Places an order on Kalshi through your connected account.\n\ncurl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \\\n  -H \"Authorization: Bearer $FORESEEK_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"operation\": \"trade\",\n    \"ticker\": \"KXFED-25MAR-T475\",\n    \"side\": \"yes\",\n    \"action\": \"buy\",\n    \"count\": 10,\n    \"type\": \"market\"\n  }'\n\nResponse:\n\n{\n  \"success\": true,\n  \"order\": {\n    \"order_id\": \"abc123\",\n    \"status\": \"filled\",\n    \"filled_count\": 10,\n    \"avg_price\": 35\n  },\n  \"message\": \"BUY 10 YES contracts on KXFED-25MAR-T475\"\n}"
      },
      {
        "title": "View Positions",
        "body": "Shows your current open positions on Kalshi.\n\ncurl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \\\n  -H \"Authorization: Bearer $FORESEEK_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"operation\": \"positions\"}'\n\nResponse:\n\n{\n  \"count\": 2,\n  \"positions\": [\n    {\n      \"ticker\": \"KXBTC-120K-JAN\",\n      \"title\": \"Bitcoin above $120,000\",\n      \"side\": \"yes\",\n      \"contracts\": 25,\n      \"avg_price\": 42,\n      \"current_price\": 48,\n      \"pnl\": 150\n    }\n  ],\n  \"is_demo\": false\n}"
      },
      {
        "title": "Search Markets",
        "body": "Browse available markets by keyword or category.\n\ncurl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \\\n  -H \"Authorization: Bearer $FORESEEK_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"operation\": \"markets\", \"query\": \"bitcoin\", \"limit\": 5}'"
      },
      {
        "title": "View Pending Orders",
        "body": "Shows your pending and recent orders on Kalshi.\n\ncurl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \\\n  -H \"Authorization: Bearer $FORESEEK_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"operation\": \"orders\"}'\n\nResponse:\n\n{\n  \"count\": 3,\n  \"orders\": [\n    {\n      \"order_id\": \"abc123\",\n      \"ticker\": \"KXBTC-120K\",\n      \"side\": \"yes\",\n      \"action\": \"buy\",\n      \"status\": \"pending\",\n      \"count\": 10,\n      \"filled\": 5,\n      \"price\": 42,\n      \"created_at\": \"2026-01-31T10:00:00Z\"\n    }\n  ],\n  \"is_demo\": false\n}"
      },
      {
        "title": "Cancel an Order",
        "body": "Cancels a pending order by order ID.\n\ncurl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \\\n  -H \"Authorization: Bearer $FORESEEK_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"operation\": \"cancel\", \"order_id\": \"abc123\"}'\n\nResponse:\n\n{\n  \"success\": true,\n  \"order_id\": \"abc123\",\n  \"message\": \"Order abc123 cancelled successfully\"\n}"
      },
      {
        "title": "Check Account Status",
        "body": "View your subscription tier, usage limits, and connection status.\n\ncurl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \\\n  -H \"Authorization: Bearer $FORESEEK_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"operation\": \"status\"}'\n\nResponse:\n\n{\n  \"tier\": \"pro\",\n  \"daily_used\": 5000,\n  \"daily_limit\": 150000,\n  \"daily_percent\": 3.3,\n  \"monthly_used\": 25000,\n  \"monthly_limit\": 3000000,\n  \"monthly_percent\": 0.8,\n  \"predictions_used\": 2,\n  \"predictions_limit\": 75,\n  \"is_limited\": false,\n  \"kalshi_connected\": true,\n  \"is_demo\": false\n}"
      },
      {
        "title": "Check Account Balance",
        "body": "View your Kalshi account balance and portfolio value.\n\ncurl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \\\n  -H \"Authorization: Bearer $FORESEEK_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"operation\": \"balance\"}'\n\nResponse:\n\n{\n  \"balance\": 1000.00,\n  \"available\": 850.00,\n  \"portfolio_value\": 150.00,\n  \"is_demo\": false\n}"
      },
      {
        "title": "View Watchlist",
        "body": "View your saved markets with current prices.\n\ncurl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \\\n  -H \"Authorization: Bearer $FORESEEK_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"operation\": \"watchlist\"}'\n\nResponse:\n\n{\n  \"count\": 2,\n  \"watchlist\": [\n    {\n      \"ticker\": \"KXBTC-120K-JAN\",\n      \"title\": \"Bitcoin above $120,000\",\n      \"price\": 48,\n      \"volume\": 125000,\n      \"status\": \"open\",\n      \"added_at\": \"2026-01-15T08:00:00Z\"\n    }\n  ]\n}"
      },
      {
        "title": "Prediction Examples",
        "body": "What You SayMatched 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"
      },
      {
        "title": "Operations Reference",
        "body": "OperationDescriptionScopeConsumes BudgetparseAI prediction matchingparseYestradeExecute Kalshi orderstradeNopositionsView open positionspositionsNomarketsSearch available marketsmarketsNoordersView pending ordersordersNocancelCancel pending ordercancelNostatusCheck tier & usagestatusNobalanceGet account balancebalanceNowatchlistView saved marketswatchlistNo"
      },
      {
        "title": "Trade Parameters",
        "body": "ParameterTypeRequiredDescriptionoperationstringYesOne of: parse, trade, positions, markets, orders, cancel, status, balance, watchlistpredictionstringFor parseNatural language predictiontickerstringFor tradeMarket ticker (e.g., KXBTC-120K-JAN)sidestringFor trade\"yes\" or \"no\"actionstringFor trade\"buy\" or \"sell\" (default: buy)countnumberFor tradeNumber of contractstypestringFor trade\"market\" or \"limit\" (default: market)yes_pricenumberFor limitLimit price in cents (for YES side)no_pricenumberFor limitLimit price in cents (for NO side)querystringFor marketsSearch termcategorystringFor marketsFilter by categorylimitnumberFor marketsMax results (default: 10, max: 50)order_idstringFor cancelOrder ID to cancel"
      },
      {
        "title": "Error Handling",
        "body": "401 - Unauthorized\n\n{\"error\": \"Invalid or revoked API key\"}\n\n→ Check your API key is correct and not revoked\n\n403 - Forbidden\n\n{\"error\": \"API key does not have permission for 'trade' operation\"}\n\n→ API key scopes don't include this operation\n\n429 - Rate Limited\n\n{\n  \"error\": \"rate_limited\",\n  \"tier\": \"free\",\n  \"daily_used\": 10000,\n  \"daily_limit\": 10000,\n  \"message\": \"Daily limit reached. Resets at midnight UTC.\",\n  \"upgrade_url\": \"https://foreseek.ai/pricing\"\n}\n\n→ Daily token limit reached. Upgrade for higher limits:\n\nFree: ~5 predictions/day\nPro ($29/mo): ~75 predictions/day\nUltra ($79/mo): ~200 predictions/day\n\n400 - Bad Request\n\n{\"error\": \"Kalshi not connected\", \"message\": \"Connect your Kalshi account at https://foreseek.ai/dashboard\"}\n\n→ Connect your Kalshi API credentials in the dashboard"
      },
      {
        "title": "Categories",
        "body": "Available market categories for filtering:\n\nPolitics (elections, legislation)\nEconomics (Fed rates, CPI, GDP, unemployment)\nCrypto (Bitcoin, Ethereum prices)\nSports (NFL, NBA, MLB, soccer)\nEntertainment (Oscars, streaming)\nWeather (temperature, hurricanes)\nTech (product launches, earnings)"
      },
      {
        "title": "Requirements",
        "body": "Foreseek Account: Sign up at foreseek.ai\nKalshi Connection: Connect your Kalshi API keys in the dashboard\nAPI Key: Generate one from Dashboard → API Keys"
      },
      {
        "title": "Links",
        "body": "Website: https://foreseek.ai\nDashboard: https://foreseek.ai/dashboard\nDocumentation: https://foreseek.ai/docs"
      }
    ],
    "body": "Foreseek - Prediction Market Trading\n\nTrade prediction markets through natural language. Say what you believe, get matched to the right contract on Kalshi.\n\nSetup\n\nGet your API key from foreseek.ai/dashboard → API Keys tab.\n\nexport FORESEEK_API_KEY=\"fsk_your_api_key_here\"\n\nQuick Commands\nParse a Prediction (Find Matching Markets)\n\nConverts natural language to matched Kalshi contracts.\n\ncurl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \\\n  -H \"Authorization: Bearer $FORESEEK_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"operation\": \"parse\", \"prediction\": \"Fed will cut rates in March\"}'\n\n\nResponse:\n\n{\n  \"matched\": true,\n  \"confidence\": 0.92,\n  \"direction\": \"yes\",\n  \"market\": {\n    \"ticker\": \"KXFED-25MAR-T475\",\n    \"title\": \"Fed funds rate below 4.75% on March 19\",\n    \"price\": 0.35,\n    \"event_ticker\": \"KXFED-25MAR\",\n    \"kalshi_url\": \"https://kalshi.com/markets/kxfed/fed-funds-rate-below-475-on-march-19/kxfed-25mar#market=KXFED-25MAR-T475\"\n  },\n  \"insight\": \"Currently trading at 35¢, implying 35% probability\"\n}\n\nExecute a Trade\n\nPlaces an order on Kalshi through your connected account.\n\ncurl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \\\n  -H \"Authorization: Bearer $FORESEEK_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"operation\": \"trade\",\n    \"ticker\": \"KXFED-25MAR-T475\",\n    \"side\": \"yes\",\n    \"action\": \"buy\",\n    \"count\": 10,\n    \"type\": \"market\"\n  }'\n\n\nResponse:\n\n{\n  \"success\": true,\n  \"order\": {\n    \"order_id\": \"abc123\",\n    \"status\": \"filled\",\n    \"filled_count\": 10,\n    \"avg_price\": 35\n  },\n  \"message\": \"BUY 10 YES contracts on KXFED-25MAR-T475\"\n}\n\nView Positions\n\nShows your current open positions on Kalshi.\n\ncurl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \\\n  -H \"Authorization: Bearer $FORESEEK_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"operation\": \"positions\"}'\n\n\nResponse:\n\n{\n  \"count\": 2,\n  \"positions\": [\n    {\n      \"ticker\": \"KXBTC-120K-JAN\",\n      \"title\": \"Bitcoin above $120,000\",\n      \"side\": \"yes\",\n      \"contracts\": 25,\n      \"avg_price\": 42,\n      \"current_price\": 48,\n      \"pnl\": 150\n    }\n  ],\n  \"is_demo\": false\n}\n\nSearch Markets\n\nBrowse available markets by keyword or category.\n\ncurl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \\\n  -H \"Authorization: Bearer $FORESEEK_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"operation\": \"markets\", \"query\": \"bitcoin\", \"limit\": 5}'\n\nView Pending Orders\n\nShows your pending and recent orders on Kalshi.\n\ncurl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \\\n  -H \"Authorization: Bearer $FORESEEK_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"operation\": \"orders\"}'\n\n\nResponse:\n\n{\n  \"count\": 3,\n  \"orders\": [\n    {\n      \"order_id\": \"abc123\",\n      \"ticker\": \"KXBTC-120K\",\n      \"side\": \"yes\",\n      \"action\": \"buy\",\n      \"status\": \"pending\",\n      \"count\": 10,\n      \"filled\": 5,\n      \"price\": 42,\n      \"created_at\": \"2026-01-31T10:00:00Z\"\n    }\n  ],\n  \"is_demo\": false\n}\n\nCancel an Order\n\nCancels a pending order by order ID.\n\ncurl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \\\n  -H \"Authorization: Bearer $FORESEEK_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"operation\": \"cancel\", \"order_id\": \"abc123\"}'\n\n\nResponse:\n\n{\n  \"success\": true,\n  \"order_id\": \"abc123\",\n  \"message\": \"Order abc123 cancelled successfully\"\n}\n\nCheck Account Status\n\nView your subscription tier, usage limits, and connection status.\n\ncurl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \\\n  -H \"Authorization: Bearer $FORESEEK_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"operation\": \"status\"}'\n\n\nResponse:\n\n{\n  \"tier\": \"pro\",\n  \"daily_used\": 5000,\n  \"daily_limit\": 150000,\n  \"daily_percent\": 3.3,\n  \"monthly_used\": 25000,\n  \"monthly_limit\": 3000000,\n  \"monthly_percent\": 0.8,\n  \"predictions_used\": 2,\n  \"predictions_limit\": 75,\n  \"is_limited\": false,\n  \"kalshi_connected\": true,\n  \"is_demo\": false\n}\n\nCheck Account Balance\n\nView your Kalshi account balance and portfolio value.\n\ncurl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \\\n  -H \"Authorization: Bearer $FORESEEK_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"operation\": \"balance\"}'\n\n\nResponse:\n\n{\n  \"balance\": 1000.00,\n  \"available\": 850.00,\n  \"portfolio_value\": 150.00,\n  \"is_demo\": false\n}\n\nView Watchlist\n\nView your saved markets with current prices.\n\ncurl -X POST https://jxvtetqmzduvhgiyldgp.supabase.co/functions/v1/foreseek-cli \\\n  -H \"Authorization: Bearer $FORESEEK_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"operation\": \"watchlist\"}'\n\n\nResponse:\n\n{\n  \"count\": 2,\n  \"watchlist\": [\n    {\n      \"ticker\": \"KXBTC-120K-JAN\",\n      \"title\": \"Bitcoin above $120,000\",\n      \"price\": 48,\n      \"volume\": 125000,\n      \"status\": \"open\",\n      \"added_at\": \"2026-01-15T08:00:00Z\"\n    }\n  ]\n}\n\nPrediction Examples\nWhat You Say\tMatched Market\n\"Trump wins 2028\"\tKXPRES-2028-REP\n\"Bitcoin above $100k by month end\"\tKXBTC-100K-JAN\n\"Eagles win Super Bowl\"\tKXNFLSB-PHI\n\"Fed cuts rates in March\"\tKXFED-25MAR-T475\n\"CPI above 3% next month\"\tKXCPI-FEB-3PCT\n\"Nvidia hits $200\"\tKXNVDA-200\nOperations Reference\nOperation\tDescription\tScope\tConsumes Budget\nparse\tAI prediction matching\tparse\tYes\ntrade\tExecute Kalshi orders\ttrade\tNo\npositions\tView open positions\tpositions\tNo\nmarkets\tSearch available markets\tmarkets\tNo\norders\tView pending orders\torders\tNo\ncancel\tCancel pending order\tcancel\tNo\nstatus\tCheck tier & usage\tstatus\tNo\nbalance\tGet account balance\tbalance\tNo\nwatchlist\tView saved markets\twatchlist\tNo\nTrade Parameters\nParameter\tType\tRequired\tDescription\noperation\tstring\tYes\tOne of: parse, trade, positions, markets, orders, cancel, status, balance, watchlist\nprediction\tstring\tFor parse\tNatural language prediction\nticker\tstring\tFor trade\tMarket ticker (e.g., KXBTC-120K-JAN)\nside\tstring\tFor trade\t\"yes\" or \"no\"\naction\tstring\tFor trade\t\"buy\" or \"sell\" (default: buy)\ncount\tnumber\tFor trade\tNumber of contracts\ntype\tstring\tFor trade\t\"market\" or \"limit\" (default: market)\nyes_price\tnumber\tFor limit\tLimit price in cents (for YES side)\nno_price\tnumber\tFor limit\tLimit price in cents (for NO side)\nquery\tstring\tFor markets\tSearch term\ncategory\tstring\tFor markets\tFilter by category\nlimit\tnumber\tFor markets\tMax results (default: 10, max: 50)\norder_id\tstring\tFor cancel\tOrder ID to cancel\nError Handling\n\n401 - Unauthorized\n\n{\"error\": \"Invalid or revoked API key\"}\n\n\n→ Check your API key is correct and not revoked\n\n403 - Forbidden\n\n{\"error\": \"API key does not have permission for 'trade' operation\"}\n\n\n→ API key scopes don't include this operation\n\n429 - Rate Limited\n\n{\n  \"error\": \"rate_limited\",\n  \"tier\": \"free\",\n  \"daily_used\": 10000,\n  \"daily_limit\": 10000,\n  \"message\": \"Daily limit reached. Resets at midnight UTC.\",\n  \"upgrade_url\": \"https://foreseek.ai/pricing\"\n}\n\n\n→ Daily token limit reached. Upgrade for higher limits:\n\nFree: ~5 predictions/day\nPro ($29/mo): ~75 predictions/day\nUltra ($79/mo): ~200 predictions/day\n\n400 - Bad Request\n\n{\"error\": \"Kalshi not connected\", \"message\": \"Connect your Kalshi account at https://foreseek.ai/dashboard\"}\n\n\n→ Connect your Kalshi API credentials in the dashboard\n\nCategories\n\nAvailable market categories for filtering:\n\nPolitics (elections, legislation)\nEconomics (Fed rates, CPI, GDP, unemployment)\nCrypto (Bitcoin, Ethereum prices)\nSports (NFL, NBA, MLB, soccer)\nEntertainment (Oscars, streaming)\nWeather (temperature, hurricanes)\nTech (product launches, earnings)\nRequirements\nForeseek Account: Sign up at foreseek.ai\nKalshi Connection: Connect your Kalshi API keys in the dashboard\nAPI Key: Generate one from Dashboard → API Keys\nLinks\nWebsite: https://foreseek.ai\nDashboard: https://foreseek.ai/dashboard\nDocumentation: https://foreseek.ai/docs"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/HypeGamer007/foreseekai",
    "publisherUrl": "https://clawhub.ai/HypeGamer007/foreseekai",
    "owner": "HypeGamer007",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/foreseekai",
    "downloadUrl": "https://openagent3.xyz/downloads/foreseekai",
    "agentUrl": "https://openagent3.xyz/skills/foreseekai/agent",
    "manifestUrl": "https://openagent3.xyz/skills/foreseekai/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/foreseekai/agent.md"
  }
}