Skip to content

Privacy & Data

Ariv is built on a local-first architecture. Your notes live on your computer as plain files, and you have full control over what (if anything) leaves your machine. This page explains exactly how your data is handled.


Ariv stores everything locally on your computer:

  • Your notes are plain .md files in your vault folder. They are never converted to a proprietary format.
  • The search index is a SQLite database stored in Ariv’s data directory. It exists purely to make search fast — all the data in it comes from your files.
  • Your settings are stored as a JSON file in the app data directory.

No Ariv account is required. There is no cloud storage, no server-side processing, and no sign-up. You own your data completely — it’s just files on your disk that you can open with any text editor.


Ariv makes network calls only in these specific cases. Each one is either optional or contains no personal data.

When you use AI features — Ask Brain, AI tag refinement, or note summarization — excerpts of your notes are sent to your chosen AI provider for processing.

DetailInfo
WhenOnly when you actively use an AI feature
What’s sentNote content, truncated to 5,000-8,000 characters per note
WhereYour configured provider: Google Gemini, OpenAI, Anthropic, or Ollama
How to avoidDon’t configure an AI provider, or use Ollama (fully local)

A single anonymous ping is sent when Ariv opens. This helps count active users and nothing more.

DetailInfo
WhenOnce per app launch
What’s sentAnonymous ID (randomly generated, not tied to you), app version, platform (macOS/Windows)
What’s NOT sentNo note content, no file names, no feature usage, no personal data
How to disableSettings: privacy.telemetryEnabled (set to off)

3. Feature Analytics (opt-in, off by default)

Section titled “3. Feature Analytics (opt-in, off by default)”

Anonymous feature usage counts to help the development team prioritize what to build next.

DetailInfo
WhenOnly if you explicitly enable it
What’s sentAnonymous counts of feature usage (e.g., “search used 12 times”)
What’s NOT sentNo note content, no note titles, no file paths, no personal data
How to enableSettings: privacy.analyticsEnabled (default: off)

Ariv checks for new versions on launch by contacting the update server hosted on Cloudflare R2.

DetailInfo
WhenEach app launch
What’s sentCurrent app version (to determine if an update is available)
What’s NOT sentNo user data of any kind

The local semantic search model is downloaded once (approximately 22MB) the first time you enable semantic search.

DetailInfo
WhenOne-time download on first use
What’s sentNo user data — this is a download only

After downloading, semantic search runs entirely on your machine with no network calls.


Ariv provides several privacy controls in Settings:

SettingWhat it doesDefault
privacy.storeRecentFilesRemember recently opened files for quick accessOn
privacy.clearHistoryOnExitClear the recent files list every time Ariv closesOff
privacy.telemetryEnabledSend anonymous open ping on launchOn
privacy.analyticsEnabledSend anonymous feature usage countsOff

When you use cloud AI features, note content is sent to the provider you’ve selected. Each provider has their own data handling and retention policies:

Ariv sends only the minimum context needed for each AI operation. Note content is truncated to 5,000-8,000 characters, and only notes relevant to your query are included.


All of Ariv’s data is stored in standard platform-specific directories:

DatamacOSWindows
Your notesWherever your vault folder isWherever your vault folder is
Database & settings~/Library/Application Support/Ariv/%APPDATA%/Ariv/
Logs~/Library/Logs/Ariv/%APPDATA%/Ariv/logs/

To remove all Ariv data from your machine:

  1. Delete your notes — Remove your vault folder to delete all notes. (Only do this if you no longer want the notes — they belong to you, not Ariv.)
  2. Delete app data — Remove Ariv’s data directory to delete the database, settings, caches, and logs:
    • macOS: ~/Library/Application Support/Ariv/
    • Windows: %APPDATA%/Ariv/
  3. Uninstall the app — Remove Ariv through your operating system’s normal uninstall process:
    • macOS: Drag Ariv from Applications to the Trash.
    • Windows: Use “Add or remove programs” in Settings.

After these steps, no Ariv data remains on your machine.


Your notes are plain markdown files. There is no proprietary formatting, no special database encoding, and no export step required.

You can:

  • Open your notes with any text editor (VS Code, Sublime Text, Notepad, vim, etc.)
  • Move your vault to another app (Obsidian, Logseq, Typora, etc.) with zero conversion
  • Back up your notes by simply copying the folder
  • Use your notes with version control (Git, etc.)
  • Access your notes on any device via your preferred file sync tool

Ariv adds metadata only to its own SQLite database, never to your files. If you uninstall Ariv, your notes remain exactly as they are.


Related: FAQ — Common questions about Ariv | Troubleshooting — Solutions to common issues