
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
@aura-protocol/cli
Advanced tools
Aura Protocol CLI for the AURA autonomous treasury program on Solana

AURA is under active development. Program instructions, account layouts, policy semantics, SDK APIs, and deployment behavior may still change quickly. Do not use this code to secure production funds or serious treasury operations until a stable release and audit are published.
Terminal interface for the AURA autonomous treasury program on Solana.
Built on top of @aura-protocol/sdk-ts with full integration of the Ika Encrypt and dWallet
gRPC networks — the CLI drives the complete confidential proposal lifecycle end-to-end,
including automatic FHE ciphertext creation, policy decryption, and dWallet co-signing.
~/.aura/config.json@encrypt.xyz/pre-alpha-solana-client@ika.xyz/pre-alpha-solana-client--json output for piping and scripting--dry-run to preview instructions without sendingink dashboard for live treasury monitoring~/.config/solana/id.json%USERPROFILE%\.config\solana\id.jsonsolana airdrop 2 --url devnetpre-alpha-dev-1.encrypt.ika-network.net:443pre-alpha-dev-1.ika.ika-network.net:443npm install -g @aura-protocol/cli
Or run without installing:
npx @aura-protocol/cli --help
# Interactive setup — writes ~/.aura/config.json
aura config init
# Show resolved config (all sources merged)
aura config show
# Set individual values
aura config set --rpc-url https://devnet.helius-rpc.com/?api-key=YOUR_KEY
aura config set --wallet ~/.config/solana/id.json
Config resolution order (highest wins):
--rpc-url, --wallet, --program-id)AURA_RPC_URL, AURA_WALLET_PATH, AURA_PROGRAM_ID)~/.aura/config.json)~/.config/solana/id.json)The CLI exposes the full current AURA program surface through SDK/IDL-backed commands. Use these when a new policy, account, or control instruction does not need a bespoke workflow.
# Show all domains and instruction coverage
aura features
aura features --domain policy-control
aura features --maturity wallet
# List every current aura-core instruction grouped by domain
aura instruction list
# Inspect one instruction's account and argument schema
aura instruction schema configure_budget_envelope
# Build a serialized instruction without sending it
aura instruction build configure_budget_envelope \
--accounts @accounts.json \
--args @args.json
# Send any wallet-compatible instruction using the configured keypair
aura instruction send transition_agent_state \
--account treasury=<treasury-pda> \
--account authority=<wallet-pubkey> \
--arg newState=active \
--compute-units 600000
aura instruction send enforces signer requirements before broadcast. If an
instruction needs extra signers, pass one or more --extra-signer <keypair>
paths. Instructions that require external Encrypt or dWallet CPI state still
need those accounts to exist on devnet before the transaction can succeed.
# Create a treasury with policy limits
aura treasury create --agent-id my-agent --daily-limit 10000 --per-tx-limit 1000
# Show full treasury state
aura treasury show --agent-id my-agent
aura treasury show --agent-id my-agent --watch # live-refresh every 5s
# List all treasuries owned by your wallet
aura treasury list
# Propose a public (non-encrypted) transaction
aura treasury propose --agent-id my-agent --amount 500 --chain ethereum --recipient 0xdeadbeef...
# Pause / unpause execution
aura treasury pause --agent-id my-agent
aura treasury pause --agent-id my-agent --unpause
# Cancel the current pending transaction
aura treasury cancel --agent-id my-agent
# Register a dWallet reference (basic — no live signing)
aura dwallet register --agent-id my-agent \
--chain ethereum \
--dwallet-id dwallet-abc123 \
--address 0xdeadbeef... \
--balance 5000
# Register with live Ika signing metadata (required for execute/finalize)
aura dwallet register --agent-id my-agent \
--chain ethereum \
--dwallet-id dwallet-abc123 \
--address 0xdeadbeef... \
--balance 5000 \
--dwallet-account <pda> \
--authorized-user <pubkey> \
--message-metadata-digest <32-byte-hex> \
--public-key-hex <pubkey-hex>
# List registered dWallets
aura dwallet list --agent-id my-agent
The confidential flow uses the Ika Encrypt gRPC network to create and decrypt FHE ciphertexts. All encryption happens automatically — no manual ciphertext management needed.
# Ensure the Encrypt deposit account exists (required before any confidential operation)
aura confidential deposit ensure
# Configure scalar guardrails — auto-encrypts the three limit values via Ika Encrypt
aura confidential guardrails scalar \
--agent-id my-agent \
--daily-limit 10000 \
--per-tx-limit 1000 \
--spent-today 0
# Or attach pre-created ciphertext accounts directly
aura confidential guardrails scalar \
--agent-id my-agent \
--daily-limit-ciphertext <pk> \
--per-tx-ciphertext <pk> \
--spent-today-ciphertext <pk>
# Show confidential guardrails and pending state
aura confidential status --agent-id my-agent
# Propose a confidential transaction — auto-encrypts the amount via Ika Encrypt
aura confidential propose \
--agent-id my-agent \
--amount 250 \
--chain ethereum \
--recipient 0xdeadbeef... \
--wait # waits for the output ciphertext to be verified on-chain
# Or pass a pre-created amount ciphertext
aura confidential propose \
--agent-id my-agent \
--amount 250 \
--chain ethereum \
--recipient 0xdeadbeef... \
--amount-ciphertext <pk>
# Request decryption of the policy output
aura confidential request-decryption --agent-id my-agent --wait
# Confirm the decryption result on-chain (shows approved/denied + violation code)
aura confidential confirm-decryption --agent-id my-agent
# Execute the pending proposal
# For approved proposals: submits execute_pending, then automatically drives
# the dWallet presign + sign flow via the Ika dWallet gRPC network
aura execution execute --agent-id my-agent
# --wait: waits for the message approval account to be created
# --wait-signed: waits for the full dWallet signature
aura execution execute --agent-id my-agent --wait
aura execution execute --agent-id my-agent --wait-signed
# Finalize after dWallet signing is complete
aura execution finalize --agent-id my-agent
# Watch execution state live
aura execution watch --agent-id my-agent
aura execution watch --agent-id my-agent --interval 3
# Configure emergency guardian multisig
aura governance multisig \
--agent-id my-agent \
--required 2 \
--guardians pk1,pk2,pk3
# Configure agent swarm with shared spending pool
aura governance swarm \
--agent-id my-agent \
--swarm-id alpha \
--members agent-1,agent-2,agent-3 \
--pool-limit 50000
# Guardian proposes a daily limit increase
aura governance override propose \
--agent-id my-agent \
--new-daily-limit 25000
# Guardian co-signs the override proposal
aura governance override collect --agent-id my-agent
# Derive core program PDAs without loading a wallet
aura pda treasury --owner <owner> --agent-id my-agent
aura pda dwallet-cpi-authority
aura pda encrypt-cpi-authority
# Derive policy-control PDAs
aura pda policy-receipt --treasury <treasury> --proposal-id 42
aura pda budget-envelope --treasury <treasury> --envelope-id 7
aura pda operator-role --treasury <treasury> --operator <operator>
aura pda external-liveness --treasury <treasury>
aura pda policy-attestation --treasury <treasury> --attester <attester> --policy-version 3
aura pda batch-proposal --treasury <treasury> --batch-id 9
aura pda invariant-report --treasury <treasury> --report-id 10
# Derive the current dWallet MessageApproval PDA
aura pda message-approval \
--curve 0 \
--signature-scheme 5 \
--public-key-hex <dwallet-public-key-hex> \
--message-digest <32-byte-hex>
# Full-screen live treasury dashboard
aura dashboard --agent-id my-agent
# Controls: r = refresh q / Esc = quit
# 1. Create treasury
aura treasury create --agent-id my-agent --daily-limit 10000 --per-tx-limit 1000
# 2. Register dWallet with live signing metadata
aura dwallet register --agent-id my-agent --chain ethereum \
--dwallet-id <id> --address <addr> --balance 5000 \
--dwallet-account <pda> --authorized-user <pubkey> \
--message-metadata-digest <hex> --public-key-hex <hex>
# 3. Ensure Encrypt deposit
aura confidential deposit ensure
# 4. Configure guardrails (auto-encrypts via Ika Encrypt gRPC)
aura confidential guardrails scalar \
--agent-id my-agent --daily-limit 10000 --per-tx-limit 1000
# 5. Propose confidential transaction (auto-encrypts amount)
aura confidential propose \
--agent-id my-agent --amount 250 --chain ethereum \
--recipient 0xdeadbeef... --wait
# Vector guardrails use the matching vector proposal flow instead:
aura confidential propose-vector \
--agent-id my-agent --amount 250 --chain ethereum \
--recipient 0xdeadbeef... --wait
# 6. Request decryption
aura confidential request-decryption --agent-id my-agent --wait
# 7. Confirm decryption (shows approved/denied)
aura confidential confirm-decryption --agent-id my-agent
# 8. Execute (drives dWallet presign + sign automatically)
aura execution execute --agent-id my-agent --wait-signed
# 9. Finalize
aura execution finalize --agent-id my-agent
--rpc-url <url> Override RPC endpoint
--wallet <path> Override keypair file path
--program-id <id> Override program ID
--json Output raw JSON (for piping)
--quiet Suppress all output except errors
--dry-run Build and display the transaction without sending
--help Show help
AURA_RPC_URL="https://devnet.helius-rpc.com/?api-key=YOUR_KEY"
AURA_DEVNET_RPC_URL="https://devnet.helius-rpc.com/?api-key=YOUR_KEY"
AURA_WALLET_PATH="/path/to/keypair.json"
PAYER_KEYPAIR="/path/to/keypair.json"
AURA_PROGRAM_ID="2fHkM5fb8iLt5ojkubAcLpAjgkF1QL1iEXivKZmPw3ya"
AURA_DEFAULT_AGENT_ID="my-agent"
git clone https://github.com/exyreams/aura.git
cd aura/packages/cli
npm install
npm run build
Run tests:
npm test
npm run test:devnet
The devnet test uses AURA_DEVNET_RPC_URL or AURA_RPC_URL when present and
falls back to the default Solana keypair at ~/.config/solana/id.json.
Link locally for development:
npm link
aura --help
FAQs
Aura Protocol CLI for the AURA autonomous treasury program on Solana
We found that @aura-protocol/cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.