Skip to content

Holbox.ai

The fastest way to build with AI.

Boxcode brings powerful open models directly into your terminal, giving developers an AI coding experience built for speed, control, and the way software is actually built.

curl -fsSL https://boxcode.sh/install.sh | bash

MIT licensed · Written in Rust · macOS, Linux, Windows

One platform. Two layers.

From writing code to running intelligence.

Holbox gives developers the tools to build with AI and the infrastructure to run it.

Flagship product

Boxcode

An AI coding assistant that lives in your terminal. It reads your files and runs your commands — and waits for you before every one.

boxcode

$ boxcode

add rate limiting to the public API

plan ready · 4 files · awaiting approval

/plan research first, write nothing

/rollback undo everything this session

Explore Boxcode
Infrastructure

GPU Router

Deploy and route open-source models across GPU infrastructure without managing the complexity yourself.

RequestGPU RouterOPENAI-COMPATIBLEQwen 3.5 4BA10GQwen 3.6 35BL40SGLM-5.28× H200GPU pools

Boxcode

AI coding that stays out of your way.

Boxcode brings an intelligent coding agent directly into the environment developers already live in: the terminal.

01

Understand your codebase

Boxcode works across your repository instead of treating every file as an isolated prompt. Run /init and it explores the project and writes a BOXCODE.md that rides along with every request.

REPOSITORYin context
  • atlas/
  • BOXCODE.md
  • Cargo.toml
  • src/
  • auth/
  • session.rs
  • middleware.rs
  • tokens.rs
  • routes/
  • mod.rs
  • health.rs
  • main.rs
  • tests/
  • auth_test.rs
02

Write and modify code

Give Boxcode a task. Let it inspect, plan, edit and iterate. Every change arrives as a diff you read before it lands — and /rollback undoes everything written this session.

boxcode — edit
03

Run and verify

Changes shouldn't just look right. Boxcode can run your tests, read the failure and keep iterating — pausing for your approval before it runs anything.

boxcode — verify

Command showcase

One command. A new development workflow.

Boxcode opens an interactive session in the directory you're already in. Describe the work at the prompt, or drive it with slash commands.

boxcode — start a session

Developer experience

Built for developers who live in the terminal.

Repository-aware

/init explores the project and writes a BOXCODE.md that rides along with every request.

Agentic workflows

Inspect, plan, edit, run, read the failure, iterate — without leaving the session.

Approval before action

Destructive actions wait for your yes. There is no allow-everything key, and dangerous commands are refused outright.

Open endpoints

Point it at any OpenAI-compatible endpoint with /provider or BOXCODE_ENDPOINT. Self-hosting included.

CLI-first

Sessions render as ordinary terminal output, so scrollback and search keep working.

Built for real codebases

Every change lands as a diff you read first, and /rollback undoes everything written this session.

boxcode — command palette

Configuration lives in ~/.boxcode/config.toml — workspace, approval policy, theme.

Open models

Open models. Your workflow. Your infrastructure.

Holbox gives developers access to powerful open models without forcing them into a single proprietary AI stack.

On GPU Router

Browse models
  • Qwen 3.5 4B

    Alibaba Qwen

    Available
    Size
    4B
    Min GPU
    A10G · 24GB
    From
    $1.01/hr
  • GLM-5.2

    Zhipu AI

    Available
    Size
    756GB MoE
    Min GPU
    8× H200
    From
    $20.01/hr
  • GLM-4 9B Chat

    Zhipu AI

    Coming soon
    Size
    9B
    Min GPU
    A10G · 24GB
    From
  • Qwen 3.6 35B-A3B

    Alibaba Qwen

    Coming soon
    Size
    35B MoE
    Min GPU
    L40S · 48GB
    From

Catalogue, GPU tiers and pricing as published by GPU Router.

Or bring your own

Boxcode is not tied to a single provider. Any OpenAI-compatible endpoint works — a hosted provider, a model you deployed on GPU Router, or something running on your own machine.

