# Send Dexie to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "dexie",
    "name": "Dexie",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Koba42Corp/dexie",
    "canonicalUrl": "https://clawhub.ai/Koba42Corp/dexie",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/dexie",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dexie",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CHANGELOG.md",
      "README.md",
      "SKILL.md",
      "cli.js",
      "index.js",
      "install.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "dexie",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T13:17:46.487Z",
      "expiresAt": "2026-05-09T13:17:46.487Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dexie",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dexie",
        "contentDisposition": "attachment; filename=\"dexie-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "dexie"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/dexie"
    },
    "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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/dexie",
    "downloadUrl": "https://openagent3.xyz/downloads/dexie",
    "agentUrl": "https://openagent3.xyz/skills/dexie/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dexie/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dexie/agent.md"
  }
}
```
## Documentation

### Dexie Skill

Track Chia DEX trading via the Dexie.space API.

### What It Does

List active/completed offers
View token prices and liquidity
Search tokens (CATs)
Monitor trading pairs
Get platform statistics

### Commands

All commands can be triggered via:

/dex <command> in Telegram
/dexie <command> in Telegram
dex <command> in CLI
dexie <command> in CLI

### Offers

/dex offers                List active offers
/dex offers completed      List completed offers
/dex offers cancelled      List cancelled offers
/dex offer <id>            Get offer details

### Tokens

/dex assets                List top tokens by volume
/dex asset <id|code>       Get token details (e.g., SBX, DBX)
/dex search <query>        Search tokens
/dex price <code>          Get token price

### Pairs

/dex pairs                 List trading pairs
/dex pair <id>             Get pair details

### Stats

/dex stats                 Get platform statistics

### Shortcuts

/dex SBX                   Quick price lookup
/dex DBX                   Quick price lookup

### Agent Usage

When users ask about Chia DEX, trading, or token prices:

const { handleCommand } = require('./skills/dexie');

// Natural language → formatted response
const output = await handleCommand('show me top tokens');

### API Client

For custom integrations:

const DexieAPI = require('./skills/dexie/lib/api');
const api = new DexieAPI();

// Get active offers
const offers = await api.getOffers({ page_size: 20, status: 0 });

// Get token details
const token = await api.getAsset('a628c1c2c6fcb74d53746157e438e108eab5c0bb3e5c80ff9b1910b3e4832913');

// List all assets
const assets = await api.getAssets({ page_size: 50, sort: 'volume' });

// Get trading pairs
const pairs = await api.getPairs();

### Installation

cd skills/dexie
npm install
chmod +x cli.js
npm link  # Makes 'dex' and 'dexie' global

### Configuration

No API key required — Dexie API is public.

### Output Format

All commands return plain text suitable for:

Terminal output (CLI)
Telegram messages
Discord messages
WhatsApp messages

### Examples

Check token price:

/dex price SBX

List active offers:

/dex offers

Search for a token:

/dex search bucks

Get platform stats:

/dex stats

### Tips

Asset IDs are long hex strings
Token codes are short (e.g., SBX, DBX, XCH)
Use search to find tokens by name
Prices are in USD
Volumes and liquidity in XCH

### Support

Dexie.space: https://dexie.space
API Docs: https://api.dexie.space/v1
Bug reports: File in skill repository
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Koba42Corp
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T13:17:46.487Z
- Expires at: 2026-05-09T13:17:46.487Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/dexie)
- [Send to Agent page](https://openagent3.xyz/skills/dexie/agent)
- [JSON manifest](https://openagent3.xyz/skills/dexie/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/dexie/agent.md)
- [Download page](https://openagent3.xyz/downloads/dexie)