▼ YOUR BUSINESS 0.4 · APRIL 18 · BACKED BY BENCHMARK

The coding agent
that lives in
your editor.

// Your Business is a fast, terse, command-line-first coding agent. 40% faster than Cursor. Reasoning model under the hood. Pairs with you instead of taking over. $20 a month. Free for open-source.

▶ Start free trial$ npm i -g yourbusiness
22k// MONTHLY USERS
4.8★// 312 REVIEWS
40%// FASTER VS CURSOR
$20// PER MONTH
yourbusiness — main · ~/projects/api
yourbusiness "fix the failing test in auth_test.ts and make sure rate-limiting works"
// reading auth_test.ts (162 lines)
// reading auth.ts (84 lines)
// running test...
FAIL auth_test.ts · test "rate-limit kicks in after 5 attempts"
// hypothesis: counter resets between requests · checking middleware...
- const counter = 0;
+ const counter = await redis.incr(`rl:${ip}`);
+ await redis.expire(`rl:${ip}`, 60);
PASS auth_test.ts · 14 / 14 passing
▶ Done. Counter was missing Redis backing. Fixed in middleware/rate-limit.ts (+12 lines). All tests pass.
// WHY YOUR BUSINESS

Six things different.

Terse by default

Your Business does not write you a 4-paragraph essay. It does the work, summarizes in one line, shows you the diff. You can ask it to explain, but it doesn't volunteer.

Reads your codebase

Indexes your repo on the first run. Subsequent invocations have full context. No "I'm not sure where that function is" — it knows where everything is.

{}

Tests its own work

Your Business runs your test suite after every change. If it broke something, it fixes it. If it can't fix it, it tells you what it tried and why it stopped.

CLI + IDE

Use it from the terminal or as a VS Code/Cursor/JetBrains plugin. Same engine. Same context. Same memory across sessions.

Local context

Your code never leaves your machine without your approval. We send only what you ask Your Business about — never the whole repo. Self-host on enterprise.

Free for OSS

If you maintain an open-source project, Your Business is free for your contributions to it. We pay for the inference. We've subsidized 18M tokens since launch.

// HONEST COMPARISON

Your Business vs. everyone else.

// FEATUREYOUR BUSINESS// CURSOR// CLAUDE CODE// COPILOT
CLI-first
Reasoning model
Test-driven looppartial
Indexes repopartialpartial
Self-hostable
Free for OSS
Monthly cost (pro)$20$20$20+$10
Speed (median PR)2.4 min4.1 min3.8 min

Try Your Business on your real codebase.

// 14-day trial · no credit card · cancel any time · works with your existing repo from minute one

▶ Start free trial$ npm i -g yourbusiness