~/.zshrc
# Boxcode speaks to any OpenAI-compatible endpoint.
# Point it at a model you deployed with GPU Router:

export BOXCODE_ENDPOINT="https://api.gpurouter.dev/v1"
export BOXCODE_API_KEY="grk_live_..."
export BOXCODE_MODEL="glm-4-9b-chat"

boxcode

Or switch interactively with /provider and /model. Provider keys such as DEEPSEEK_API_KEY are detected automatically.

GPU Router

Run open models without becoming an infrastructure company.

GPU Router handles the complexity of deploying and routing open models across GPU infrastructure, so teams can focus on the application.

Request pathapi.gpurouter.dev/v1
An application calls one OpenAI-compatible endpoint. GPU Router places the request on a GPU pool matched to the model it serves.

One command from catalogue to endpoint.

Choose a model, a GPU tier and a region. Set a time-to-live so the deployment cleans itself up. You get a URL and an API key back.

gpurouter
gpurouter deploy glm-4-9b-chat \
  --tier medium \
  --region us-east-1 \
  --ttl 2h

Deploy in minutes

Connect an AWS account with CloudFormation, choose a model, deploy. One click, with GPU matching handled for you.

Route intelligently

Automatic GPU matching sends each model to compute that fits it. Pick the tier and region at deploy time.

OpenAI-compatible API

You get back a URL and an API key. Existing OpenAI client code points at it without changing a line.

TTL cost guards

Auto-terminate windows on every deployment, so idle GPUs stop billing instead of running all weekend.

Private by default

Endpoints are protected with an API key and CIDR range restrictions rather than exposed to the open internet.

Load test before you ship

Built-in load testing measures time-to-first-token and throughput on your own deployment.

The Holbox platform

The developer experience on top.
The compute layer underneath.

Developer layer

Boxcode is the session developers work in — repository context, plans, diffs, and an approval gate before anything runs.

Infrastructure layer

GPU Router is the endpoint underneath — model deployment, GPU matching, private access and cost guards.

The two connect through one boundary: an OpenAI-compatible endpoint. Point Boxcode at a model you deployed on GPU Router and the whole stack is yours.

Technical positioning

Infrastructure for the open AI era.

01

Open models

Open-weight models from the GPU Router catalogue, or any OpenAI-compatible endpoint you bring.

02

Developer-first APIs

One base URL and one key. Existing OpenAI client libraries work unchanged.

03

GPU infrastructure

Deployments land on GPU tiers matched to the model, in the region you choose.

04

Production inference

Private endpoints, TTL guards and built-in load testing before anything serves traffic.

05

Terminal-native tooling

Boxcode is a native binary that renders as ordinary terminal output.

06

Model routing

Requests are placed on the compute a model needs, without hand-managing pools.

Built in the open.

Boxcode is MIT-licensed and developed in public. Read the source, file an issue, build it yourself, or run it against your own endpoint — nothing about it is a black box.

Open source license
MITOpen source license
Boxcode is a native binary
RustBoxcode is a native binary
Platforms: macOS, Linux, Windows
3Platforms: macOS, Linux, Windows
Boxcode, generally available
v1.0.0Boxcode, generally available
github.com/HolboxAI

Get started

Start building in minutes.

Install the binary and open a session. Or deploy a model and call it with the OpenAI client you already use.

Boxcode

shell
install
# macOS and Linux
curl -fsSL https://boxcode.sh/install.sh | bash

# Windows (PowerShell)
irm https://boxcode.sh/install.ps1 | iex

# Then, in any project directory
boxcode

GPU Router

python
inference.py
from openai import OpenAI

client = OpenAI(
    base_url="https://api.gpurouter.dev/v1",
    api_key="grk_live_...",
)

resp = client.chat.completions.create(
    model="glm-4-9b-chat",
    messages=[{"role": "user", "content": "Hello!"}],
)

print(resp.choices[0].message.content)

Build what comes next.

Build with open intelligence. Run it on infrastructure designed for the AI era.