CLI Commands
Every view in the TUI is also available as a standalone command for scripting and CI use.
Global Options
Section titled “Global Options”| Flag | Description | Default |
|---|---|---|
-n, --network <network> | mainnet, testnet, or localnet | mainnet |
-j, --json | Output as JSON | off |
DAO Commands
Section titled “DAO Commands”akita-dao info
Section titled “akita-dao info”Quick dashboard showing core DAO settings.
akita-dao infoakita-dao -n testnet infoakita-dao state
Section titled “akita-dao state”Full decoded global state — all configuration fields, app lists, fee structures, and proposal settings.
akita-dao stateakita-dao --json stateProposal Commands
Section titled “Proposal Commands”akita-dao proposals list
Section titled “akita-dao proposals list”List all proposals, newest first.
akita-dao proposals listakita-dao proposals list -s active # Draft + voting onlyakita-dao proposals list -s past # Rejected, approved, executedakita-dao proposals list -l 5 # Limit to 5 results| Flag | Description |
|---|---|
-s, --status <status> | Filter: active or past |
-l, --limit <number> | Limit number of results |
akita-dao proposals get <id>
Section titled “akita-dao proposals get <id>”Detailed view of a specific proposal with decoded actions.
akita-dao proposals get 117akita-dao --json proposals get 117Wallet Commands
Section titled “Wallet Commands”akita-dao wallet info
Section titled “akita-dao wallet info”Wallet global state — admin, controlled address, registration status.
akita-dao wallet infoakita-dao wallet plugins
Section titled “akita-dao wallet plugins”All installed plugins with method restrictions, cooldowns, and escrow assignments.
akita-dao wallet pluginsakita-dao wallet named-plugins
Section titled “akita-dao wallet named-plugins”Named plugin aliases mapping human-readable names to plugin keys.
akita-dao wallet named-pluginsakita-dao wallet escrows
Section titled “akita-dao wallet escrows”Escrow accounts with IDs, names, and lock status.
akita-dao wallet escrowsakita-dao wallet allowances
Section titled “akita-dao wallet allowances”Spending allowances per asset per escrow.
akita-dao wallet allowancesakita-dao wallet executions
Section titled “akita-dao wallet executions”Execution keys — pre-authorized transaction groups.
akita-dao wallet executionsakita-dao wallet balance
Section titled “akita-dao wallet balance”Check wallet balances.
akita-dao wallet balance # ALGO, AKTA, BONESakita-dao wallet balance 31566704 # Specific asset (USDC)akita-dao wallet balance -e rec_gov # Escrow balance| Flag | Description |
|---|---|
-e, --escrow <name> | Check a specific escrow’s balance |
JSON Output
Section titled “JSON Output”Add --json to any command for machine-readable output. BigInts are serialized as strings, byte arrays as hex.
akita-dao --json stateakita-dao --json proposals list -l 10akita-dao --json wallet pluginsNetwork Switching
Section titled “Network Switching”akita-dao -n testnet infoakita-dao -n testnet proposals listakita-dao -n localnet wallet plugins