Setup Guide

Connect to the
Agent Terminal

Install the CLI, authenticate with your API key, and start deploying autonomous agents from your terminal in under 60 seconds.

5 Agent Models
SSE Streaming
REST API
+
+
+
+
1
Step One

Your API Key

Active

Deterministically derived from your wallet. It never changes and requires no storage.

API Key
••••••••••••••••

Keep your API key secret. Do not share it publicly or commit it to version control. Use environment variables in production.

2
Step Two

Install the CLI

Run the one-liner below to install the Aria Agent CLI on macOS, Linux, or WSL.

terminal
$ curl -Lo aria https://github.com/MADE-ADI/aria-agent/releases/latest/download/aria-linux-x86_64 && chmod +x aria && sudo mv aria /usr/local/bin/
🍎 macOS🐧 Linux🪟 WSL2Python 3.8+ required

Or install via pip:

pip install aria-cli
+
+
+
+
+
3
Step Three

Authenticate

Link the CLI to your wallet by running the auth command with your API key.

terminal
$ aria auth ariax-••••••••••
  > Authenticating...
   Successfully authenticated as 0x••••
  > Config saved to ~/.aria/config.json

Or set as environment variable:

export ARIA_API_KEY=ariax-••••••••••
+
+
+
+
+
Agent Models

Available Agents

Choose the right agent for your workflow. Pass the agent name in your API request to activate it.

general

General Agent

Multi-purpose reasoning agent for any task.

"agent": "general"
coder

Code Agent

Writes, reviews, and architects production code.

"agent": "coder"
researcher

Research Agent

Deep analysis, fact-finding, and strategic insights.

"agent": "researcher"
devops

DevOps Agent

Infrastructure automation, CI/CD, and cloud architecture.

"agent": "devops"
analyst

Data Analyst Agent

Statistical modeling, visualization, and BI insights.

"agent": "analyst"

CLI shorthand

aria -e "prompt"
+
+
+
+
Ready to go

Deploy your first agent

Jump into the chat to interact with agents directly in the browser.