Interested? Join the waitlist to get early access.
Join the waitlist to get your download link.
Standard .dmg file. Nothing weird, nothing suspicious.
.dmgThat's the whole process. No terminal commands. No package managers. No YAML files. (You're welcome.)
On first launch, you'll walk through a short setup:
The whole process takes about 2 minutes. Your workspace is created at ~/.vellum/workspace/ — plain text files, fully readable and editable by you.
Vellum creates one directory on your machine:
~/.vellum/ ├── workspace/ │ ├── IDENTITY.md # Name, personality, emoji │ ├── SOUL.md # Principles and behavior rules │ ├── USER.md # What the assistant knows about you │ ├── NOW.md # Current focus, goals, and context │ ├── config.json # Runtime configuration │ ├── skills/ # Installed and custom skills │ └── data/ │ └── db/ │ └── assistant.db # Conversations, memory, schedules (SQLite) ├── lockfile.json # Running assistant instances and ports
Everything is plain text (aside from the SQLite database). You can open these files in any editor, read them, change them, even put them in version control. Your assistant's brain is not a black box. It's a folder on your computer.
Session logs are stored in ~/Library/Application Support/vellum-assistant/logs/. The daemon binary lives inside the .app bundle, not in ~/.vellum/.
Vellum doesn't ask for all its permissions upfront. Instead, permissions are requested only when they're actually needed:
| Permission | Purpose | When requested |
|---|---|---|
| Screen Recording | See your screen for computer-use tasks | First time your assistant needs to see your screen |
| Microphone | Voice input (hold Fn to talk) | First time you use voice input |
| Speech Recognition | Convert voice to text | First time you use voice input |
| Accessibility | Control your Mac (click, type, navigate) | First time your assistant needs to interact with your apps |
| Notifications | Status updates and reminders | Optional, on first notification |
Worth knowing: The app accesses files through normal sandbox entitlements, not Full Disk Access. Individual file and shell actions still require your approval through the in-app permission system. Check out Trust & Security for the full picture.
Vellum checks for updates automatically in the background. When an update is available, you'll see a green update button in the top right corner of the app. You can install immediately or defer until later. Updates are signed and verified before installation.
Key terms and concepts used throughout the Vellum Assistant ecosystem.