Skip to main content
Ori is 100% local. All data lives on your machine. Nothing is sent to any server — except the AI model API calls you explicitly make.

Where data is stored

Everything lives in ~/.ori/:
~/.ori/
├── config.json              # Settings (providers, model, theme)
├── threads/                 # Conversation history
├── context/                 # Memory system
│   ├── user/               # Your facts, preferences, identity
│   └── projects/           # Auto-detected workspace data
├── schedules/              # Scheduled task definitions
├── drafts/                 # Unsent message drafts
├── logs/                   # Tool execution audit trail
└── skill-graph.json        # Learned tool usage patterns

API key storage

API keys are stored in your operating system’s native credential manager — not in the filesystem:
PlatformCredential Store
macOSKeychain Access (viewable in Keychain Access.app)
WindowsWindows Credential Manager (viewable in Control Panel)
LinuxSecret Service / GNOME Keyring / KDE Wallet
Keys:
  • ✅ Never touch the filesystem in plaintext
  • ✅ Survive ~/.ori/ deletion and app reinstalls
  • ✅ Are manageable through your OS’s built-in credential tools
  • ✅ Are encrypted by the OS at rest

What leaves your machine

DataWhere it goesWhen
Your messagesYour chosen AI provider (Anthropic, OpenAI, Google)When you send a message
Tool resultsYour chosen AI providerWhen Ori uses tools in a conversation
ScreenshotsYour chosen AI providerWhen using computer use
Web searchesDuckDuckGoWhen Ori searches the web
NothingNowhereWhen using Ollama (fully offline)
Ori has zero telemetry. No analytics, no crash reporting, no usage tracking. We don’t know you’re using Ori unless you tell us.

Using Ollama for full privacy

For maximum privacy, use Ollama as your AI provider:
  • All AI processing runs on your hardware
  • Zero API calls — no internet connection needed
  • Screenshots analyzed locally
  • Complete air-gapped operation

Data portability

Your ~/.ori/ directory is fully portable:
# Back up everything
cp -r ~/.ori/ ~/ori-backup/

# Move to a new machine
scp -r ~/.ori/ newmachine:~/
Conversations, memories, settings, and learned patterns all transfer.

Deleting your data

# Delete everything
rm -rf ~/.ori/

# Delete only memories (keep conversations and settings)
rm -rf ~/.ori/context/

# Delete only conversations
rm -rf ~/.ori/threads/
API keys stored in the OS credential manager need to be removed separately via your OS’s credential manager (Keychain Access on macOS, etc.).

Open source

Ori’s source code is public at github.com/open-ori/ori. You can inspect every line of code, verify the privacy claims, and build from source.