Agent workspace
The workspace is the agent’s home. It is the only working directory used for file tools and for workspace context. Keep it private and treat it as memory. This is separate from~/.clawdbot/, which stores config, credentials, and
sessions.
Default location
- Default:
~/clawd - If
CLAWDBOT_PROFILEis set and not"default", the default becomes~/clawd-<profile>. - Override in
~/.clawdbot/clawdbot.json:
clawdbot onboard, clawdbot configure, or clawdbot setup will create the
workspace and seed the bootstrap files if they are missing.
If you already manage the workspace files yourself, you can disable bootstrap
file creation:
Legacy workspace folders
Older installs may have created~/clawdis or ~/clawdbot. Keeping multiple
workspace directories around can cause confusing auth or state drift, because
only one workspace is active at a time.
Recommendation: keep a single active workspace. If you no longer use the
legacy folders, archive or move them to Trash (for example trash ~/clawdis).
If you intentionally keep multiple workspaces, make sure
agent.workspace points to the active one.
clawdbot doctor warns when it detects legacy workspace directories.
Workspace file map (what each file means)
These are the standard files Clawdbot expects inside the workspace:-
AGENTS.md- Operating instructions for the agent and how it should use memory.
- Loaded at the start of every session.
- Good place for rules, priorities, and “how to behave” details.
-
SOUL.md- Persona, tone, and boundaries.
- Loaded every session.
-
USER.md- Who the user is and how to address them.
- Loaded every session.
-
IDENTITY.md- The agent’s name, vibe, and emoji.
- Created/updated during the bootstrap ritual.
-
TOOLS.md- Notes about your local tools and conventions.
- Does not control tool availability; it is only guidance.
-
HEARTBEAT.md- Optional tiny checklist for heartbeat runs.
- Keep it short to avoid token burn.
-
BOOTSTRAP.md- One-time first-run ritual.
- Only created for a brand-new workspace.
- Delete it after the ritual is complete.
-
memory/YYYY-MM-DD.md- Daily memory log (one file per day).
- Recommended to read today + yesterday on session start.
-
MEMORY.md(optional)- Curated long-term memory.
- Only load in the main, private session (not shared/group contexts).
-
skills/(optional)- Workspace-specific skills.
- Overrides managed/bundled skills when names collide.
-
canvas/(optional)- Canvas UI files for node displays (for example
canvas/index.html).
- Canvas UI files for node displays (for example
clawdbot setup can recreate missing defaults
without overwriting existing files.
What is NOT in the workspace
These live under~/.clawdbot/ and should NOT be committed to the workspace repo:
~/.clawdbot/clawdbot.json(config)~/.clawdbot/credentials/(OAuth tokens, API keys)~/.clawdbot/agents/<agentId>/sessions/(session transcripts + metadata)~/.clawdbot/skills/(managed skills)
Git backup (recommended, private)
Treat the workspace as private memory. Put it in a private git repo so it is backed up and recoverable. Run these steps on the machine where the Gateway runs (that is where the workspace lives).1) Initialize the repo
2) Add a private remote (beginner-friendly options)
Option A: GitHub web UI- Create a new private repository on GitHub.
- Do not initialize with a README (avoids merge conflicts).
- Copy the HTTPS remote URL.
- Add the remote and push:
gh)
- Create a new private repository on GitLab.
- Do not initialize with a README (avoids merge conflicts).
- Copy the HTTPS remote URL.
- Add the remote and push:
3) Ongoing updates
Do not commit secrets
Even in a private repo, avoid storing secrets in the workspace:- API keys, OAuth tokens, passwords, or private credentials.
- Anything under
~/.clawdbot/. - Raw dumps of chats or sensitive attachments.
~/.clawdbot/).
Suggested .gitignore starter:
Moving the workspace to a new machine
- Clone the repo to the desired path (default
~/clawd). - Set
agent.workspaceto that path in~/.clawdbot/clawdbot.json. - Run
clawdbot setup --workspace <path>to seed any missing files. - If you need sessions, copy
~/.clawdbot/agents/<agentId>/sessions/from the old machine separately.
Advanced notes
- Multi-agent routing can use different workspaces per agent. See
docs/provider-routing.mdfor routing configuration. - If
agent.sandboxis enabled, non-main sessions can use per-session sandbox workspaces underagent.sandbox.workspaceRoot.