Home About Expertise Projects Blogs Contact
In DevelopmentAI ProductOriginal Project

Zave.AI
Save it. Find it. Use it.

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.

StatusIn Development
TypeAI Product · Web & Mobile
StackGemini AI · Google Maps API · React
DomainProductivity / Personal AI
CategoryOriginal Project
Currently in Development
Zave.AI is actively being built. This page documents the idea, the problem it solves, and the technical direction — updated as the project evolves.
Content Types Supported
AI
Auto-Categorisation
0
Browser Tabs You'll Lose
1
App to Rule Them All
01 — The Problem

Too many tabs. No system.

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.

💡
Why I built this
I had this problem myself. I had links scattered across Notion, Google Maps saved places, browser bookmarks, WhatsApp saved messages, and screenshot folders — none of them talking to each other. I wanted one app that works like a personal knowledge layer on top of the internet.
02 — What Zave.AI Does

Save anything. Find everything.

🔗
Universal Link Saving
Paste any URL — article, YouTube video, GitHub repo, product page, tweet — and Zave.AI extracts the title, description, and thumbnail automatically.
📍
Google Maps Integration
Save restaurant recommendations, travel destinations, and local places directly linked to their Maps location. Never lose a place recommendation again.
🤖
AI Auto-Categorisation
Gemini AI reads the content and automatically assigns categories and tags — no manual labelling required. It gets smarter the more you save.
🔍
Natural Language Search
Search your saved content the way you think: "that article about PLM and AI I saved last month" or "restaurants in Bengaluru I want to try".
📱
Web & Mobile
Save from a browser extension on desktop or the mobile app on the go. One tap to save, instantly searchable.
🧠
Context-Aware Surfacing
Zave surfaces relevant saved content based on what you're currently working on — not just keyword search, but contextual retrieval.
03 — Technical Architecture

How it's built

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.

LayerTechnologyPurpose
FrontendReact · LovableWeb interface — save, browse, search content
AI CategorisationGemini AI APIAutomatic tagging, category assignment, content summarisation
Places IntegrationGoogle Maps APIDetect and enrich location-based saves with map data
StorageCloud database (TBD)Persistent storage of saved content across devices
MobileReact Native (planned)Native share intent for saving directly from any app
JavaScript — ai_categorisation.js
// 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"], ... }
};
04 — Build Roadmap

What's been done. What's next.

Phase 1 — Done
Web App Foundation
Basic save and display functionality
Gemini AI integration for categorisation
Google Maps API for place detection
Link metadata extraction (title, thumbnail, description)
Phase 2 — In Progress
Core Experience
Natural language search across saved content
Collections and manual organisation
Browser extension for one-click saving
User authentication and sync
Phase 3 — Planned
Mobile App
React Native app with share intent
Save directly from any iOS/Android app
Offline access to saved content
Push notifications for surfaced content
Phase 4 — Planned
Intelligence Layer
Context-aware surfacing engine
Recommendation based on current tasks
Integration with calendar and productivity apps
Export to Notion, Obsidian, Google Drive
05 — Why This Is Different

What already exists. Why it's not enough.

ToolWhat it does wellWhat it misses
NotionStructured notes and databasesToo heavy — not designed for quick saves
Google Maps SavedPlaces and locationsOnly locations — no links, articles, or ideas
Browser BookmarksFast savingNo organisation, no search, no AI
Pocket / InstapaperRead-later articlesArticles only — not places, tools, or products
Raindrop.ioGood bookmark managerNo AI categorisation, no Maps integration
Zave.AIEverything, AI-organisedStill building it 🚧
06 — Tech Stack
ReactGemini AIGoogle Maps APIJavaScriptLovableReact Native (planned)
← Back to Projects View on GitHub ↗