JJETSYNGet in touch

Surfaces & tiers

Starter, Business, and Pro are three depths over the same folders, reached through three surfaces: the web agent, the Pro console, and the CLI. This page covers what each depth unlocks and how access is gated.

The tiers are not three separate products. Starter, Business, and Pro are three depths over one product: how many surfaces and gateways you have unlocked over the same folders and the same captured IP. You start on the web, add your channels and tools in the middle, and graduate to the direct surface at Pro, never changing products and never moving your data.

Three depths, one product#

Every account works the same folders in the same cell. What a tier changes is reach: how many gateways connect your employee to your channels and tools, and which surfaces you can open over your data. Progression is unlocking depth, not switching to a different app.

DepthPriceWhat you unlockOver the same folders
Starter$49/moThe web app: one conversational gateway (web and phone), plus the pre-made AI employees doing real work.Your cell, your brain.
Business$99/moMany gateways: your channels (Slack, Telegram, and more) and your tools and data (ClickUp, CRM, Sheets), plus custom workflows and the team-shared company brain.Your brain plus the shared company brain, by folder permission.
Pro$299/moThe direct surfaces: the CLI and the Pro console. Work the folders yourself, live and fully custom, and build your own employees.The same files, raw.

Note

The tiers are not three products. They are how many surfaces and gateways you have unlocked over the same folders and the same captured IP. A Starter who upgrades to Pro keeps the exact cell, folders, and IP they already built; Pro simply adds the direct surfaces over that same data.

Three surfaces over the same folders#

The cell filesystem is your data. Every surface is a view or an editor over the same folders, never a second database. Jetsyn ships three surfaces, and each renders those same folders at a different depth of reach.

SurfaceWhat it isMediation
Web agentThe rendered agent UI. You talk to your employee and it works the folders and reports back. Reachable on web and phone.Conversational (async)
Pro consoleA browser console over your cell: the folder tree, a file editor, and a live terminal. You work the folders directly.Direct (synchronous)
CLIThe terminal. Install once, sign in once, and reach your cloud cell. It runs conversational or direct depending on the command you give it.Either (the command decides)

The line between the surfaces is mediation. A conversational surface is employee-mediated and async: you tell it what you want, it does the work, it reports back. A direct surface (the CLI) is synchronous: you are in the files yourself, live. Same files, different depth of reach.

The CLI makes the distinction concrete. The command you run in the cell decides the mediation, over the same transport and the same cell.

terminal
# Direct: you are in the folders yourself, live (the Pro depth)
jetsyn connect

# Conversational: talk to your employee; it works the folders and reports back
jetsyn agent

How access is gated#

Access is decided server-side, never in the browser. One endpoint reflects your plan and whether the product is unlocked.

GET /api/me returns your {plan, status, entitled}. The entitled flag is the gate: it is true when your subscription status is active or trialing, and false for a free or lapsed account. A new subscription starts with a short trial that counts as entitled, so the product is unlocked from the first day; the card is collected up front and the first charge lands after the trial.

When a locked account hits a protected action, the server returns HTTP 402 with billing_required. That response is the client's cue to open checkout. Gate your own actions the same way: read entitlement server-side and return 402 when it is false, never trusting a plan label read in the browser.

Catalog keyRankPriceState
free0$0Account and data retained, product locked.
starter1$49/moUnlocked on a live subscription.
business2$99/moUnlocked on a live subscription.
pro3$299/moUnlocked on a live subscription.

Availability

Available now: access is gated as paid versus unpaid, server-side, across every surface. Coming soon: per-surface gating by depth, where each surface and gateway checks its own unlock against the plan rank (your channels and tools at Business, the direct surface at Pro). The rank ladder (0 to 3) is already in place.

Moving between depths#

Changing tier reprices your live subscription in place. Your cell, your folders, and your captured IP never move. Going from Starter to Pro unlocks the direct surfaces over the exact data you already built; there is no re-onboarding and no migration.

POST /api/billing/change-plan reprices the subscription to another tier, prorated on the next invoice and applied as soon as the change is confirmed. POST /api/billing/cancel defaults to end of period, so a canceled account keeps access until it is paid through.


Where to go next#