Workspace Files#
OpenClaw stores its personality, user context, and behavioral configuration in a set of Markdown files inside the sandbox.
These files live at /sandbox/.openclaw/workspace/ and are collectively called workspace files.
File Reference#
File |
Purpose |
|---|---|
|
Defines the agent’s persona, tone, and communication style. |
|
Stores information about the human the agent assists. |
|
Short identity card — name, language, emoji, creature type. |
|
Behavioral rules, memory conventions, safety guidelines, and session workflow. |
|
Curated long-term memory distilled from daily notes. |
|
Directory of daily note files ( |
Where They Live#
All workspace files reside inside the sandbox filesystem:
/sandbox/.openclaw/workspace/
├── AGENTS.md
├── IDENTITY.md
├── MEMORY.md
├── SOUL.md
├── USER.md
└── memory/
├── 2026-03-18.md
└── 2026-03-19.md
Persistence Behavior#
Understanding when these files persist and when they are lost is critical.
Survives: Sandbox Restart#
Sandbox restarts (openshell sandbox restart) preserve workspace files.
The sandbox uses a Persistent Volume Claim (PVC) that outlives individual container restarts.
Lost: Sandbox Destroy#
Running nemoclaw <name> destroy deletes the sandbox and its PVC.
All workspace files are permanently lost unless you back them up first.
Warning
Always back up your workspace files before running nemoclaw <name> destroy.
See Backup and Restore for instructions.
Editing Workspace Files#
The agent reads these files at the start of every session. You can edit them in two ways:
Let the agent do it — Ask your agent to update its persona, memory, or user context.
Edit manually — Use
openshell sandbox shellto open a terminal inside the sandbox and edit files directly, or useopenshell sandbox uploadto push edited files from your host.