TopRank Skills

Home / Claw Skills / Autres / manifold
Official OpenClaw rules 15%

manifold

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 技能。

Overview

Skill Key
crotalus/manifold
Author
crotalus
Source Repo
openclaw/skills
Version
-
Source Path
skills/crotalus/manifold
Latest Commit SHA
231f06349bfcc5e96bb6ce1983e71005f87f8a49

Extracted Content

SKILL.md excerpt

# 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...

Related Claw Skills