Track Chia DEX offers, tokens, pairs, prices, and platform stats using Dexie.space API via CLI or chat commands.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install dexie或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install dexie⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/dexie/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
Track Chia DEX trading via the Dexie.space API.
All commands can be triggered via:
/dex in Telegram/dexie in Telegramdex in CLIdexie in CLI/dex offers List active offers
/dex offers completed List completed offers
/dex offers cancelled List cancelled offers
/dex offer <id> Get offer details
/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
/dex pairs List trading pairs
/dex pair <id> Get pair details
/dex stats Get platform statistics
/dex SBX Quick price lookup
/dex DBX Quick price lookup
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');
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();
cd skills/dexie
npm install
chmod +x cli.js
npm link # Makes 'dex' and 'dexie' global
No API key required — Dexie API is public.
All commands return plain text suitable for:
Check token price:
/dex price SBX
List active offers:
/dex offers
Search for a token:
/dex search bucks
Get platform stats:
/dex stats
安装 Dexie 后,可以对 AI 说这些话来触发它
Help me get started with Dexie
Explains what Dexie does, walks through the setup, and runs a quick demo based on your current project
Use Dexie to track Chia DEX offers, tokens, pairs, prices, and platform stats us...
Invokes Dexie with the right parameters and returns the result directly in the conversation
What can I do with Dexie in my developer & devops workflow?
Lists the top use cases for Dexie, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/dexie/ 目录(个人级,所有项目可用),或 .claude/skills/dexie/(项目级)。重启 AI 客户端后,用 /dexie 主动调用,或让 AI 根据上下文自动发现并使用。
Dexie 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Dexie 可免费安装使用。请查阅仓库了解许可证信息。
Track Chia DEX offers, tokens, pairs, prices, and platform stats using Dexie.space API via CLI or chat commands.
Dexie 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using Dexie
Identifies repetitive steps in your workflow and sets up Dexie to handle them automatically