Overview
AIUSD provides two official skills for integrating trading capabilities into AI agents:AIUSD Core
Structured CLI toolsYour agent’s LLM calls trading commands directly via MCP. You control the reasoning and orchestration.No platform inference cost.
AIUSD Pro
Managed AI agentDelegates to a backend agent that handles reasoning, tool selection, and multi-step execution.Natural language in, results out.
Which Should I Use?
| Core | Pro | |
|---|---|---|
| How it works | Agent calls CLI/MCP tools directly | Messages sent to managed backend agent |
| Reasoning | Client-side (your agent’s LLM) | Server-side (AIUSD backend) |
| Interface | Structured commands | Natural language |
| Multi-step flows | Agent manages state | Backend maintains session context |
| Inference cost | None — bring your own LLM | Included |
| Best for | Developers building custom agents | End users and turnkey integrations |
| Trade-off | More control, requires capable host agent | Easier setup, less granular control |
AIUSD Core
Structured CLI tools and MCP integration. Your agent invokes trading commands and handles orchestration.Installation
- Claude Code / Codex / Cursor
- OpenClaw
- npm
- Manual
Authentication
CLI Usage
Command Reference
| Domain | Commands |
|---|---|
| Account | aiusd-core balances, aiusd-core accounts, aiusd-core transactions, aiusd-core get-deposit-address |
| Spot | aiusd-core spot buy -b SOL -a 100, aiusd-core spot sell -b ETH -a all |
| Perpetuals | aiusd-core perp long --asset ETH --size 0.1 --leverage 10, aiusd-core perp close --asset ETH, aiusd-core perp deposit --amount 100, aiusd-core perp withdraw --amount 50 |
| HyperLiquid Spot | aiusd-core hl-spot buy --coin HYPE --amount 100, aiusd-core hl-spot sell --coin PURR --amount 50 |
| Prediction Markets | aiusd-core pm buy --market "bitcoin-100k" --outcome Yes --amount 10, aiusd-core pm sell, aiusd-core pm positions, aiusd-core pm orders, aiusd-core pm search -q "election", aiusd-core pm cancel --order-id <id> |
| Monitoring | aiusd-core monitor add --handle @elonmusk --budget 100, aiusd-core monitor list, aiusd-core monitor cancel --order-id <id> |
| Market Data | aiusd-core market hot-tokens |
| Staking | aiusd-core call genalpha_stake_aiusd -p '{"amount":"100"}', aiusd-core call genalpha_unstake_aiusd -p '{"amount":"50"}' |
aiusd-core guide <domain> before executing commands to get the latest parameter reference.
Source: github.com/galpha-ai/aiusd-core
AIUSD Pro
Natural language interface to a managed backend agent. Send messages in plain language — the agent handles reasoning, execution, and transaction confirmation.Installation
- Claude Code / Codex / Cursor
- OpenClaw
- npm
- Manual
Authentication
Usage
How It Works
- Send — your message is posted to the AIUSD backend agent
- Reason — the agent selects tools, plans execution, and handles multi-step logic
- Execute — trades are placed and transactions confirmed automatically
- Respond — results stream back in natural language
What You Can Ask
| Domain | Examples |
|---|---|
| Spot Trading | ”Buy $100 of SOL”, “Sell all my ETH”, “Swap TRUMP for USDC” |
| Perpetuals | ”Long ETH 10x”, “Short BTC at $70k”, “Close my position” |
| Account | ”What’s my balance?”, “Show my deposit addresses” |
| Staking | ”Stake 500 AIUSD”, “Unstake my AIUSD” |
| Market Data | ”What’s trending?”, “Show xStock prices” |
Session Management
Supported Platforms
Both skills support the same platforms:| Platform | Install |
|---|---|
| Claude Code | npx skills add or symlink to ~/.claude/skills/ |
| Codex | npx skills add or symlink to ~/.codex/skills/ |
| Cursor | npx skills add or symlink to .cursor/skills/ |
| OpenClaw | .skill file or symlink to ~/.openclaw/skills/ |
| GitHub Copilot | Symlink to .github/skills/ |
Security
Local-First Authentication
Local-First Authentication
Authentication tokens stored locally on your device in
~/.aiusd/. No credentials sent to third parties.Secure Storage
Secure Storage
Token files written with restrictive permissions (0600). Wallet mnemonic stored separately.
Open Source
Open Source
All skill code is transparent and auditable on GitHub.
Troubleshooting
Authentication Issues
--new-wallet.

