Docs

Get going in about a minute

Download it, point an agent at it, name a workspace. That is the whole setup.

Get Mochi

Download the app from the latest release, open it, and you have a workspace. Nothing to sign up for and nothing to configure.

Running it from a checkout instead needs Node 24 or newer.

Connect an agent

One command per client. It creates the local store and writes the configuration the client needs; it does not install or sign in to the client itself.

npx --yes github:mochi-cli/mochi#v0.2.20 install claude-code
npx --yes github:mochi-cli/mochi#v0.2.20 install claude-desktop
npx --yes github:mochi-cli/mochi#v0.2.20 install codex
npx --yes github:mochi-cli/mochi#v0.2.20 install opencode

Restart the client afterwards. The agent talks to Mochi over a pipe on your own machine, so there is no port to open, no token to paste and nothing in between.

Make a workspace

Nothing is created until you name it. The easiest way is to ask the agent once it is connected:

Create a workspace named sales-demo,
seed the CRM template, and open it.

Or do it yourself before you start:

mochi-table create --template crm \
  --db ~/.mochi/workspaces/default.sqlite

Open a table from chat

Ask the agent to open a table and it opens the one for the workspace you are in. It cannot be handed a path or a link, so a prompt can never point it somewhere you did not mean.

Where your data lives

Your rows are in a file under ~/.mochi, on your machine. Nothing about a row is sent anywhere, and the app works with the network off.

Database files are ignored by Git by default, so nothing lands in a commit by accident.

Keep a copy of the history

Every change is attributed to whoever made it, whether that was a person or an agent. Undo puts things back without erasing the record of what happened.

You can take the whole history with you:

mochi-table bundle --out history.bundle
git bundle verify history.bundle
git clone history.bundle history

The full reference, including every command and what Mochi deliberately does not do, lives in the README.

Ready to get your data in order?

Download Mochi and start in about a minute. Nothing to set up, nothing to sign up for.