A universal content-saving app powered by AI — save any link, place, idea, or resource, and let AI automatically categorise, tag, and surface it exactly when you need it. Built because the problem was personal.
You find a great restaurant while researching a trip. You save a blog post you want to read later. You bookmark a GitHub repo. You screenshot a product you want to buy. You star a tweet with a tool recommendation.
Three weeks later — gone. Completely lost. Not because the content disappeared, but because it's spread across 6 different apps with no consistent organisation, no search, and no way to surface the right thing at the right moment.
This is the problem Zave.AI solves. One place for everything. AI handles the rest.
Zave.AI is built as a web app first, with a React frontend, Gemini AI for categorisation, and Google Maps API for place integration. The architecture is designed to be lightweight and fast — saving a link should feel instant.
| Layer | Technology | Purpose |
|---|---|---|
| Frontend | React · Lovable | Web interface — save, browse, search content |
| AI Categorisation | Gemini AI API | Automatic tagging, category assignment, content summarisation |
| Places Integration | Google Maps API | Detect and enrich location-based saves with map data |
| Storage | Cloud database (TBD) | Persistent storage of saved content across devices |
| Mobile | React Native (planned) | Native share intent for saving directly from any app |
// Gemini AI categorisation on save const categoriseContent = async (url, content) => { const prompt = ` Analyse this saved content and return a JSON object with: - category: one of [article, video, tool, place, product, research, other] - tags: array of 3-5 relevant tags - summary: one sentence description - relevance: personal or professional Content: ${content.title} - ${content.description} URL: ${url} `; const response = await callGemini(prompt); return JSON.parse(response); // Returns: { category: "article", tags: ["PLM","AI","manufacturing"], ... } };
| Tool | What it does well | What it misses |
|---|---|---|
| Notion | Structured notes and databases | Too heavy — not designed for quick saves |
| Google Maps Saved | Places and locations | Only locations — no links, articles, or ideas |
| Browser Bookmarks | Fast saving | No organisation, no search, no AI |
| Pocket / Instapaper | Read-later articles | Articles only — not places, tools, or products |
| Raindrop.io | Good bookmark manager | No AI categorisation, no Maps integration |
| Zave.AI | Everything, AI-organised | Still building it 🚧 |