Workspace
Your account. It holds your plan, your members, your Boxes and your agents. You can belong to several workspaces and switch between them from the pill in the top left corner of the app. An API key is scoped to exactly one workspace.Box
A private computer in the cloud, isolated from every other account, that hosts your agents. On the board it is the rectangle your agents sit on. One Box holds many agents and gives them two things they share: a shared folder and a shared database. You can restart it or shut it down from its panel.The Rerun API calls a Box a
space, in tool names like list_spaces and space_db_query. Same thing.Agent
An AI worker inside a Box. It has:Soul
The agent system prompt, written in markdown. It is the single most important thing about an agent. Edit it in the agent Settings tab, or let the agent rewrite it as it learns.Skill
A written procedure the agent loads on demand, when the task matches its description. It is a folder: a markdown body plus optional reference files. Skills keep an agent sharp without bloating its prompt: only a one-line index of every skill is always in context, and the full text loads when it is needed. See Skills.Memory
Durable facts the agent writes down and recalls later. Memories fade if nothing uses them, and each recall extends their life, so what matters stays and what does not quietly retires. Correct an agent once and it remembers the correction.Connector
A ready-made integration with an external service: Stripe, Gmail, Notion, Slack and hundreds more. Installing one on an agent gives it that service tools plus a skill explaining how to use them. A connector is installed per agent, not per Box. See Connectors.MCP server
The open standard Rerun connectors are built on. When the library does not have what you need, you can register any MCP server on an agent yourself, with its own URL, headers or command.Run
One execution of an agent. It starts when you send a message, when a scheduled task fires, when a webhook is called, or when another agent calls it. It ends when the agent is done, when it fails, when you cancel it, or when it pauses to ask you something. Every run records its steps, its tool calls, its tokens and its cost. Read them in the Monitoring and Logs tabs, or withget_run.