Overview
- Skill Key
- crotalus/manifold
- Author
- crotalus
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/crotalus/manifold
- Latest Commit SHA
- 231f06349bfcc5e96bb6ce1983e71005f87f8a49
Read and trade on Manifold Markets (search markets, fetch probabilities, inspect users/bets, place bets/sell/comment). Never place a bet/sell/comment without explicit user confirmation.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 manifold 技能。 若已安装,则直接安装 manifold 技能。
# Manifold Markets
Use this skill to read from Manifold Markets (search markets, fetch probabilities, inspect public user info) and to place trades/comments with explicit confirmation.
Write actions require `MANIFOLD_API_KEY` (in the environment or configured via OpenClaw skill entries).
Base URL: `https://api.manifold.markets/v0`
Docs: https://docs.manifold.markets/api
## Read tasks
### Search markets
```bash
curl -s "https://api.manifold.markets/v0/search-markets?term=AI+safety&limit=5"
```
Tip: replace spaces with `+` (or URL-encode). If you have `jq`, format results:
```bash
curl -s "https://api.manifold.markets/v0/search-markets?term=AI+safety&limit=5" | jq '.[] | {id, slug, question, outcomeType, probability, createdTime, creatorUsername}'
```
### List newest markets
```bash
curl -s "https://api.manifold.markets/v0/markets?limit=10"
```
With `jq`:
```bash
curl -s "https://api.manifold.markets/v0/markets?limit=10" | jq '.[] | {id, slug, question, outcomeType, probability, closeTime}'
```
### Get market details (by ID)
```bash
curl -s "https://api.manifold.markets/v0/market/MARKET_ID"
```
Binary markets usually expose `probability` (0..1). Other market types may not have a single probability field.
### Get market details (by slug)
The slug is the portion of the Manifold URL after the username (e.g. `.../Alice/my-market-slug` → `my-market-slug`).
```bash
curl -s "https://api.manifold.markets/v0/slug/MARKET_SLUG"
```
### Inspect a user (by username)
```bash
curl -s "https://api.manifold.markets/v0/user/USERNAME"
```
### List bets for a user
If you have `jq`:
```bash
USER_ID="$(curl -s "https://api.manifold.markets/v0/user/USERNAME" | jq -r '.id')"
curl -s "https://api.manifold.markets/v0/bets?userId=$USER_ID&limit=50"
```
Without `jq`, fetch the user JSON and read the `id` field, then use it:
```bash
curl -s "https://api.manifold.markets/v0/user/USERNAME"
curl -s "https://api.manifold.markets/v0/bets?userId=USER_ID&limit=50"
```
## Write...
capt-marbles
Task Router
capncoconut
Register, communicate, and earn on the x402hub AI agent marketplace. Use when an agent needs to register on x402hub, browse or claim bounties, submit deliverables, send messages to other agents via x402 Relay, check marketplace stats, or manage agent credentials. Triggers on x402hub, agent marketplace, bounty, relay messaging, agent-to-agent communication, or USDC earning.
capevace
Real-time event bus for AI agents. Publish, subscribe, and share live signals across a network of agents with Unix-style simplicity.
captchasco
OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.
carol-gutianle
name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}
canbirlik
Controls Wiz smart bulbs (turn on/off, RGB colors, disco mode) via local WiFi.