Every app you depend on will eventually stop being maintained. Most software outlives its company by very little — funding runs out, a founder moves on, priorities shift, an acquirer shuts down the product line six months after buying it for the team. This is normal and not really anyone's fault. But for most apps, it's a minor inconvenience: you lose a to-do list, a habit tracker, a game save. For a journaling app specifically, it can mean years of your own private writing become permanently unreachable, because the entries were never really yours in the sense of being in your possession — they were on someone else's server, accessible through someone else's app.
The two different meanings of "your data"
Almost every app says some version of "your data belongs to you." It's worth separating two very different things that phrase can mean:
- Legal ownership — the company's terms of service state that you own the content you create. This is usually true and usually irrelevant, because...
- Physical possession — whether the data is actually sitting somewhere you control, independent of whether the company that made the app still exists.
Owning something you can't reach isn't really ownership in any way that matters. If a company shuts down its servers, "you legally owned your journal" is cold comfort when the only copy lived in a database that no longer responds to requests.
What local-first storage actually changes
If your journal is never in a company's database in the first place, there's no shutdown scenario where it disappears with the company.
MirrorNotes stores every entry on your device using SwiftData — the same on-device storage framework Apple provides for any iOS app — and syncs it through your own private iCloud account via CloudKit. That second part matters as much as the first: sync isn't a custom service I run and could discontinue. It's Apple's infrastructure, under your Apple ID, and it keeps working regardless of what happens to MirrorNotes as a company or a codebase.
If MirrorNotes stopped being updated tomorrow:
- Every entry you've already written stays exactly where it is — on your device, and in your iCloud, readable by the app you already have installed.
- Nothing needs to be exported in advance, because nothing was ever somewhere that could vanish.
- The AI features (which depend on the app's local model) would stop receiving updates, but your actual journal — the thing that matters — isn't touched.
This is also why the app is open source (AGPL-3.0): even the software itself isn't something that can be taken away. The full source is public, so the app's behavior — including exactly how it reads and stores your entries — stays inspectable and forkable regardless of what happens to the company behind it.
What to ask before trusting a journaling app with years of your writing
Before committing years of private writing to any app, it's worth asking one blunt question: if this company disappeared tomorrow with zero notice, where would my entries physically be, and could I still read them? If the honest answer involves "hopefully I exported in time" or "depends on their wind-down process," that's worth knowing before you're ten years and thousands of entries in — not after.
MirrorNotes
Private AI journaling for iPhone. Your entries live on your device and your own iCloud — never in a company database that could disappear.