A3S Code
A3S Code is the Rust runtime behind the a3s code terminal application. You can
also embed it in an IDE, runner, service, or desktop application. It handles the
agent loop, context, tool calls, permission checks, child tasks, Workspace
access, and session recovery.
Install the a3s CLI when you want to work in
a terminal. When building a product, use the Rust crate, Node.js package,
Python package, or Go module with its matching native bridge. They emit the
same events, so every UI does not need its own agent loop.
Choose an entry point
What it includes
A run roughly follows this path:
Install
For the interactive terminal workspace, run the installer for your platform:
The scripts select the release archive for the current system and architecture
and verify its SHA-256 digest. You can also use
brew install a3s-lab/tap/a3s or cargo install a3s.
Install an SDK when embedding A3S Code:
Configure
A3S Code uses ACL. Keep real API keys, private model endpoints, local config paths, and tenant/user identifiers out of commits. Commit templates that resolve credentials from the environment.
auto_parallel = false disables automatic parallel child-agent fan-out only.
Manual parallel_task remains available unless manual delegation is disabled
separately.
Use the TUI
Run a3s code from the workspace you want the agent to inspect:
The TUI discovers config from A3S_CONFIG_FILE, then .a3s/config.acl walking
upward from the current directory, then ~/.a3s/config.acl.
Common first-run flow:
Rust Runtime Quick Start
Rust construction is async-first. The synchronous Agent::session method only
works when memory and the other required resources are already initialized;
options that require async setup return
CodeError::AsyncSessionBuildRequired. A session-option MCP manager always uses
the async path while discovering tools.
Calls such as session.tool(...) come from your application, not the model.
Check access in your application before exposing them to users.
Continue reading
- A3S Code TUI explains installation, config discovery, slash commands, and effort profiles.
- SDKs and APIs explains Go module and bridge installation; the Go examples then stay beside Node.js and Python throughout the shared guides.
- Filesystem-first covers
AGENTS.md, ACL, AgentDir, Skills, tools, and schedules. - API contract lists the Node.js API covered by integration tests.
- Sessions covers creation, streaming, run state, saving, resuming, and cancellation.
- Tools covers direct calls, typed errors, structured output, and QuickJS programs.
- Tasks and orchestration cover child agents and fixed workflows.
- Security, hooks, and verification cover checks before, during, and after execution.
- Memory and persistence cover reusable facts and session recovery.