Skip to main content

Quick Start

Get a workspace running for your AI agent in three steps.

Prerequisites

  1. Join the waitlist — NanoTerm is in closed beta. Enter your email; we approve in batches.
  2. Wait for the approval email. When a spot opens up, you'll get a "You're in — finish sign-up" email from us. Click the link to set your password.
  3. Sign in at nanoterm.dev/signin and create an API key on the API Keys page.

If your org already has an admin on NanoTerm, ask them to invite you directly — invitations bypass the waitlist, and you'll get an invite link that takes you straight to sign-up.

Step 1: Install

npm install -g @nanoterm/cli
nanoterm auth set-key nt_your_api_key

Step 2: Create a Workspace

nanoterm ws create --name my-agent --image ubuntu:22.04
# ✓ Workspace created: ws_a1b2c3d4

Step 3: Execute Commands

# One-shot command
nanoterm exec ws_a1b2c3d4 -- uname -a
# Linux nanoterm 5.15.0 x86_64 GNU/Linux

# Interactive terminal
nanoterm attach ws_a1b2c3d4

Step 4 (optional): Run a Coding Agent

Most NanoTerm users want a Claude Code or Codex CLI agent running inside the workspace. To do that, the agent needs its own credentials. Save those once as an org secret, and every workspace created from a claude-code or codex image picks them up.

nanoterm secrets auth-claude
# Opens the browser; on completion the credential is saved
# to your org and injected into every workspace.

nanoterm ws create --image ghcr.io/momenntal/nanoterm-claude-code
nanoterm shell <ws-id>
# agent@ws-…:/workspace$ claude

nanoterm secrets status confirms which providers are wired up.

What's Next?