Documentation

Other clients

TUI and web app progress, plus the macOS client alongside them.

The TUI and web app are both still in progress and have not reached feature parity yet. The macOS app trails further: features land unevenly across clients, and none of them is complete.

Terminal

apps/tui. A full board in the terminal, plus the commands that make a board scriptable. It can also run the whole server itself, or act as a runner that executes work a shared server is holding.

Select a card with j/k; the pane below tails the newest run's transcript, h switches it to the card's history, a approves a manual gate and R rejects it, r re-checks, x stops the agent and c continues it with your own instructions.

bento setup covers repositories, agents, stages, and provider keys. The scriptable versions of the same things:

bento repos add ../api --project Checkout --setup "npm ci" --test "npm test"
bento agents edit Reviewer --model claude-sonnet-5
bento pipeline export team-pipeline.yaml

macOS app

apps/mac. A native board built on the Native SDK, spawning the CLI underneath. It follows cards, approves gates, and edits agents, and does not yet do stages, repository commands, or the pipeline file.

What each covers today

TaskWeb consoleTerminalMac app
Create a projectYesYesYes
Create one spanning several repositoriesYesOne, then addOne, then add
Connect and remove repositoriesYesYesYes
Set a repository's setup and test commandsYesbento repos setNo
Export and import a pipeline as YAMLYesbento pipelineNo
Add a cardYesNoYes
Add, edit and remove agentsYesYesYes
Assign an agent to a stageYesYesYes
Add, remove and rename stagesYesYesRename only
Reorder stagesDrag, or arrow keysNoNo
Switch a stage between manual and automaticYesYesYes
Edit stage requirements, judge agent includedYesYesJudge shown, not edited
Turn a stage's pull request on or offYesYesNo
Approve or reject a cardYesYesYes
Move a card between stagesDrag it between lanesa and b keys, one stepArrows on each card
Start, stop, and continue an agentYesYesYes
Save and remove provider API keysYesYesYes
Manage the team and its credentialsYesNoYes

All three drive the same API. Team management and stored credentials are multi mode only in every client, because a local install has one user and no organization to hold them.

Where the board lives, and where agents run

These are separate choices, which is what the terminal client is for:

bento                                                     # everything on this machine
bento --server https://bento.example.com                  # thin client: board and agents on the server
bento --server https://bento.example.com --agents local   # shared board, agents run here

The last one suits teams who want a shared board without their code or agent API keys leaving their machines. The board, run history, and transcripts are tracked normally and teammates see them; what stays local is the work product. Agents commit into checkouts on that machine, runs queued for a machine wait while it is offline, and nothing is pushed for you, because those worktrees are where the server cannot reach them.