Boole Code
Powered by Boole AI

The model runs on your machine, so the tokens are free.

A full coding agent in your editor, reading your repo and running your tests — on compute you already own. Nothing is metered, nothing is uploaded, and it still works with the network off.

Install from the VS Marketplace
Free · VS Code 1.90+ · macOS, Linux, Windows
auth-service — session.ts
204 tok/s
EXPLORER
src/
auth.ts
session.ts
tokens.ts
tests/
auth.spec.ts
1 export async function refresh(token: string) {
2 const claims = await verify(token)
3 if (claims.exp < now()) throw new Expired()
4 return sign({ ...claims, exp: now() + TTL })
5 }
tokens.ts
41 const TTL = 15 * 60 * 1000
BOOLE AGENT · LLAMA-70B · LOCAL
> refresh tokens expire early in staging. find it.
read session.ts, tokens.ts, auth.spec.ts
TTL is applied in seconds in session.ts and in milliseconds in tokens.ts:41. Normalizing both to seconds.
128,400 tokens this session $0.00
The agent panel runs beside your editor. Everything above happened on the laptop.

Agents are expensive because they read a lot.

A single task can mean dozens of file reads, a few test runs and several retries. Hosted agents bill every pass, so a normal week of work turns into a real line item — and the product quietly trims context to keep the number down.

Typical hosted agent
$20–200 /mo
Per seat, plus usage once you pass the included tokens.
What a big task costs
300k tokens
Reading a service, running its tests, fixing, running again.
Boole Code
$0.00
Same work, on hardware you already bought. Retry as often as you like.

New to coding agents?

It is not autocomplete. You describe a goal, it works in your actual project, and you review what changed before anything lands.

01
You describe the task
Plain language, no file paths. "Refresh tokens expire early in staging."
02
It reads and runs
Opens files, follows imports, runs the tests, reads the failure, tries again.
03
You review a diff
The same review you would give a colleague. Nothing is committed for you.

Local instead of hosted

Hosted agent
Boole Code
Cost per token
Metered, per seat and call
Electricity
Rate limits
Yes, and they land mid-task
Whatever your hardware sustains
Your code
Leaves the building
Never leaves the machine
No connection
Nothing works
Everything works

Three minutes, no account.

Install the extension, let Boole pick a model that fits your machine, then open a repo.

$ code --install-extension boole.boole-code
Extension installed successfully.
$ boole models pull --auto
detected 64 GB unified memory
selected llama-70b-q4 · 38.1 GB
ready — offline

Try it on a repo you already have.

Install from the VS Marketplace
Boole AI · free and open source · boole.dev