CLI Commands

Complete reference for all Aura OS command-line interface commands.

Quick Reference

aura setup # Initialize wallet
aura chat "message" # Send AI command
aura gas # Real-time gas prices
aura gashistory # Historical gas trends
aura tx <hash> # Analyze transaction
aura decode "0x..." # Decode calldata
aura logs "0x..." # Inspect event logs
aura multicall # Batched contract reads
aura script create # Build custom automations
aura research "eth" # Deep project research
aura news "solana" # Get market alpha
aura analyze "0x..." # Smart contract audit
aura approve "0x..." # Scan & revoke approvals
aura honeypot "0x..." # Scam/honeypot detection
aura risk "0x..." # Token risk score
aura abi "0x..." # Get smart contract ABI
aura convert # Convert tokens
aura swap "ETH USDC" # Uniswap V3 swap
aura send "1 ETH..." # Send assets
aura stake "0.5 lido" # Liquid staking
aura pnl "0x..." # On-chain P&L
aura export "0x..." # Export tx history
aura alert # Set live alerts
aura ens "vitalik..." # Resolve ENS
aura call "0x..." # Read contract
aura wrap "1" # Convert ETH to WETH
aura nft "0x..." # Analyze NFTs
aura price "eth" # Real-time token prices
aura simulate "0x..." # Test transaction
aura bridge "1 USDC" # Cross-chain bridge
aura summarize "0x..." # AI explain contract
aura setup

Initialize Aura OS by securely storing your wallet's private key. The key is encrypted using AES-256 encryption and stored locally on your device.

Interactive Onboarding

aura setup
Welcome to Aura OS - AI Agent Manager
? Enter your private key (Silent Input):
? Set Master Password (Silent Input):
✓ Vault encrypted and saved.
aura chat "message"

The primary way to interact with Aura. Uses a self-correcting AI brain to execute your natural language commands.

aura chat "Show my portfolio"
Aura is thinking...
✓ Valid command: PORTFOLIO
Fetching asset data across 8 chains...
aura gas

Real-time gas price monitoring across all supported L1 and L2 networks. Results are automatically synced to your dashboard.

aura gas
Ethereum Mainnet: 12.4 Gwei
Base: 0.0041 Gwei
zkSync Era: 0.0120 Gwei
aura tx <hash> [--json]

Forensic transaction analysis. Provides status, gas consumption, event logs, and detailed breakdown of any transaction.

aura tx 0x4a7b...
=== Transaction Analysis ===
Status: SUCCESS
Value: 0.5 ETH
Gas Used: 21,000
aura script [list|create]

The automation engine. Create custom TypeScript scripts that have access to Aura's AI and Blockchain executors.

aura script create sweep-assets
✓ Boilerplate created: ./scripts/sweep-assets.ts
Use 'aura run sweep-assets' to execute.
aura status

Quickly check the health of your local system, vault, and cloud synchronization.

aura status
⚡ Aura OS Status
✓ Wallet: 0x742...
✓ Sync: Connected (Supabase)
aura research [topic]

Performs deep, AI-powered research on any crypto project or ecosystem. Aggregates data from 25+ trusted sources including Messari, CoinDesk, and The Block.

aura research "Ethereum ecosystem"
Aura is gathering intelligence...
🧠 Analyzing 25+ sources for "Ethereum ecosystem"...
Found 18 relevant articles. Synthesizing report...
ETH RESEARCH REPORT v0.1
Overview: The Ethereum ecosystem remains the leading L1 for DeFi and NFTs...
aura news [topic]

Fetch the latest trending news and alpha. Use aura watch to keep the alpha stream running in the background.

News Feed
aura news
[Breaking] Vitalik proposes new EIP...
Source: The Block | 2m ago
Alpha Watch
aura watch 15
Starting 15m alpha watch...
[Live] BTC hit new ATH on Base L2...
aura analyze [address]

A forensic tool for smart contracts. Supports **Trader Mode** (Risk assessment/Red flags) and **Developer Mode** (Bytecode analysis/Forensics).

aura analyze 0xA0b86991...
🔎 Security Analysis for USDC (Ethereum)
✓ Contract Verified
✓ Implementation: 0x4350... (Transparent Proxy)
⚠ Risk Level: Low (Blacklist capability detected)
aura reset-password

Manage your Vault's security. Change your master password or recover access using your private key if forgotten.

All inputs are Invisible (Linux-style) for your protection. No characters will appear as you type.

Supported Actions

The AI Interpreter recognizes these actions from your natural language commands:

