Introduction to LifeVault
Learn how to transform your cluttered digital life into a structured, secure, and searchable vault.
What is LifeVault?
LifeVault is a file-system-first organizer designed for the modern individual. It doesn't replace your storage; it augments it. By layering a smart structure over your existing cloud and local folders, LifeVault helps you manage IDs, warranties, receipts, and critical documents with zero friction.
Privacy First
LifeVault never uploads your files to its own servers. Your data stays in your control, on your devices and your chosen cloud providers.
Quick Start Guide
To get started with LifeVault, follow these three simple steps:
Connect Storage
Link your local folders or cloud drives like iCloud or Drive.
Choose Presets
Enable smart categories like 'Tax Documents' or 'Warranties'.
Start Scanning
LifeVault will automatically index and organize your files.
Developer API
LifeVault offers a local-first API to interact with your vault programmatically. Here is how you can fetch your expiring warranties via CLI:
# Fetch all expiring warranties in the next 30 days
lifevault list --type "warranty" --expiring-in 30d --format json
// Output:
[
{
"id": "warr_8k2l1",
"name": "MacBook Pro M3",
"expires_at": "2024-12-15",
"provider": "AppleCare+"
}
]