| title | Quickstart |
|---|---|
| description | Install the CLI, log in, and run your first sandbox in under 5 minutes. |
Verify the installation:
pocketenv --versionPocketenv uses your AT Protocol handle (e.g. a Bluesky account) for authentication.
pocketenv login alice.bsky.socialThis opens a browser window to complete the OAuth flow. Once done, your session token is saved to ~/.pocketenv/token.json.
pocketenv createBy default this uses the cloudflare provider and the openclaw base image — a minimal Linux environment with openclaw and common dev tools pre-installed.
Specify a different provider or base:
pocketenv create my-sandbox --provider daytona --base openclawpocketenv exec my-first-sandbox "echo hello from the sandbox"
# hello from the sandboxpocketenv console my-first-sandboxThis drops you into a live SSH session inside the sandbox. Type exit to return to your local terminal.
pocketenv stop my-first-sandbox # Stop the sandbox
pocketenv start my-first-sandbox # Resume it later
pocketenv rm my-first-sandbox # Delete permanently