Dexie
/install dexie
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 \x3Ccommand>in Telegram/dexie \x3Ccommand>in Telegramdex \x3Ccommand>in CLIdexie \x3Ccommand>in CLI
Offers
/dex offers List active offers
/dex offers completed List completed offers
/dex offers cancelled List cancelled offers
/dex offer \x3Cid> Get offer details
Tokens
/dex assets List top tokens by volume
/dex asset \x3Cid|code> Get token details (e.g., SBX, DBX)
/dex search \x3Cquery> Search tokens
/dex price \x3Ccode> Get token price
Pairs
/dex pairs List trading pairs
/dex pair \x3Cid> 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
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install dexie - After installation, invoke the skill by name or use
/dexie - Provide required inputs per the skill's parameter spec and get structured output
What is Dexie?
Track Chia DEX offers, tokens, pairs, prices, and platform stats using Dexie.space API via CLI or chat commands. It is an AI Agent Skill for Claude Code / OpenClaw, with 1616 downloads so far.
How do I install Dexie?
Run "/install dexie" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Dexie free?
Yes, Dexie is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Dexie support?
Dexie is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Dexie?
It is built and maintained by Koba42Corp (@koba42corp); the current version is v1.0.0.