Install
openclaw skills install aiusd-proAIUSD Pro — AI-powered trading agent with built-in reasoning. Use when user wants to trade, check balances, or manage positions through natural language conv...
openclaw skills install aiusd-proChat 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.
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.
Use when the user wants anything related to AIUSD or trading through natural conversation. Examples:
If npx -y aiusd-pro send fails with auth error, run login:
npx -y aiusd-pro login --browser → prints JSON with url and session_idurl to the user (NEVER fabricate it)npx -y aiusd-pro login --poll-session <session_id> → waits for sign-inBackend 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:<id>
process action:log sessionId:<id>
Complete pattern:
bash background:true command:"npx -y aiusd-pro send 'What are my balances?'"
→ returns sessionId: abc123process action:poll sessionId:abc123
→ returns running or exitedprocess action:log sessionId:abc123
→ returns the agent's full response textSession 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'"bash background:true command:"npx -y aiusd-pro send 'yes'"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"
bash command:"npx -y aiusd-pro cancel"
bash command:"npx -y aiusd-pro session new"
bash command:"npx -y aiusd-pro session list"
bash command:"npx -y aiusd-pro session reset"
background:true for send — agent responses take 10-300s.https://aiusd.ai/chat/<session-id>).
Always include this link when relaying the response — it lets browser-login users
continue the conversation in the web UI.send their reply back (same session, same pattern).send per session.session reset, cancel, login) can run foreground
(no background:true needed).