Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.ascii.dev/llms.txt

Use this file to discover all available pages before exploring further.

Every box is a Linux VM with a curated set of tools available from the moment you SSH in. Nothing to install before you start working.

Pre-installed tools

AI & automation

ToolDescription
claudeClaude Code CLI — AI coding assistant
codexOpenAI Codex CLI
hostExpose localhost services to the internet
luxDesktop and browser automation
asciiAscii workspace tools

Languages & runtimes

ToolDescription
node / npmNode.js and npm
bunBun JavaScript runtime
python3Python 3
uvFast Python package runner / project manager
goGo toolchain
rustc / cargoRust compiler and package manager

Version control

ToolDescription
gitGit
ghGitHub CLI — PR creation, issue management, etc.

Utilities

ToolDescription
rgripgrep — fast code search
jqJSON processor
curlHTTP client
dockerContainer runtime (available on supported images)
chromeHeadless Chromium
ffmpegMedia processing

Desktop access

Every box has a browser-based desktop stream. Open it with:
box desktop bx_f7k2q9hd
Useful for tools that need a GUI — browsers, Electron apps, visual debugging.

SSH access

Boxes accept connections over standard SSH. The CLI manages your key automatically at ~/.ssh/ascii_box_ed25519, but you can also retrieve the private key for use with external tools:
# CLI-managed (easiest)
box ssh bx_f7k2q9hd

# Manual — get the private key
box info bx_f7k2q9hd  # shows IP and SSH user

Port forwarding

Forward any port from the box to your local machine:
box forward bx_f7k2q9hd --remote 3000
See CLI Reference for full options.