aiusd-pro
/install aiusd-pro
AIUSD Pro
Chat with AIUSD using natural language. This skill delegates to a backend AI agent — you do NOT need to understand AIUSD internals or construct specific commands.
CLI entry point
All commands in this skill use npx -y aiusd-pro as the CLI prefix. This works without any global installation — npx resolves the package from npm automatically.
If aiusd-pro is already in PATH (via npm install -g aiusd-pro), you may use aiusd-pro directly instead.
When to use
Use when the user wants anything related to AIUSD or trading through natural conversation. Examples:
- "What are my balances?"
- "Buy 100 USDC worth of SOL"
- "Stake 500 AIUSD"
- "Long ETH 5x on HyperLiquid"
- "Show trending tokens"
Authentication
If npx -y aiusd-pro send fails with auth error, run login:
npx -y aiusd-pro login --browser→ prints JSON withurlandsession_id- Send the
urlto the user (NEVER fabricate it) npx -y aiusd-pro login --poll-session \x3Csession_id>→ waits for sign-in
Usage
Send a message (background mode)
Backend agent operations take 10-300 seconds (tool calls, reasoning, trading, transaction confirmation). Always use background mode to avoid exec timeout cutting off output:
bash background:true command:"npx -y aiusd-pro send 'user request here'"
Returns a sessionId. Then poll for completion and retrieve output:
process action:poll sessionId:\x3Cid>
process action:log sessionId:\x3Cid>
Complete pattern:
- Start:
bash background:true command:"npx -y aiusd-pro send 'What are my balances?'"→ returnssessionId: abc123 - Wait & poll:
process action:poll sessionId:abc123→ returnsrunningorexited - Get output:
process action:log sessionId:abc123→ returns the agent's full response text - Relay output to user as-is
Multi-turn conversation
Session context is maintained automatically across send calls.
The backend agent remembers all previous messages in the session.
Confirmation flow example:
bash background:true command:"npx -y aiusd-pro send 'Buy 100 USDC worth of SOL'"- Poll + log → agent responds: "Will buy ~0.65 SOL at $153. Confirm?"
- Relay to user, user says "yes"
bash background:true command:"npx -y aiusd-pro send 'yes'"- Poll + log → agent responds: "Done. TX: abc123..."
- Relay to user
Follow-up questions work the same way — just send the user's
response. The backend has full conversation history.
To start a fresh conversation:
bash command:"npx -y aiusd-pro session reset"
Cancel
bash command:"npx -y aiusd-pro cancel"
Session management
bash command:"npx -y aiusd-pro session new"
bash command:"npx -y aiusd-pro session list"
bash command:"npx -y aiusd-pro session reset"
Rules
- Always use
background:trueforsend— agent responses take 10-300s. - Pass user intent as natural language — do NOT interpret or construct specific trading commands.
- Backend agent handles all domain knowledge, tool selection, and multi-step reasoning.
- Relay stdout to user as-is — already formatted for humans.
The output includes a browser link at the end (e.g.
https://aiusd.ai/chat/\x3Csession-id>). Always include this link when relaying the response — it lets browser-login users continue the conversation in the web UI. - If response asks for confirmation or more info, relay to user,
then
sendtheir reply back (same session, same pattern). - Run commands sequentially — only one active
sendper session. - Short commands (
session reset,cancel,login) can run foreground (nobackground:trueneeded).
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install aiusd-pro - 安装完成后,直接呼叫该 Skill 的名称或使用
/aiusd-pro触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
aiusd-pro 是什么?
AIUSD Pro — AI-powered trading agent with built-in reasoning. Use when user wants to trade, check balances, or manage positions through natural language conv... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 244 次。
如何安装 aiusd-pro?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install aiusd-pro」即可一键安装,无需额外配置。
aiusd-pro 是免费的吗?
是的,aiusd-pro 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
aiusd-pro 支持哪些平台?
aiusd-pro 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 aiusd-pro?
由 tech@aiusd(@tech-fe-aiusd)开发并维护,当前版本 v1.0.0。