§ ENT · S1
Where data lives
What we see, what we store, what we don’t.
A clear picture of the data routes — from the client to Anthropic and back. Storage, retention and access included.
01 · Relay
Routed through our relay
All LLM requests pass through it and history is stored there (EU, Stockholm).
02 · History
Transcripts in the relay DB
Sessions and messages are written to Postgres: role, content, tool calls, timestamps. Needed to "return to an old chat". On request we purge, export or migrate them to your self-host.
03 · LLM providers
Anthropic and compatible
Chat traffic goes to Claude via the API. Per their policy, API requests are not used to train models. The relay can fail over between several backup providers — on request we pin it to one.
04 · Permission engine
Protection from accidental deletes
Every tool operation is classified: destructive bash patterns (rm -rf, git reset --hard), dangerous PowerShell cmdlets, an SSRF guard for fetch, a read-only pool for safe commands. YOLO auto-approves only what is safe.
05 · Local
No whole-repo upload
In Code mode the agent runs on your machine and doesn't index or bulk-upload your repository — there's no background copy of your codebase in the cloud. Only the specific prompt text and tool results the agent needs are sent to the model provider.
06 · Deletion
Right to be forgotten
The account and all data are deleted on request — sessions, messages, the MCP token cache, api_calls. The process is spelled out in the contract. You initiate it; turnaround is one business day.