Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

aenv CLI Reference

aenv is the native CLI for AgentENV. It wraps the HTTP API and envd gRPC endpoints into a developer-friendly interface for managing templates, sandboxes, and snapshots.

Installation

curl -fsSL https://raw.githubusercontent.com/kvcache-ai/AgentENV/main/scripts/install-cli.sh | bash

Each release publishes aenv-<os>-<arch>.tar.gz for Linux and macOS on x86_64 and aarch64 (arm64). The archive contains:

aenv
aenv-buildctl
manifest.json

The manifest records the AgentENV version, BuildKit version, and platform. SHA256SUMS accompanies the release archives. The release workflow verifies the pinned upstream BuildKit download before packaging its client with aenv.

Both install-cli.sh and the full install.sh download this single CLI archive and verify its GitHub release asset checksum before installing both executables. Installation does not contact the upstream BuildKit release. The private aenv-buildctl lives beside aenv, preserving an existing system buildctl. Set INSTALL_DIR for a user-local CLI installation. For manual installation, extract the archive and keep both executables in the same directory.

Or build from source (requires Rust):

git clone https://github.com/kvcache-ai/AgentENV.git
cd AgentENV
make install-aenv

Authentication

aenv auth

Save the server URL and API key. Credentials are stored at ~/.config/aenv/credentials (mode 0600).

aenv auth
# AENV server URL [http://localhost:8000]: The address of the AgentENV server
# API key: <the server's configured or generated API key>

Templates

aenv pull <image>

Create a template from an OCI image. Waits for the build to complete by default.

aenv pull ubuntu:22.04
aenv pull ubuntu:22.04 --name my-ubuntu
FlagDescription
--name <name>Override the template name. Defaults to the image’s repository segment.
--cpu <count>CPU cores for the template. Defaults to [machine].vcpu_count on the server. Alias: --cpu-count.
--memory <MiB>Memory for the template. Defaults to [machine].mem_size_mib on the server. Aliases: --memory-mb, --mem.
--start-cmd <cmd>Shell command to run inside the sandbox before capturing the template snapshot
--ready-cmd <cmd>Shell command polled until it exits 0. Defaults to sleep 20 when --start-cmd is set; otherwise unset.
--probe <PORT>Wait until localhost:<PORT> accepts TCP connections. Conflicts with --ready-cmd.
-d, --detachSubmit the build and return immediately without waiting
--timeout <SECS>Maximum seconds to wait for the build to complete. No timeout by default. Conflicts with --detach.

aenv build <context> --name <name>

Create a template from a local Dockerfile using BuildKit in an isolated microVM. The installers include the required buildctl executable. For source builds, install BuildKit’s buildctl v0.33.0 or select an existing executable with --buildctl.

aenv build . --name my-app
aenv build . -f deploy/docker/Dockerfile.agentenv --name aenv
aenv build ./my-app --name my-app-v2 --build-arg VERSION=2
FlagDescription
--name <name>Required template name
--cpu <count>CPU cores for the template. Defaults to [machine].vcpu_count on the server. Alias: --cpu-count.
--memory <MiB>Memory for the template. Defaults to [machine].mem_size_mib on the server. Aliases: --memory-mb, --mem.
-f, --file <path>Dockerfile path relative to the current directory. Defaults to <context>/Dockerfile.
--build-arg KEY=VALUERepeatable build arguments.
--secret <spec>Repeatable BuildKit secret mount.
--no-cacheDisable instruction cache for this build.
--timeout <seconds>Dockerfile build deadline; defaults to 3600. The CLI allows 10 additional minutes for provisioning and publication.

The command supports multi-stage builds, file updates, and .dockerignore, shows BuildKit progress, and waits until the template is ready. The server manages the internal worker and releases it afterward. The first Dockerfile build prepares a reusable builder template. Each build clones a shared cache seed, allowing concurrent builds and cache reuse across template names and nodes. Builder image and sizing are configured in [template_build] on the server, with defaults of 16 vCPUs, 32 GiB memory, and 64 GiB cache disk. FROM, ENTRYPOINT, CMD, and HEALTHCHECK in the final image determine the template’s image, startup, and readiness. The final Dockerfile stage is always published. See templates for the complete workflow, cache management, and startup behavior.

Interactive builds show a three-stage bar for builder preparation, image build, and template publication, with elapsed time and Dockerfile logs above the bar. --progress plain keeps plain logs; --progress tty selects BuildKit’s native terminal display. Redirected output has no progress-bar control sequences.

aenv template list

List all templates. Alias: aenv template ls, aenv templates list.

aenv template list
aenv template list --output json
FlagDescription
--output <table|json>Output format. Defaults to table on a TTY and JSON when redirected.

aenv template watch <template>

