Quickstart
Prerequisites
Installation
bun install -g @circuitorg/agent-clicircuit --versionGetting Started
# Authenticate your CLI
# Opens a browser window for you to log in
circuit login
# Create a new agent directory
# Prompts you for a language (TypeScript or Python) and name
circuit init
# Navigate into your agent folder
# This folder contains index.ts (or main.py) and configuration files
cd <agent-name>
# Install dependencies
bun install # for TypeScript
uv sync # for Python
# Test your agent locally by running your agent's logic in a local sandbox env
# It creates a temporary session wallet and executes your `run()` function
circuit run
# Publish to production
# This pushes your agent to Circuit Cloud so it can be scheduled or triggered automatically
circuit publish
Project Structure
File
Purpose
Next Steps
Last updated