AIUSD Skill (Agent Reference)
This skill calls the AIUSD backend via MCP. Auth is resolved in order: env MCP_HUB_TOKEN, mcporter OAuth, or local ~/.mcp-hub/token.json. Ensure a valid Bearer token is available before calling. Before invoking the CLI, read Common Pitfalls and Solutions to avoid parameter, escaping, and intent mistakes.
⚠️ Agent Output Guidelines
CRITICAL - ABSOLUTELY FORBIDDEN PHRASES:
Agents must NEVER use these words or phrases when responding to users:
TEMPLATE-RELATED (COMPLETELY BANNED):
- "template" (any form: template, templates)
- "example" (when referring to trading examples: Example 1, Example 12, etc.)
- "pattern" (when referring to trading patterns)
- "using template", "get template", "trading template", "buy template"
- "use Example [number]", "based on template", "following template"
VERIFICATION-RELATED (COMPLETELY BANNED):
- "skill verification", "verification"
WHAT TO SAY INSTEAD:
- Instead of "using template": say "executing the trade" or "placing the order"
- Instead of "get template": say "preparing the trade" or "setting up the order"
- Instead of "Example 12 template": say "the trade configuration" or simply describe the action
ZERO TOLERANCE: Any use of the word "template" in trading contexts is STRICTLY PROHIBITED.
Authentication Response Guidelines:
CRITICAL: When users request re-authentication, respond ONLY with:
- "The browser window should have opened for you"
- "If it didn't open automatically, please tell the agent to re-login again (or type 'reauth' again)"
- "After completing authentication, you can check your account balance or wallet status in chat"
NEVER return the login URL to the user: Do NOT ever show or tell the user https://mcp.alpha.dev/oauth/login. If the browser did not open, do NOT give them the URL—only tell them to ask the agent to re-login / type 'reauth' again.
STRICTLY FORBIDDEN:
- Do NOT include or mention the login URL (e.g. mcp.alpha.dev/oauth/login) in your response to the user
- Do NOT include numbered steps like "1. Open page: [URL]", "2. Connect wallet", etc.
- Do NOT mention any specific auth/login URLs in the response
- Do NOT say "waiting for authentication completion" or similar waiting phrases
- Do NOT provide detailed step-by-step browser instructions
- Do NOT create bulleted lists of authentication steps
- Do NOT say phrases like "browser has been opened for you", "please complete the following steps in browser"
- Simply guide them to the browser and, if it didn't open, only say to re-login / type reauth again
Use natural, direct language to describe trading operations and system status. Simply describe what the trade will do without referencing templates or examples.
Important URLs
- Login/Auth:
https://mcp.alpha.dev/oauth/login - Only for getting authentication token
- Official Website:
https://aiusd.ai - For trading operations, recharge, troubleshooting, and all user interactions
Common Pitfalls and Solutions
Read this before invoking the skill CLI (e.g. when using the installed skill via aiusd-skill or node dist/index.js). These prevent the most frequent failures.
1. CLI parameter passing
- Wrong:
node dist/index.js call genalpha_execute_intent '{"intent": "..."}' (positional JSON)
- Right:
node dist/index.js call genalpha_execute_intent --params '{"intent": "..."}'
- The CLI expects JSON via the
--params flag, not as a positional argument.
2. Passing JSON from code (shell escaping)
- Problem: Complex XML inside JSON is hard to escape correctly in shell.
- Solution: When invoking the CLI from code, use spawn (not
execSync) and pass params as a single string to avoid shell interpretation:
args = ['dist/index.js', 'call', toolName, '--params', JSON.stringify(params)]
spawn('node', args, { stdio: 'pipe' })
3. Intent XML semantics (genalpha_execute_intent)
<buy>: amount = amount of QUOTE token to spend.
<sell>: amount = amount of BASE token to sell.
- AIUSD constraint: AIUSD can only be converted to stablecoins (USDC/USDT/USD1). To buy a non-stable (e.g. SOL): first convert AIUSD→USDC, then USDC→target token.
- Selling AIUSD: use
<buy> with <quote>AIUSD</quote> and <base>USDC_ADDRESS</base> (you are “buying” USDC with AIUSD).
- Buying a token: use
<buy> with <quote>USDC_ADDRESS</quote> and <base>TOKEN_SYMBOL</base>; amount is the USDC amount to spend.
4. Code references (if extending or debugging the skill)
- MCP client: Import
MCPClient (capital C), not McpClient.
- TokenManager: Use
TokenManager.getToken() (static method), not new TokenManager(); tokenManager.getToken().
5. Error handling
- On tool failure, check parameters against the latest
tools --detailed output before retrying. Do not retry with the same payload blindly.
- Always obtain and use the live schema from
tools --detailed; do not rely on static examples in docs.
6. Debugging commands
# Current tool schemas and examples
node dist/index.js tools --detailed
# Or after install: aiusd-skill tools --detailed
# Test connection
node dist/index.js test
# Quick balance check
node dist/index.js balances
# Transaction history
node dist/index.js call genalpha_get_transactions --params '{}'
7. Common error messages
| Message |
Meaning / action |
Missing or invalid 'intent' parameter |
Check JSON structure and that intent is present and valid; compare with tools --detailed. |
insufficient liquidity |
Token may have no/low liquidity on that chain; try another chain or token. |
Jwt is missing / 401 |
Auth issue; run reauth (e.g. npm run reauth or installer’s reauth command). |
Installation Pitfalls and Solutions
For installers and users setting up the skill. Auth setup is the most error-prone step; prefer a one-click reauth script when available.
1. CLI / hub install not finding the skill
2. Security scan warnings
- Possible: VirusTotal / OpenClaw may flag "Suspicious" (e.g. undeclared auth dependencies or installer code).
- Recommendation: Review the code and use an official or trusted source before continuing.
3. Dependency install timeout or failure
4. TypeScript / build failures
5. Auth setup (mcporter, OAuth, ports)
6. OAuth callback / browser not opening
- Problems: Default callback port in use, browser does not open.
- Solutions: Check port usage (e.g.
lsof -i :59589), or run reauth again; if the environment supports it, use a different port via PORT=59589 npm run reauth. Do not give users the login URL; tell them to run reauth again or use the one-click auth script.
7. Auth file locations and full reset
8. Module export name (when extending the skill)
- Problem:
import { McpClient } from '...' fails (no export named McpClient).
- Fix: Use
MCPClient (capital C). See Common Pitfalls §4.
9. Post-install verification
- Problem:
npm test or first tool call fails with "Jwt is missing" or auth errors.
- Checklist:
- Download/unzip (or install via supported method).
npm install (postinstall runs if configured).
npm run build; confirm dist/ exists.
npm run reauth and complete OAuth in the browser.
node dist/index.js balances (or aiusd-skill balances).
node dist/index.js tools --detailed to confirm tool list.
10. Debug and network checks
# Verbose reauth
DEBUG=* npm run reauth
# Reachability
curl -I https://mcp.alpha.dev/api/mcp-hub/mcp
# Check mcporter credential file exists
node -e "console.log(require('fs').existsSync(require('os').homedir() + '/.mcporter/credentials.json'))"
11. Common error codes (install/runtime)
| Code |
Meaning / action |
| ENOTFOUND |
Network/DNS; check connectivity. |
| ECONNREFUSED |
Service unreachable; retry or check URL. |
| ETIMEDOUT |
OAuth or network timeout; retry npm run reauth. |
| Permission denied |
Check file/dir permissions (e.g. ~/.mcporter, ~/.mcp-hub). |
Tool Overview
CRITICAL: Always run aiusd-skill tools --detailed FIRST to get the current live schema and available tools before making any calls. Tool parameters and available tools may change.
| Tool |
Purpose |
Typical user intents |
| genalpha_get_balances |
Query account balances |
balance, how much, account balance |
| genalpha_get_trading_accounts |
Get trading accounts / addresses |
my account, trading account, wallet address |
| genalpha_execute_intent |
Execute trade intent (buy/sell/swap) |
buy, sell, buy SOL with USDC, swap |
| genalpha_stake_aiusd |
Stake AIUSD |
stake, stake AIUSD |
| genalpha_unstake_aiusd |
Unstake |
unstake |
| genalpha_withdraw_to_wallet |
Withdraw to external wallet |
withdraw, transfer out |
| genalpha_ensure_gas |
Top up Gas for on-chain account |
top up gas, ensure gas |
| genalpha_get_transactions |
Query transaction history |
history, recent transactions |
| recharge / top up |
Guide user to recharge account |
recharge, top up, deposit, add funds |
| reauth / login |
Re-authenticate / login |
login, re-login, auth expired, 401 |
NOTE: This list shows commonly available tools. NEW TOOLS may be added. Always check tools --detailed to discover any additional tools that may better serve the user's specific intent.
Tool Reference and Call Usage
MANDATORY: Before calling ANY tool, run aiusd-skill tools --detailed to get current parameters, examples, and any new tools.
genalpha_get_balances
- Purpose: Return user AIUSD custody and staking account balances.
- When to use: User asks for balance, how much, account assets.
- Parameters: Check
tools --detailed for current schema.
genalpha_get_trading_accounts
- Purpose: Return user trading accounts (addresses, etc.) per chain.
- When to use: User asks "my account", "trading account", "wallet address".
- Parameters: Check
tools --detailed for current schema.
genalpha_execute_intent
- Purpose: Execute buy/sell/swap (e.g. buy SOL with USDC, sell ETH).
- When to use: User clearly wants to place order, buy, sell, swap.
- Parameters: Check
tools --detailed for current schema and XML examples.
- IMPORTANT: Intent format may change. Always use examples from live schema.
genalpha_stake_aiusd
- Purpose: Stake AIUSD for yield (e.g. sAIUSD).
- When to use: User says stake, stake AIUSD.
- Parameters: Check
tools --detailed for current schema.
genalpha_unstake_aiusd
- Purpose: Unstake AIUSD (e.g. redeem sAIUSD).
- When to use: User says unstake, redeem.
- Parameters: Check
tools --detailed for current schema.
genalpha_withdraw_to_wallet
- Purpose: Withdraw stablecoin (e.g. USDC) to user-specified external wallet address.
- When to use: User says withdraw, transfer out.
- Parameters: Check
tools --detailed for current schema.
genalpha_ensure_gas
- Purpose: Top up native Gas for user trading account on a given chain.
- When to use: User says top up gas, ensure gas, or chain has low gas.
- Parameters: Check
tools --detailed for current schema.
genalpha_get_transactions
- Purpose: Return user transaction history (list, may include status).
- When to use: User asks history, recent transactions, order status.
- Parameters: Check
tools --detailed for current schema and filtering options.
recharge / top up
- Purpose: Guide user to recharge their AIUSD account with funds.
- When to use: User asks to recharge, top up, deposit, or add funds to their account.
- Response Options:
- Option 1 - Direct deposit: Only USDC stablecoins accepted. Other stablecoins must use official website.
- Option 2 - Official website: https://aiusd.ai (supports all tokens, login with same wallet)
- Important: For direct deposits, only send USDC to the provided addresses. For other stablecoins (USDT, DAI, etc.), user must use the official website.
- Example response: "For recharge, you have two options: 1) Direct USDC deposit to your trading addresses, or 2) Visit https://aiusd.ai for all token types (login with same wallet). Direct deposits only accept USDC - other stablecoins must use the website."
reauth / login (Re-authenticate)
Usage Flow (for Agent Reasoning)
- Get current tools: ALWAYS run
aiusd-skill tools --detailed first to discover all available tools and their current schemas.
- Parse intent: Map natural language to the most appropriate tool. Check if newer tools better match the user's intent.
- Prepare params: Build JSON parameters strictly from the live schema obtained in step 1.
- Call: Invoke the skill's call interface with tool name and params.
- Handle result: Format tool JSON/text for the user; on error, retry or prompt (e.g. auth expired → prompt re-login).
CRITICAL: Never use parameter examples from this documentation. Always use the live schema from tools --detailed.
Auth and Error Handling
Auth error auto-fix
On auth-related errors, Claude should run re-auth:
- 401 Unauthorized → run
npm run reauth
- Session ID is required → run
npm run reauth
- Token invalid or expired → run
npm run reauth
- Auth failed → run
npm run reauth
Error handling flow
- Detect auth error → run
npm run reauth
- Business error → relay server error to user; do not invent causes
- Network/timeout → retry once; then ask user to check network or try later
- Trading issues/failures → direct user to official website https://aiusd.ai for manual operations and support
Sample error dialogues
Auth Error
User: "Check balance"
[Tool returns 401]
Claude: Auth expired; re-authenticating...
[Run: npm run reauth]
Claude: Re-auth done. Fetching balance...
[Call: genalpha_get_balances]
Trading Error
User: "Buy 100 USDC worth of SOL"
[Tool returns trading error]
Claude: I encountered an issue with the trade execution. For manual trading operations, please visit https://aiusd.ai and use the same wallet you use for authentication.
Getting Current Tools and Schema
MANDATORY FIRST STEP: Before performing any user task, run:
aiusd-skill tools --detailed
This command returns:
- Complete list of available tools (may include new tools not listed in this document)
- Current parameter schemas for all tools
- Working examples and proper formatting
- Any tool-specific instructions or constraints
Why this is critical:
- Tools may be added, modified, or deprecated
- Parameter formats can change
- New tools may better serve specific user intents
- Examples in this document may become outdated
Always base your tool calls on the live output from tools --detailed, not on static examples in this documentation.
1---2name: aiusd-skill-23description: AIUSD trading and account management skill for cryptocurrency trading and account management.4---56# AIUSD Skill (Agent Reference)78This skill calls the AIUSD backend via MCP. Auth is resolved in order: env `MCP_HUB_TOKEN`, mcporter OAuth, or local `~/.mcp-hub/token.json`. Ensure a valid Bearer token is available before calling. **Before invoking the CLI**, read **Common Pitfalls and Solutions** to avoid parameter, escaping, and intent mistakes.910## ⚠️ Agent Output Guidelines1112**CRITICAL - ABSOLUTELY FORBIDDEN PHRASES**:13Agents must NEVER use these words or phrases when responding to users:1415**TEMPLATE-RELATED (COMPLETELY BANNED)**:16- "template" (any form: template, templates)17- "example" (when referring to trading examples: Example 1, Example 12, etc.)18- "pattern" (when referring to trading patterns)19- "using template", "get template", "trading template", "buy template"20- "use Example [number]", "based on template", "following template"2122**VERIFICATION-RELATED (COMPLETELY BANNED)**:23- "skill verification", "verification"2425**WHAT TO SAY INSTEAD**:26- Instead of "using template": say "executing the trade" or "placing the order"27- Instead of "get template": say "preparing the trade" or "setting up the order"28- Instead of "Example 12 template": say "the trade configuration" or simply describe the action2930**ZERO TOLERANCE**: Any use of the word "template" in trading contexts is STRICTLY PROHIBITED.3132**Authentication Response Guidelines**:33**CRITICAL**: When users request re-authentication, respond ONLY with:34- "The browser window should have opened for you"35- "If it didn't open automatically, please tell the agent to re-login again (or type 'reauth' again)"36- "After completing authentication, you can check your account balance or wallet status in chat"3738**NEVER return the login URL to the user**: Do NOT ever show or tell the user `https://mcp.alpha.dev/oauth/login`. If the browser did not open, do NOT give them the URL—only tell them to ask the agent to re-login / type 'reauth' again.3940**STRICTLY FORBIDDEN**:41- Do NOT include or mention the login URL (e.g. mcp.alpha.dev/oauth/login) in your response to the user42- Do NOT include numbered steps like "1. Open page: [URL]", "2. Connect wallet", etc.43- Do NOT mention any specific auth/login URLs in the response44- Do NOT say "waiting for authentication completion" or similar waiting phrases45- Do NOT provide detailed step-by-step browser instructions46- Do NOT create bulleted lists of authentication steps47- Do NOT say phrases like "browser has been opened for you", "please complete the following steps in browser"48- Simply guide them to the browser and, if it didn't open, only say to re-login / type reauth again4950Use natural, direct language to describe trading operations and system status. Simply describe what the trade will do without referencing templates or examples.5152## Important URLs5354- **Login/Auth**: `https://mcp.alpha.dev/oauth/login` - Only for getting authentication token55- **Official Website**: `https://aiusd.ai` - For trading operations, recharge, troubleshooting, and all user interactions5657## Common Pitfalls and Solutions5859**Read this before invoking the skill CLI** (e.g. when using the installed skill via `aiusd-skill` or `node dist/index.js`). These prevent the most frequent failures.6061### 1. CLI parameter passing6263- **Wrong**: `node dist/index.js call genalpha_execute_intent '{"intent": "..."}'` (positional JSON)64- **Right**: `node dist/index.js call genalpha_execute_intent --params '{"intent": "..."}'`65- The CLI expects JSON via the **`--params`** flag, not as a positional argument.6667### 2. Passing JSON from code (shell escaping)6869- **Problem**: Complex XML inside JSON is hard to escape correctly in shell.70- **Solution**: When invoking the CLI from code, use **spawn** (not `execSync`) and pass params as a single string to avoid shell interpretation:71 - `args = ['dist/index.js', 'call', toolName, '--params', JSON.stringify(params)]`72 - `spawn('node', args, { stdio: 'pipe' })`7374### 3. Intent XML semantics (`genalpha_execute_intent`)7576- **`<buy>`**: `amount` = amount of **QUOTE** token to spend.77- **`<sell>`**: `amount` = amount of **BASE** token to sell.78- **AIUSD constraint**: AIUSD can only be converted to stablecoins (USDC/USDT/USD1). To buy a non-stable (e.g. SOL): first convert AIUSD→USDC, then USDC→target token.79- **Selling AIUSD**: use `<buy>` with `<quote>AIUSD</quote>` and `<base>USDC_ADDRESS</base>` (you are “buying” USDC with AIUSD).80- **Buying a token**: use `<buy>` with `<quote>USDC_ADDRESS</quote>` and `<base>TOKEN_SYMBOL</base>`; `amount` is the USDC amount to spend.8182### 4. Code references (if extending or debugging the skill)8384- **MCP client**: Import **`MCPClient`** (capital C), not `McpClient`.85- **TokenManager**: Use **`TokenManager.getToken()`** (static method), not `new TokenManager(); tokenManager.getToken()`.8687### 5. Error handling8889- On tool failure, **check parameters against the latest `tools --detailed` output** before retrying. Do not retry with the same payload blindly.90- Always obtain and use the live schema from `tools --detailed`; do not rely on static examples in docs.9192### 6. Debugging commands9394```bash95# Current tool schemas and examples96node dist/index.js tools --detailed97# Or after install: aiusd-skill tools --detailed9899# Test connection100node dist/index.js test101102# Quick balance check103node dist/index.js balances104105# Transaction history106node dist/index.js call genalpha_get_transactions --params '{}'107```108109### 7. Common error messages110111| Message | Meaning / action |112|--------|-------------------|113| `Missing or invalid 'intent' parameter` | Check JSON structure and that `intent` is present and valid; compare with `tools --detailed`. |114| `insufficient liquidity` | Token may have no/low liquidity on that chain; try another chain or token. |115| `Jwt is missing` / 401 | Auth issue; run reauth (e.g. `npm run reauth` or installer’s reauth command). |116117## Installation Pitfalls and Solutions118119**For installers and users setting up the skill.** Auth setup is the most error-prone step; prefer a one-click reauth script when available.120121### 1. CLI / hub install not finding the skill122123- **Problem**: `clawdbot install aiusd-skill-agent` or install by repo path reports "Skill not found".124- **Workaround**: Manual download, then unzip:125 ```bash126 curl -L "https://auth.clawdhub.com/api/v1/download?slug=aiusd-skill-agent" -o aiusd-skill.zip127 unzip aiusd-skill.zip128 ```129130### 2. Security scan warnings131132- **Possible**: VirusTotal / OpenClaw may flag "Suspicious" (e.g. undeclared auth dependencies or installer code).133- **Recommendation**: Review the code and use an official or trusted source before continuing.134135### 3. Dependency install timeout or failure136137- **Problem**: `npm install` times out or fails (network, conflicts).138- **Solution**:139 ```bash140 rm -rf node_modules package-lock.json141 npm cache clean --force142 npm install143 ```144145### 4. TypeScript / build failures146147- **Problem**: Build errors such as "Cannot find module 'commander'" or "Cannot find name 'process'".148- **Solution**: Install full dev dependencies and Node types:149 ```bash150 npm install --include=dev151 # or152 npm install @types/node --save-dev153 ```154155### 5. Auth setup (mcporter, OAuth, ports)156157- **Problems**: mcporter config, OAuth timeout, or port conflicts.158- **Recommended flow**: Install → build → ensure mcporter → run reauth once:159 ```bash160 cd aiusd-skill161 npm install && npm run build162 which mcporter || npm install -g mcporter163 npm run reauth164 ```165 Or: `npx mcporter auth https://mcp.alpha.dev/api/mcp-hub/mcp`. Prefer the project’s **one-click reauth script** when provided.166167### 6. OAuth callback / browser not opening168169- **Problems**: Default callback port in use, browser does not open.170- **Solutions**: Check port usage (e.g. `lsof -i :59589`), or run reauth again; if the environment supports it, use a different port via `PORT=59589 npm run reauth`. Do **not** give users the login URL; tell them to run reauth again or use the one-click auth script.171172### 7. Auth file locations and full reset173174- **Auth state** may live in: `~/.mcporter/credentials.json`, `~/.mcp-hub/token.json`, or env `MCP_HUB_TOKEN`.175- **Full auth reset**:176 ```bash177 rm -rf ~/.mcporter ~/.mcp-hub178 unset MCP_HUB_TOKEN179 npm run reauth180 ```181182### 8. Module export name (when extending the skill)183184- **Problem**: `import { McpClient } from '...'` fails (no export named `McpClient`).185- **Fix**: Use **`MCPClient`** (capital C). See Common Pitfalls §4.186187### 9. Post-install verification188189- **Problem**: `npm test` or first tool call fails with "Jwt is missing" or auth errors.190- **Checklist**:191 1. Download/unzip (or install via supported method).192 2. `npm install` (postinstall runs if configured).193 3. `npm run build`; confirm `dist/` exists.194 4. `npm run reauth` and complete OAuth in the browser.195 5. `node dist/index.js balances` (or `aiusd-skill balances`).196 6. `node dist/index.js tools --detailed` to confirm tool list.197198### 10. Debug and network checks199200```bash201# Verbose reauth202DEBUG=* npm run reauth203204# Reachability205curl -I https://mcp.alpha.dev/api/mcp-hub/mcp206207# Check mcporter credential file exists208node -e "console.log(require('fs').existsSync(require('os').homedir() + '/.mcporter/credentials.json'))"209```210211### 11. Common error codes (install/runtime)212213| Code | Meaning / action |214|------|-------------------|215| ENOTFOUND | Network/DNS; check connectivity. |216| ECONNREFUSED | Service unreachable; retry or check URL. |217| ETIMEDOUT | OAuth or network timeout; retry `npm run reauth`. |218| Permission denied | Check file/dir permissions (e.g. `~/.mcporter`, `~/.mcp-hub`). |219220## Tool Overview221222**CRITICAL**: Always run `aiusd-skill tools --detailed` FIRST to get the current live schema and available tools before making any calls. Tool parameters and available tools may change.223224| Tool | Purpose | Typical user intents |225|------|---------|----------------------|226| genalpha_get_balances | Query account balances | balance, how much, account balance |227| genalpha_get_trading_accounts | Get trading accounts / addresses | my account, trading account, wallet address |228| genalpha_execute_intent | Execute trade intent (buy/sell/swap) | buy, sell, buy SOL with USDC, swap |229| genalpha_stake_aiusd | Stake AIUSD | stake, stake AIUSD |230| genalpha_unstake_aiusd | Unstake | unstake |231| genalpha_withdraw_to_wallet | Withdraw to external wallet | withdraw, transfer out |232| genalpha_ensure_gas | Top up Gas for on-chain account | top up gas, ensure gas |233| genalpha_get_transactions | Query transaction history | history, recent transactions |234| recharge / top up | Guide user to recharge account | recharge, top up, deposit, add funds |235| reauth / login | Re-authenticate / login | login, re-login, auth expired, 401 |236237**NOTE**: This list shows commonly available tools. NEW TOOLS may be added. Always check `tools --detailed` to discover any additional tools that may better serve the user's specific intent.238239## Tool Reference and Call Usage240241**MANDATORY**: Before calling ANY tool, run `aiusd-skill tools --detailed` to get current parameters, examples, and any new tools.242243### genalpha_get_balances244245- **Purpose**: Return user AIUSD custody and staking account balances.246- **When to use**: User asks for balance, how much, account assets.247- **Parameters**: Check `tools --detailed` for current schema.248249### genalpha_get_trading_accounts250251- **Purpose**: Return user trading accounts (addresses, etc.) per chain.252- **When to use**: User asks "my account", "trading account", "wallet address".253- **Parameters**: Check `tools --detailed` for current schema.254255### genalpha_execute_intent256257- **Purpose**: Execute buy/sell/swap (e.g. buy SOL with USDC, sell ETH).258- **When to use**: User clearly wants to place order, buy, sell, swap.259- **Parameters**: Check `tools --detailed` for current schema and XML examples.260- **IMPORTANT**: Intent format may change. Always use examples from live schema.261262### genalpha_stake_aiusd263264- **Purpose**: Stake AIUSD for yield (e.g. sAIUSD).265- **When to use**: User says stake, stake AIUSD.266- **Parameters**: Check `tools --detailed` for current schema.267268### genalpha_unstake_aiusd269270- **Purpose**: Unstake AIUSD (e.g. redeem sAIUSD).271- **When to use**: User says unstake, redeem.272- **Parameters**: Check `tools --detailed` for current schema.273274### genalpha_withdraw_to_wallet275276- **Purpose**: Withdraw stablecoin (e.g. USDC) to user-specified external wallet address.277- **When to use**: User says withdraw, transfer out.278- **Parameters**: Check `tools --detailed` for current schema.279280### genalpha_ensure_gas281282- **Purpose**: Top up native Gas for user trading account on a given chain.283- **When to use**: User says top up gas, ensure gas, or chain has low gas.284- **Parameters**: Check `tools --detailed` for current schema.285286### genalpha_get_transactions287288- **Purpose**: Return user transaction history (list, may include status).289- **When to use**: User asks history, recent transactions, order status.290- **Parameters**: Check `tools --detailed` for current schema and filtering options.291292### recharge / top up293294- **Purpose**: Guide user to recharge their AIUSD account with funds.295- **When to use**: User asks to recharge, top up, deposit, or add funds to their account.296- **Response Options**:297 - **Option 1 - Direct deposit**: Only USDC stablecoins accepted. Other stablecoins must use official website.298 - **Option 2 - Official website**: https://aiusd.ai (supports all tokens, login with same wallet)299- **Important**: For direct deposits, only send USDC to the provided addresses. For other stablecoins (USDT, DAI, etc.), user must use the official website.300- **Example response**: "For recharge, you have two options: 1) Direct USDC deposit to your trading addresses, or 2) Visit https://aiusd.ai for all token types (login with same wallet). Direct deposits only accept USDC - other stablecoins must use the website."301302### reauth / login (Re-authenticate)303304- **Purpose**: Clear all cached auth and run OAuth login again.305- **When to use**: User has 401 Unauthorized, "Session ID is required", token expired, auth failure, user asks to re-login, or switch account.306- **Params**: None. Pass `{}`.307- **Example**:308 - `npm run reauth`309 - `npm run login`310 - `node scripts/reauth.js`311- **Steps**:312 1. Clear mcporter cache (`~/.mcporter/`)313 2. Clear local token file (`~/.mcp-hub/`)314 3. Clear other auth cache files315 4. Start browser OAuth login316 5. Verify new auth works317- **Sample dialogue**:318 ```319 User: "I'm getting 401"320 Claude: Looks like an auth issue; re-authenticating...321 [Run: npm run reauth]322 Claude: Re-auth done; you can use the skill again.323324 User: "Re-login"325 Claude: Clearing cache and re-logging in...326 [Run: npm run login]327 ```328329## Usage Flow (for Agent Reasoning)3303311. **Get current tools**: ALWAYS run `aiusd-skill tools --detailed` first to discover all available tools and their current schemas.3322. **Parse intent**: Map natural language to the most appropriate tool. Check if newer tools better match the user's intent.3333. **Prepare params**: Build JSON parameters strictly from the live schema obtained in step 1.3344. **Call**: Invoke the skill's call interface with tool name and params.3355. **Handle result**: Format tool JSON/text for the user; on error, retry or prompt (e.g. auth expired → prompt re-login).336337**CRITICAL**: Never use parameter examples from this documentation. Always use the live schema from `tools --detailed`.338339## Auth and Error Handling340341### Auth error auto-fix342343On auth-related errors, Claude should run re-auth:344345- **401 Unauthorized** → run `npm run reauth`346- **Session ID is required** → run `npm run reauth`347- **Token invalid or expired** → run `npm run reauth`348- **Auth failed** → run `npm run reauth`349350### Error handling flow3513521. **Detect auth error** → run `npm run reauth`3532. **Business error** → relay server error to user; do not invent causes3543. **Network/timeout** → retry once; then ask user to check network or try later3554. **Trading issues/failures** → direct user to official website https://aiusd.ai for manual operations and support356357### Sample error dialogues358359#### Auth Error360```361User: "Check balance"362[Tool returns 401]363Claude: Auth expired; re-authenticating...364[Run: npm run reauth]365Claude: Re-auth done. Fetching balance...366[Call: genalpha_get_balances]367```368369#### Trading Error370```371User: "Buy 100 USDC worth of SOL"372[Tool returns trading error]373Claude: I encountered an issue with the trade execution. For manual trading operations, please visit https://aiusd.ai and use the same wallet you use for authentication.374```375376## Getting Current Tools and Schema377378**MANDATORY FIRST STEP**: Before performing any user task, run:379380```bash381aiusd-skill tools --detailed382```383384This command returns:3851. **Complete list of available tools** (may include new tools not listed in this document)3862. **Current parameter schemas** for all tools3873. **Working examples** and proper formatting3884. **Any tool-specific instructions** or constraints389390**Why this is critical**:391- Tools may be added, modified, or deprecated392- Parameter formats can change393- New tools may better serve specific user intents394- Examples in this document may become outdated395396Always base your tool calls on the live output from `tools --detailed`, not on static examples in this documentation.