Watch a template build until it succeeds or fails. Accepts either a template name/alias or a template UUID.

aenv template watch my-ubuntu
aenv template watch <template-id>

aenv template delete <template>

Delete a template by name or ID. Alias: aenv template rm.

aenv template delete my-ubuntu
aenv template delete <template-id>

Sandboxes

aenv start <target>

Start a sandbox and attach an interactive shell. <target> accepts a template or snapshot ID or alias, or an OCI image reference with --cold.

aenv start my-ubuntu
aenv start --cold ubuntu:24.04              # start directly from an OCI image

Sandboxes started by aenv always require token-authenticated envd access. The CLI obtains and manages the access token automatically.

FlagDescription
--coldStart directly from an external OCI image instead of a template
--timeout <secs>Sandbox TTL in seconds (default: 300)
--cpu <count>CPU cores; only valid with --cold. Defaults to [machine].vcpu_count on the server. Alias: --cpu-count.
--memory <MiB>Memory in MiB; only valid with --cold. Defaults to [machine].mem_size_mib on the server. Aliases: --memory-mb, --mem.
--disk-size-mb <MiB>Root filesystem size; only valid with --cold. Defaults to the source image’s virtual size; an explicit value must be at least 1024 and divisible by 1024 MiB. Alias: --disk-mb.
-d, --detachPrint the sandbox ID and exit without attaching a shell

CPU, memory, and disk overrides are supported only for cold starts.

aenv pause <sandbox-id>

Pause a running sandbox. The sandbox state is preserved and can be resumed later.

aenv pause <sandbox-id>

aenv resume <sandbox-id>

Resume a paused sandbox.

aenv resume <sandbox-id>
FlagDescription
--timeout <secs>TTL in seconds from now (default: 300). Must be longer than the sandbox’s current remaining TTL.

aenv timeout <sandbox-id> <seconds>

Set or extend the sandbox expiration to <seconds> from now.

aenv timeout <sandbox-id> 600

aenv connect <sandbox-id>

Attach an interactive shell to a running or paused sandbox. Alias: aenv cn.

aenv connect <sandbox-id>

Resumes the sandbox if paused before attaching.

aenv exec <sandbox-id> <command> [args...]

Run a one-shot command in a sandbox and stream its output.

aenv exec <sandbox-id> ls -la /

aenv upload <sandbox-id> <local-path> <remote-path>

Upload a local file or directory to a sandbox through envd. Files are streamed individually, and missing remote directories are created automatically.

aenv upload <sandbox-id> ./config.json /workspace/config.json
aenv upload <sandbox-id> ./config.json /workspace/
aenv upload <sandbox-id> ./project /workspace/
aenv upload <sandbox-id> ./project /workspace/app
aenv upload --user app <sandbox-id> ./config.json config.json
FlagDescription
--user <user>Resolve relative remote file paths as this user and set the uploaded file’s owner

For directory uploads, the remote path must be absolute and --user is not supported. If the remote destination ends in / or already exists as a directory, the local directory name is appended. Otherwise the destination is used as the new directory root. Hidden files and empty directories are copied; symbolic links and special files are rejected.

Upload copies file contents and directory structure only. It does not preserve host ownership or group, permissions (including executable bits), timestamps, ACLs, extended attributes, or hard-link relationships. Destination metadata is assigned by envd and the sandbox filesystem.

aenv download <sandbox-id> <remote-path> [local-path]

Download a file or directory from a sandbox through envd.

aenv download <sandbox-id> /workspace/result.txt ./result.txt
aenv download <sandbox-id> /workspace/result.txt
aenv download <sandbox-id> /workspace/result.txt ./output/
aenv download <sandbox-id> /workspace/project ./backup/
aenv download --user app --force <sandbox-id> result.txt ./result.txt
FlagDescription
--user <user>Resolve relative remote file paths from this user’s home directory
--forceReplace conflicting local files

When the local path is omitted, the remote name is used in the current directory. When the local path names an existing directory or ends in /, the remote name is appended automatically. The resulting local parent directory must already exist. Directory downloads require an absolute remote path and do not support --user. Existing directories are merged; unrelated files remain, while conflicting files require --force. Each file is written through a temporary file and moved into place only after that file succeeds. Symbolic links and special files are rejected. Downloads do not preserve remote ownership or group, permissions (including executable bits), timestamps, ACLs, extended attributes, or hard-link relationships.

aenv list

List all sandboxes. Alias: aenv ls.

aenv list
FlagDescription
--output <table|json>Output format. Defaults to table on a TTY and JSON when redirected.

aenv delete <sandbox-id>

Kill and delete a sandbox. Alias: aenv rm.

aenv delete <sandbox-id>
aenv rm <sandbox-id>

