Overview
nen quickstart is an interactive, menu-driven tour that walks you through the platform step by step — no code required to get started.
~/.config/nen/config.json so you don’t have to re-enter it.
The Four Guides
1. Your first desktop
Provisions a cloud desktop, takes a live screenshot, and tears it down. Teaches the core execute API without writing any code. What it does:- Creates a new cloud desktop from the pool
- Calls
POST /desktops/{id}/executewith ascreenshotaction - Displays the live view URL and saves the screenshot locally
- Deletes the desktop when done
2. Manage desktops
Walks through everynen desktop CLI command against a real desktop — create, list, status, and delete — so you can see the exact output and understand the lifecycle.
What it does:
- Runs
nen desktop createand shows the response - Runs
nen desktop listshowing the table output - Runs
nen desktop statusfor the new desktop - Runs
nen desktop deletewith confirmation
3. Run an AI agent
Provisions a desktop and runs a full Claude agent loop entirely inside the CLI — no installation, no Python, no code. Claude sees the screen, decides what to do, and acts autonomously. What it does:- Provisions a desktop and waits for it to stabilize
- Discovers available tools from
GET /desktops/{id}/tools - Runs a Claude Sonnet agent loop (up to 25 steps) directly in your terminal
- Streams thinking summaries and tool actions live
- Optionally opens a browser window to the live desktop view
- Deletes the desktop when the task is done
4. Build your own agent
Scaffolds a ready-to-run agent project on disk, pre-fills your API keys, installs dependencies, and optionally runs it immediately. You keep the code. What it does:- Scaffolds the
anthropic-computer-usetemplate intonen-anthropic-cua/ - Writes your Nen and Anthropic API keys into
.envautomatically - Runs
uv syncto install Python dependencies (prompts to installuvif missing) - Optionally runs
agent.pywith a task you specify right away - Leaves you with a working codebase to modify and ship
API Key Storage
nen quickstart stores your API keys in ~/.config/nen/config.json after validating them. Subsequent runs — and other nen commands — read from there automatically, so you only need to enter your key once.
You can always override the stored key with environment variables:
Next Steps
Desktop Commands
Full reference for nen desktop create, list, status, delete
Examples
Complete agent loop examples for Claude and GPT