Your assistant's identity, personality, and knowledge about you live in a folder on your computer: ~/.vellum/workspace/.
The files that define who your assistant is and how it behaves are plain text — markdown files you can open, read, and edit in any text editor. Alongside those, the workspace also contains databases for conversation history and memory, installed skills, and a sandboxed area where the assistant can read and write files on your behalf.
~/.vellum/ ├── workspace/ │ ├── IDENTITY.md ← Who your assistant is │ ├── SOUL.md ← How your assistant behaves │ ├── USER.md ← What it knows about you │ ├── BOOTSTRAP.md ← First-run onboarding (deleted after setup) │ ├── UPDATES.md ← Release notes (deleted after read) │ ├── config.json ← Runtime configuration │ ├── skills/ ← Installed and custom skills │ ├── hooks/ ← Event-triggered automation │ └── data/ ← Databases, logs, memory, apps │ ├── db/ ← Conversation history (SQLite) │ ├── qdrant/ ← Memory embeddings (vector DB) │ ├── memory/ ← Knowledge base documents │ ├── apps/ ← User-defined apps │ ├── logs/ ← Daemon logs │ └── avatar/ ← Avatar image ├── protected/ ← Credentials & secrets (never exported) └── hooks/ ← Global automation hooks
These three files are loaded into every conversation. When your assistant wakes up, it reads them to remember who it is, who you are, and how it should behave. Edit any of them, and the changes take effect on the next conversation.
Your assistant's self-definition:
- Name: Gigi - Nature: AI familiar - Personality: Witty, sharp, slightly irreverent - Emoji: 😏 - Style tendency: concise, opinionated
You can edit this file directly. Change the name, tweak the personality, swap the emoji. Your assistant picks up the changes next time you talk to it.
The big one. SOUL.md is your assistant's constitution — the principles and behavioral rules it follows in every conversation.
What's in here:
Your assistant updates this file on its own as it learns what works for you. But you can edit it too. Want it to stop being sarcastic? Remove the sarcasm. Want it to always explain before acting? Add that rule. It's your file.
Everything your assistant has learned about you:
Your assistant adds to this over time through conversations. You can also edit it directly to fast-track the learning process or correct something it got wrong. If you declined to answer a question during onboarding, it's marked here so the assistant doesn't re-ask.
This file only exists during onboarding. It's the script your assistant follows for your first conversation — figuring out its name, its vibe, who you are, and what you need help with. Once onboarding is complete, the assistant deletes it. If you see it in your workspace, onboarding hasn't finished yet.
When your assistant gets an update, release notes appear in this file. The assistant reads them, decides what's worth telling you about, and then deletes the file. You might catch it between updates, but it's not meant to stick around.
Each skill gets its own folder containing:
Built-in skills from the catalog live here alongside any custom skills you've built. You can inspect, modify, or delete any of them.
This is where the assistant keeps its internal state. You generally won't need to touch these, but here's what's in there:
~/.vellum/protected/ is separate from the workspace. It stores credentials, API keys, and OAuth tokens. This directory is never included in diagnostic exports — when you send logs to Vellum for debugging, your secrets stay on your machine.
Your assistant operates within a security boundary. Here's how it works:
~/.vellum/workspace/. The assistant can freely create, read, and edit files within this boundary — no approval needed.Path traversal (using ../ to escape the workspace) is blocked. Symlinks that point outside the boundary are rejected. The sandbox is enforced at the OS level — sandbox-exec on macOS, bubblewrap on Linux.