Open-source AI coworker, with memory
See the code
The multiplayer personal assistant for work.
Every teammate. Their own agent. One Space.
简体中文 · 日本語 · 한국어 · Español · Français · Português
AI work is still single-player: one person, one chat window, context pasted in by hand. Rowboat makes it multiplayer.
Everyone on the team runs their own Rowboat on their own machine, with their own memory of their work (email, meetings, notes, code) and their own model keys. A Space is the one thing you share: a place to talk, keep files and whiteboards, and get work done. Type @rowboat in a Space and your Rowboat picks it up, works with your context on your machine, and brings the result back to the room as you.
Great on your own. Even better together.
Download for Mac, Windows and Linux: rowboatlabs.com/downloads
⭐ If you find Rowboat useful, please star the repo. It helps more people find it.
One Space. All your people. And their assistants.A Space is a channel plus a shared folder. Messages, threads, DMs, reactions, polls, scheduled messages, and@mentions on one side; markdown files rendered as a wiki, uploads, and whiteboards on the other. Conversations, ideas, knowledge and the work itself, finally in the same place.
|
|
Ask your own Rowboat@rowboat what is missing? wakes your Rowboat on your machine. It gathers context from your Brain, email, meetings and notes, none of which ever leave your computer, and posts the answer back to the Space as "You (via Rowboat)". Every teammate gets the same: their own agent, their own context, one shared room.
|
|
Make something togetherDraw on a shared whiteboard with live cursors. Write docs as markdown with full history, diffs and restore. Open decks and documents in place. Agents use the very same files: an agent's edit lands on everyone's canvas within one event round-trip, and concurrent edits merge line by line instead of overwriting each other. |
|
From review to result@rowboat implement the proposal hands the work to Claude Code or Codex on that teammate's machine, with the Space's files as context. The changes come back to the thread ready for review.
|
|
Each person's Rowboat is a full local assistant. The Space lives on a small server called Harbor. The only thing that crosses the line between the two is what you (or your agent, acting as you) chose to post.
flowchart LR
subgraph J["John's machine"]
JR["John's Rowboat<br/>Brain · email · notes · code"]
end
subgraph S["Sarah's machine"]
SR["Sarah's Rowboat<br/>Brain · email · notes · code"]
end
subgraph M["Sam's machine"]
MR["Sam's Rowboat<br/>Brain · email · notes · code"]
end
H[("Harbor<br/>the Space: messages, files, whiteboards")]
JR <-- "only what gets posted" --> H
SR <--> H
MR <--> H
Harbor has one core and three doors: HTTP, a live WebSocket, and an MCP server. Rowboat's own agent gets no privileged path. It reaches the Space through the same MCP door any other agent would use, so anything Rowboat can do in a Space, your own agent can do too (see Bring any agent).
When you address your Rowboat in a thread, the whole room saw the ask, so the receipt is a reaction on your message, not a stream of chatter:
| Reaction | Meaning |
|---|---|
| 👀 | Your Rowboat picked it up and is working. The room also sees a live "Rowboat is working" chip. |
| ✅ | Done. When the outcome speaks for itself (a file edited, a thread titled, a message pinned), that is all you get. A reply is posted only when the ask wanted an answer. |
| ❗ | It needs you: a decision, a confirmation, or something it could only explain with private detail. It asks in your own chat, which only you can see, never in the room. |
Everything an agent writes is attributed to its person, "Name (via Rowboat)", and stays in history like any other message.
Everything it posts lands in front of the team. Everything it reads might be private to you. So:
You can belong to several servers at once, and a server can be just you: your notes to self live in a one-member DM.
The personal half is the same Rowboat it has always been: a desktop assistant with a memory of your work and built-in surfaces to act on it. Everything here runs on your machine.
BrainRowboat indexes email, meetings, slack and assistant conversations into a living Obsidian-style backlinked knowledge graph. |
|
|
|
|
Background agentsYou can set up background agents that run on events like new email or on schedule like every day at 8am. They can connect to tools, search the web, use the browser and write code using Claude Code or Codex. |
|
Built-in BrowserRowboat includes a browser that lets you and assistant collaborate on web tasks. Because it's isolated from your main browser, you can log in only to the accounts that you want the assistant to access. |
|
Meeting NotesA local meeting note-taker that taps into mic & speaker, produces live transcript and summarizes the meeting in a markdown file and updates the knowledge graph. |
|
Code ModeCode mode lets you spin up parallel coding agents with Claude Code or Codex, and have Rowboat drive them with all the work context where needed. |
|
AppsYou can build your own work surfaces inside Rowboat. They get access to all the tools and integrations, and you can share them with other people. |
|
IntegrationsIncludes one-click integrations to most popular products. |
|
Demo: apps to code · Demo: knowledge graph
Download latest for Mac/Windows/Linux: Download
All release files: https://github.com/rowboatlabs/rowboat/releases/latest
To connect Google services (Gmail, Calendar, and Drive), follow Google setup.
To enable voice input and voice notes (optional), add a Deepgram API key in ~/.rowboat/config/deepgram.json
To enable voice output (optional), add an ElevenLabs API key in ~/.rowboat/config/elevenlabs.json
To use Exa research search (optional), add the Exa API key in ~/.rowboat/config/exa-search.json
To enable external tools (optional), you can add any MCP server or use Composio tools by adding an API key in ~/.rowboat/config/composio.json
All API key files use the same format:
{
"apiKey": "<key>"
}
Harbor is the Spaces server. It is open source, in this repo at apps/harbor, and it is what Rowboat's hosted servers run. One process serves one org or many, on top of Postgres.
Try it locally in a minute. The dev entry boots a seeded single-org Harbor (a small team and a "Roadboard" space) in memory on port 4272, with dev tokens instead of real sign-in:
cd apps/harbor
pnpm install && pnpm build
cd packages/server && pnpm dev
In the app, open the Spaces dialog, choose Add a dev server, and point it at http://localhost:4272 with one of the seeded member ids. Or talk to it directly: every route in /v1/*, the live stream at /v1/live, and the agent door at /mcp. Set DATABASE_URL to make it durable.
Deploy it for a team. The Dockerfile builds the deployment image. Orgs are served by hostname under your apex domain (<slug>.<APEX_DOMAIN>), sign-in is OpenID Connect against an issuer you pin, and new members only ever arrive by accepting an invite.
| Variable | What it does |
|---|---|
HARBOR_MODE=deployment | Multi-org mode: resolve the org from the request host. |
DATABASE_URL | Postgres. Schema is a versioned, append-only migration ladder. |
APEX_DOMAIN | Orgs live at <slug>.<APEX_DOMAIN>; the apex itself serves create-org and my-orgs. |
AUTH_ISSUER | The OIDC issuer whose tokens are trusted (JWKS-verified). Without it Harbor falls back to dev tokens, which must never be exposed publicly. |
AUTH_PUBLISHABLE_KEY | Enables the login/consent page (social sign-in only; Harbor never sees a credential). |
HARBOR_ALLOWED_DOMAINS | Comma-separated email domains allowed to accept invites (single-org mode). |
BLOBS_DIR or BLOBS_S3_BUCKET | Where uploads go: local disk, or any S3-compatible bucket (BLOBS_S3_ENDPOINT, BLOBS_S3_REGION). |
PORT | Defaults to 4272. |
The wire contract between Harbor and everything that talks to it is the @rowboat/spaces-protocol package; apps/harbor/CONTRACT.md is its narrative, including the merge semantics, the invite ceremony, and what is deliberately still v0. Expect breaking changes while we dogfood.
Every org exposes an MCP server at https://<org address>/mcp (streamable HTTP). It is the exact surface Rowboat's own agent uses: read and post messages, react, open DMs, create and manage threads, read files, propose changes with a base version, upload attachments, search, catch up on activity, mint invites. Whatever connects authenticates as a member and everything it does is attributed to that member, "Name (via )".
With Claude Code, for example:
claude mcp add --transport http my-team https://<org address>/mcp
Harbor publishes OAuth protected-resource metadata, so any MCP client that speaks OAuth 2.1 finds the sign-in flow on its own. Sign in as yourself and the agent works as you; sign in as a member you created for it and it has a seat of its own.
Most AI tools reconstruct context on demand by searching transcripts or documents, and most team AI tools put one shared bot in the middle of everyone's data.
Rowboat keeps long-lived, personal knowledge and makes the sharing explicit:
The result is memory that compounds, and collaboration that does not require handing your inbox to a shared bot.
Rowboat works with the model setup you prefer:
Rowboat can connect to external tools and services via Model Context Protocol (MCP). That means you can plug in (for example) search, databases, CRMs, support tools, and automations - or your own internal tools.
Examples: Exa (web search), Twitter/X, ElevenLabs (voice), Slack, Linear/Jira, GitHub, and more.
Parallel Search MCP provides web_search and web_fetch for public web search and page extraction without a Parallel account or API key. Free access is rate limited.
Open Settings → MCP Servers, add the parallel entry to your existing mcpServers object, and click Save. Keep any other server entries. If no servers are configured, use:
{
"mcpServers": {
"parallel": {
"url": "https://search.parallel.ai/mcp"
}
}
}
This connects through Rowboat's existing Streamable HTTP client. Ask Rowboat to list the tools on the parallel server, then try: "Use Parallel to find the official MCP documentation."
Once configured, Rowboat can invoke these tools during its work, subject to your MCP tool permissions. Queries, requested URLs, and any supplied objectives or context are sent to Parallel. This setup leaves Exa and other configured providers unchanged. To remove it, delete the parallel entry in Settings → MCP Servers and save.
apps/x: the desktop app (Electron), the headless rowboat-server, and a Spaces-only mobile clientapps/harbor: the Spaces server and the @rowboat/spaces-protocol contract
TypeScript
98.1%
CSS
1.0%
Open-source AI coworker, with memory
See the code
The multiplayer personal assistant for work.
Every teammate. Their own agent. One Space.
简体中文 · 日本語 · 한국어 · Español · Français · Português
AI work is still single-player: one person, one chat window, context pasted in by hand. Rowboat makes it multiplayer.
Everyone on the team runs their own Rowboat on their own machine, with their own memory of their work (email, meetings, notes, code) and their own model keys. A Space is the one thing you share: a place to talk, keep files and whiteboards, and get work done. Type @rowboat in a Space and your Rowboat picks it up, works with your context on your machine, and brings the result back to the room as you.
Great on your own. Even better together.
Download for Mac, Windows and Linux: rowboatlabs.com/downloads
⭐ If you find Rowboat useful, please star the repo. It helps more people find it.
One Space. All your people. And their assistants.A Space is a channel plus a shared folder. Messages, threads, DMs, reactions, polls, scheduled messages, and@mentions on one side; markdown files rendered as a wiki, uploads, and whiteboards on the other. Conversations, ideas, knowledge and the work itself, finally in the same place.
|
|
Ask your own Rowboat@rowboat what is missing? wakes your Rowboat on your machine. It gathers context from your Brain, email, meetings and notes, none of which ever leave your computer, and posts the answer back to the Space as "You (via Rowboat)". Every teammate gets the same: their own agent, their own context, one shared room.
|
|
Make something togetherDraw on a shared whiteboard with live cursors. Write docs as markdown with full history, diffs and restore. Open decks and documents in place. Agents use the very same files: an agent's edit lands on everyone's canvas within one event round-trip, and concurrent edits merge line by line instead of overwriting each other. |
|
From review to result@rowboat implement the proposal hands the work to Claude Code or Codex on that teammate's machine, with the Space's files as context. The changes come back to the thread ready for review.
|
|
Each person's Rowboat is a full local assistant. The Space lives on a small server called Harbor. The only thing that crosses the line between the two is what you (or your agent, acting as you) chose to post.
flowchart LR
subgraph J["John's machine"]
JR["John's Rowboat<br/>Brain · email · notes · code"]
end
subgraph S["Sarah's machine"]
SR["Sarah's Rowboat<br/>Brain · email · notes · code"]
end
subgraph M["Sam's machine"]
MR["Sam's Rowboat<br/>Brain · email · notes · code"]
end
H[("Harbor<br/>the Space: messages, files, whiteboards")]
JR <-- "only what gets posted" --> H
SR <--> H
MR <--> H
Harbor has one core and three doors: HTTP, a live WebSocket, and an MCP server. Rowboat's own agent gets no privileged path. It reaches the Space through the same MCP door any other agent would use, so anything Rowboat can do in a Space, your own agent can do too (see Bring any agent).
When you address your Rowboat in a thread, the whole room saw the ask, so the receipt is a reaction on your message, not a stream of chatter:
| Reaction | Meaning |
|---|---|
| 👀 | Your Rowboat picked it up and is working. The room also sees a live "Rowboat is working" chip. |
| ✅ | Done. When the outcome speaks for itself (a file edited, a thread titled, a message pinned), that is all you get. A reply is posted only when the ask wanted an answer. |
| ❗ | It needs you: a decision, a confirmation, or something it could only explain with private detail. It asks in your own chat, which only you can see, never in the room. |
Everything an agent writes is attributed to its person, "Name (via Rowboat)", and stays in history like any other message.
Everything it posts lands in front of the team. Everything it reads might be private to you. So:
You can belong to several servers at once, and a server can be just you: your notes to self live in a one-member DM.
The personal half is the same Rowboat it has always been: a desktop assistant with a memory of your work and built-in surfaces to act on it. Everything here runs on your machine.
BrainRowboat indexes email, meetings, slack and assistant conversations into a living Obsidian-style backlinked knowledge graph. |
|
|
|
|
Background agentsYou can set up background agents that run on events like new email or on schedule like every day at 8am. They can connect to tools, search the web, use the browser and write code using Claude Code or Codex. |
|
Built-in BrowserRowboat includes a browser that lets you and assistant collaborate on web tasks. Because it's isolated from your main browser, you can log in only to the accounts that you want the assistant to access. |
|
Meeting NotesA local meeting note-taker that taps into mic & speaker, produces live transcript and summarizes the meeting in a markdown file and updates the knowledge graph. |
|
Code ModeCode mode lets you spin up parallel coding agents with Claude Code or Codex, and have Rowboat drive them with all the work context where needed. |
|
AppsYou can build your own work surfaces inside Rowboat. They get access to all the tools and integrations, and you can share them with other people. |
|
IntegrationsIncludes one-click integrations to most popular products. |
|
Demo: apps to code · Demo: knowledge graph
Download latest for Mac/Windows/Linux: Download
All release files: https://github.com/rowboatlabs/rowboat/releases/latest
To connect Google services (Gmail, Calendar, and Drive), follow Google setup.
To enable voice input and voice notes (optional), add a Deepgram API key in ~/.rowboat/config/deepgram.json
To enable voice output (optional), add an ElevenLabs API key in ~/.rowboat/config/elevenlabs.json
To use Exa research search (optional), add the Exa API key in ~/.rowboat/config/exa-search.json
To enable external tools (optional), you can add any MCP server or use Composio tools by adding an API key in ~/.rowboat/config/composio.json
All API key files use the same format:
{
"apiKey": "<key>"
}
Harbor is the Spaces server. It is open source, in this repo at apps/harbor, and it is what Rowboat's hosted servers run. One process serves one org or many, on top of Postgres.
Try it locally in a minute. The dev entry boots a seeded single-org Harbor (a small team and a "Roadboard" space) in memory on port 4272, with dev tokens instead of real sign-in:
cd apps/harbor
pnpm install && pnpm build
cd packages/server && pnpm dev
In the app, open the Spaces dialog, choose Add a dev server, and point it at http://localhost:4272 with one of the seeded member ids. Or talk to it directly: every route in /v1/*, the live stream at /v1/live, and the agent door at /mcp. Set DATABASE_URL to make it durable.
Deploy it for a team. The Dockerfile builds the deployment image. Orgs are served by hostname under your apex domain (<slug>.<APEX_DOMAIN>), sign-in is OpenID Connect against an issuer you pin, and new members only ever arrive by accepting an invite.
| Variable | What it does |
|---|---|
HARBOR_MODE=deployment | Multi-org mode: resolve the org from the request host. |
DATABASE_URL | Postgres. Schema is a versioned, append-only migration ladder. |
APEX_DOMAIN | Orgs live at <slug>.<APEX_DOMAIN>; the apex itself serves create-org and my-orgs. |
AUTH_ISSUER | The OIDC issuer whose tokens are trusted (JWKS-verified). Without it Harbor falls back to dev tokens, which must never be exposed publicly. |
AUTH_PUBLISHABLE_KEY | Enables the login/consent page (social sign-in only; Harbor never sees a credential). |
HARBOR_ALLOWED_DOMAINS | Comma-separated email domains allowed to accept invites (single-org mode). |
BLOBS_DIR or BLOBS_S3_BUCKET | Where uploads go: local disk, or any S3-compatible bucket (BLOBS_S3_ENDPOINT, BLOBS_S3_REGION). |
PORT | Defaults to 4272. |
The wire contract between Harbor and everything that talks to it is the @rowboat/spaces-protocol package; apps/harbor/CONTRACT.md is its narrative, including the merge semantics, the invite ceremony, and what is deliberately still v0. Expect breaking changes while we dogfood.
Every org exposes an MCP server at https://<org address>/mcp (streamable HTTP). It is the exact surface Rowboat's own agent uses: read and post messages, react, open DMs, create and manage threads, read files, propose changes with a base version, upload attachments, search, catch up on activity, mint invites. Whatever connects authenticates as a member and everything it does is attributed to that member, "Name (via )".
With Claude Code, for example:
claude mcp add --transport http my-team https://<org address>/mcp
Harbor publishes OAuth protected-resource metadata, so any MCP client that speaks OAuth 2.1 finds the sign-in flow on its own. Sign in as yourself and the agent works as you; sign in as a member you created for it and it has a seat of its own.
Most AI tools reconstruct context on demand by searching transcripts or documents, and most team AI tools put one shared bot in the middle of everyone's data.
Rowboat keeps long-lived, personal knowledge and makes the sharing explicit:
The result is memory that compounds, and collaboration that does not require handing your inbox to a shared bot.
Rowboat works with the model setup you prefer:
Rowboat can connect to external tools and services via Model Context Protocol (MCP). That means you can plug in (for example) search, databases, CRMs, support tools, and automations - or your own internal tools.
Examples: Exa (web search), Twitter/X, ElevenLabs (voice), Slack, Linear/Jira, GitHub, and more.
Parallel Search MCP provides web_search and web_fetch for public web search and page extraction without a Parallel account or API key. Free access is rate limited.
Open Settings → MCP Servers, add the parallel entry to your existing mcpServers object, and click Save. Keep any other server entries. If no servers are configured, use:
{
"mcpServers": {
"parallel": {
"url": "https://search.parallel.ai/mcp"
}
}
}
This connects through Rowboat's existing Streamable HTTP client. Ask Rowboat to list the tools on the parallel server, then try: "Use Parallel to find the official MCP documentation."
Once configured, Rowboat can invoke these tools during its work, subject to your MCP tool permissions. Queries, requested URLs, and any supplied objectives or context are sent to Parallel. This setup leaves Exa and other configured providers unchanged. To remove it, delete the parallel entry in Settings → MCP Servers and save.
apps/x: the desktop app (Electron), the headless rowboat-server, and a Spaces-only mobile clientapps/harbor: the Spaces server and the @rowboat/spaces-protocol contract
TypeScript
98.1%
CSS
1.0%