Wave 1 Revenue · Dev Sandbox

Your sovereign
dev environment.

Garage is BlackRoad's dev sandbox. Live preview, AI pair programming, 90 CLI tools, and one-command deploy to your Pi fleet. Write code that runs on hardware you own.

JavaScript TypeScript Python Rust Go RoadC
Open Garage View CLI
Platform
90
CLI Tools
6
Languages
5
Deploy Targets
52
TOPS (AI)
Features

Build, preview, deploy.
All from the Garage.

Live Preview

Edit code and see changes instantly. Hot reload for JS/TS/Python. No build step for rapid prototyping. Preview runs locally on your hardware.

🤖
AI Pair Programming

Local Ollama models assist as you code. Code completion, refactoring, bug detection -- powered by 52 TOPS of Hailo-8 inference on your Pis.

🛠
90 CLI Tools

The full br toolkit at your fingertips. Search, deploy, monitor, manage agents, run diagnostics -- all from the integrated terminal.

🚀
Deploy to Fleet

One command to push your code to Alice, Cecilia, Octavia, Aria, or Lucidia. Workers, APIs, static sites -- deploy to any node in the fleet.

📦
Project Templates

Start with Worker, API, static site, or agent templates. Pre-configured with BlackRoad design system, build tools, and deploy config.

🔒
Sovereign Runtime

Code executes on your Pis, not on someone else's cloud. No cold starts, no vendor lock-in, no surprise bills. Your code, your hardware.

Editor preview

Code meets infrastructure.

garage.blackroad.io/workspace/my-worker
index.ts
wrangler.toml
package.json
design.css
README.md
Terminal
$ br deploy
1// my-worker — BlackRoad OS
2import { Hono } from 'hono'
3
4const app = new Hono()
5
6app.get('/', (c) => {
7  return c.json({
8    name: 'my-worker',
9    version: '1.0.0',
10    fleet: 'octavia:9001',
11    status: 'live'
12  })
13})
14
15export default app
CLI
# create a new project from template
$ br garage new my-worker --template worker
  Created my-worker/ from worker template
  index.ts, wrangler.toml, package.json ready

# start live preview
$ br garage dev
  Live preview at http://localhost:8787
  Watching for changes...

# AI pair programming
$ br garage pair "add a /health endpoint"
  AI: Adding health check endpoint...
  + app.get('/health', (c) => c.json({ ok: true }))
  Applied to index.ts (line 14)

# deploy to fleet
$ br garage deploy --target octavia
  Building my-worker...
  Deployed to octavia:9001
  Live at https://my-worker.blackroad.io

Open the Garage.

Your code. Your hardware. Your rules. Start building with live preview, AI assistance, and one-command fleet deployment.

Open Garage BlackRoad OS