CLI Reference
Global Flags
-h, --help
Show help information
circuit --help
-v, --version
Show version information
circuit --version
Core Commands
circuit whoami
Show current authenticated user
circuit login
Authenticate with Circuit platform
circuit logout
Sign out from Circuit platform
circuit init
Initialize a new agent project
circuit run
Run/test your agent
circuit stop
Stop a running agent session
circuit publish
Publish agent to production
circuit help
Show detailed help and getting started guide
circuit info
Display CLI and current agent information
Wallet commands
circuit wallet list
List your available wallets
circuit wallet import
Import a new wallet for testing
Command Details
circuit init
circuit initCreates a new agent project.
Prompts for language (TypeScript or Python) and agent name
Generates project structure with
.circuit.tomlconfig file
--no-dir
Initialize in the current folder instead of creating a new one
# Creates a new project folder
circuit init
# Initializes in the current folder
circuit init --no-dircircuit run
circuit runRuns your un-published agent code.
Creates a session if needed
Starts local agent server
--wallet <address>
Specify wallet address
--mode local|live|custom
Set simulation mode
--action execute|stop
Executes agent's run or stop function
--port <number>
Port for custom server mode
# Interactive mode
circuit run
# Skip prompts with flags
circuit run --wallet 0xabc... --mode local --action execute
# Connect to custom server
circuit run --mode custom --port 8080
# Stop simulation with custom server
circuit run --mode custom --port 8080 --action stopcircuit stop
circuit stopStops a running agent session and cleans up resources.
--wallet <address>
Specify wallet address
# Interactive mode
circuit stop
# Skip prompt with flag
circuit stop --wallet 0xabc...Last updated