CHECK_BALANCE

Query token balance for connected wallet

Triggers: "check", "balance", "how much"

SEND_TOKEN

Transfer tokens to another address

Triggers: "send", "transfer", "gửi"

SWAP_TOKEN

Swap between supported tokens

Triggers: "swap", "exchange", "convert"

RESEARCH

Generate comprehensive project reports

Triggers: "research", "analyze", "deep dive"

NEWS

Get real-time market updates

Triggers: "news", "happening", "latest"

PORTFOLIO

Show all holdings across chains

Triggers: "portfolio", "holds", "tài sản"

Supported tokens: ETH, SUI, USDT, USDC

Error Handling

Aura OS provides clear error messages when something goes wrong:

❌ Error: Message is required

You called aura chat without a message. Add your command in quotes.

⚠ Wallet not configured

Run aura setup first to configure your wallet.

⚠ OpenAI API key not found

Set OPENAI_API_KEY in your .env file.

aura stake <amount> <protocol> [--info]

Stake ETH directly into liquid staking protocols — Lido (stETH, ~3.8% APR) or Rocket Pool (rETH, ~3.6% APR). Runs on Ethereum mainnet only. Use --info to view existing positions.

aura stake 0.5 lido
Stake: 0.5 ETH → ~0.5 stETH
Est APR: 3.8% (~0.019 ETH/year)
✓ Staked 0.5 ETH on Lido!
aura export <address> [--format csv|json] [--output <dir>]

Export complete transaction history as CSV or JSON. Fetches both native and ERC-20 transfers, deduplicates by hash, and sorts chronologically. Compatible with Koinly, CoinTracker, TaxBit, and CryptoTaxCalc. Requires ETHERSCAN_API_KEY.

aura export 0xd8dA6BF... --format json --output ./reports
✓ Export Complete
Records: 1,106 | Sends: 423 | Receives: 680
aura pnl <address>

Calculate on-chain profit & loss by introspecting transaction history. Shows total ETH invested, current portfolio value, unrealized gains/losses, and overall ROI.

aura pnl 0xd8dA6BF...
P&L Summary
Invested: 12.40 ETH | Current: 15.82 ETH
Gain: +3.42 ETH (+27.6% ROI)
aura swap

Swap ERC-20 tokens via the Uniswap V3 router directly from the vault-secured CLI. Shows a transaction preview with expected output and slippage before execution.

aura swap
From token: ETH
To token: USDC
Amount: 0.1
Expected: ~312.45 USDC (slippage: 0.5%)
✓ Swap successful!
aura multicall

Execute multiple smart contract view/pure function calls in a single RPC request using the Multicall3 standard (0xcA11...). Dramatically reduces latency for multi-data queries.

aura multicall
3 calls batched → 1 RPC request (120ms)
✓ Results returned
aura decode <calldata> [--abi <file>]

Decode raw transaction calldata into a human-readable function signature and argument list. Resolves ABI automatically from Etherscan, or accepts a local --abi my.json file.

aura decode 0xa9059cbb000000000000000000000000...
Function: transfer(address to, uint256 amount)
to: 0xd8dA6BF...
amount: 1,000,000,000 (1000 USDC)
aura logs <address> [--event <name>] [--blocks <n>]

Fetch and display on-chain event logs for any contract. Filter by event signature (--event Transfer), block window (--blocks 1000), or raw topic hash.

aura logs 0xA0b86991... --event Transfer --blocks 500
Found 48 Transfer events
[19443210] Transfer 50,000 USDC → 0x742d...
aura gashistory [--blocks <n>]

Displays historical gas price trends by sampling blocks over the specified window. Useful for planning transactions during off-peak hours.

aura gashistory --blocks 100
p25: 8.2 Gwei | p50: 11.4 Gwei | p75: 16.8 Gwei
Lowest: 7.1 Gwei (12 blocks ago)
aura alert

Set real-time on-chain alerts for price thresholds, gas prices, or wallet balance changes. Fires an instant terminal notification when conditions are met.

aura alert
Alert type: gas | price | balance
🔔 ALERT: Gas dropped below 10 Gwei (current: 8.4)
aura risk <token-address>

Rapid risk scoring for any ERC-20 token. Evaluates liquidity depth, top-holder supply concentration, proxy/upgrade risk, and verified source status. Returns a 0-100 risk score with a verdict.

aura risk 0xA0b86991...
Risk Score: 18/100
Verdict: LOW RISK ✓
Liquidity: $4.2B | Top-10 Hold: 42%

Next Steps