Volumes

aenv volume create <name>

Create an independent persistent volume. Volumes default to 65536 MiB (64 GiB) and exclusive mode.

aenv volume create workspace
aenv volume create models --mode ro --image ghcr.io/example/models:latest
aenv volume create job-workspace --from-volume workspace
FlagDescription
--size-mb <MiB>Volume size. A copy-on-write fork must use the same size as its source.
--mode <exclusive|ro>Access mode. Exclusive volumes are writable by one sandbox; read-only volumes can be shared.
--from-volume <volume>Create a copy-on-write fork from an existing volume ID or name.
--image <image>Initialize the volume from an OCI image.

We recommend creating an exclusive fork for each sandbox instead of mounting a shared writable volume directly:

aenv volume create job-data --mode exclusive --from-volume dataset-base
aenv start ubuntu --volume /workspace/data=job-data

See Volumes for access-mode semantics, lifecycle behavior, automatic sandbox fork and snapshot handling, and complete CLI and HTTP API examples.

Inspect and delete volumes

aenv volume list
aenv volume list --output json
aenv volume inspect job-data
aenv volume delete job-data

A mounted volume cannot be deleted. aenv volume ls is an alias for aenv volume list.


Snapshots

aenv snapshot create <sandbox-id>

Capture a persistent snapshot from a running sandbox. The snapshot can be used as a template to start new sandboxes with aenv start.

aenv snapshot create <sandbox-id>
aenv snapshot create <sandbox-id> --name my-base
FlagDescription
--name <name>Snapshot name or alias. If omitted, the generated snapshot ID identifies the snapshot.

When source-registry image publication is enabled on the server, the command also prints the published OverlayBD-native image reference on an Image: line; that tag can be used directly as a userImage.

aenv snapshot list

List persistent snapshots. Alias: aenv snapshot ls, aenv snap ls.

aenv snapshot list
aenv snapshot list --sandbox-id <sandbox-id>
FlagDescription
--sandbox-id <id>Filter snapshots by source sandbox ID
--output <table|json>Output format. Defaults to table on a TTY and JSON when redirected.

The table output includes an IMAGE REF column (- when no image was published); JSON output includes the optional imageRef field.

To delete a snapshot, use aenv template delete <snapshot-id> or aenv template delete <name> — snapshots share the same underlying store as templates and are deleted through the same command.


Shell completion

aenv completion <shell> prints a shell-completion registration script for the aenv CLI to stdout. Supported shells: bash, zsh, and fish.

The script registers a completion function that calls back into the aenv binary at completion time (COMPLETE=<shell> aenv ...), so completion logic always matches the installed CLI version — upgrading aenv does not require regenerating the script. The script invokes aenv by name, so the binary must be on your PATH.

Generate and install a script

Bash

mkdir -p ~/.local/share/bash-completion/completions
aenv completion bash > ~/.local/share/bash-completion/completions/aenv

The Bash completion file is loaded on demand by bash-completion. This requires bash-completion to be installed and initialized in the current shell.

Zsh

mkdir -p ~/.local/share/zsh/site-functions
aenv completion zsh > ~/.local/share/zsh/site-functions/_aenv

Zsh loads completion functions from directories listed in fpath. ~/.local/share/zsh/site-functions is not included in fpath by default on all systems. Add the following lines to ~/.zshrc before any existing compinit invocation:

fpath=(~/.local/share/zsh/site-functions $fpath)
autoload -Uz compinit
compinit

Fish

mkdir -p ~/.config/fish/completions
aenv completion fish > ~/.config/fish/completions/aenv.fish

Activate without installing

To test completion for the current shell session without saving a generated file:

source <(aenv completion bash)         # Bash
eval "$(aenv completion zsh)"         # Zsh
aenv completion fish | source          # Fish

What completion covers

Static completion covers the full CLI surface:

aenv <TAB>                       # top-level commands
aenv snapshot <TAB>              # nested subcommands (create, list, ...)
aenv list --output <TAB>         # enum values: table, json
aenv build ./<TAB>               # local path arguments

Commands that take a sandbox ID also complete live sandbox IDs dynamically, filtered to the states each command accepts:

CommandCompleted sandboxes
pause, exec, timeout, upload, download, snapshot createrunning
resumepaused
connect, deleterunning and paused
aenv resume <TAB>                # paused sandbox IDs
aenv exec <TAB>                  # running sandbox IDs

Where the shell supports it, candidates carry a description with the sandbox’s template and state.

Dynamic lookup is best-effort: it uses short timeouts (500 ms connect, 1 s request) and silently returns no candidates when credentials, the server, or the network are unavailable. Static command and flag completion keeps working in that case, and no diagnostic output is written to your command line.