A minimal, offline-first knowledge space — built for clarity, calm, and focus.
No noise. No gimmicks. Just your thoughts.
Void Space isn't another productivity tool. It's a quiet digital room for your links, notes, and references — designed to stay out of your way.
- Minimal & calm — A distraction-free interface that reduces cognitive load.
- No productivity theater — Let ideas exist without forcing artificial structure.
- Privacy-first — Your data lives on your device. No accounts, no cloud, no tracking.
Find your thoughts naturally. Void Space runs a local all-MiniLM-L6-v2 ONNX model on-device to generate 384-dimensional embeddings, powering cosine-similarity search with automatic keyword fallback.
Save links, text, and images instantly from any app using Android's native Share Intent. A dedicated share entry point (shareMain) launches a lightweight floating orb UI — so saving content feels instantaneous.
Content is automatically analyzed using Cloudflare Workers AI (Llama 3.2) to extract:
- Smart, contextual tags
- A concise TL;DR (single sentence)
- A longer summary (3–5 sentences)
- Cleaned-up titles
Falls back to keyword-based heuristics when AI is unavailable.
When you save a URL, Void Space scrapes Open Graph metadata (title, description, image) and auto-classifies the link type — video, social, or generic link — based on the domain.
Optional biometric/PIN authentication via the local_auth package. The lock screen prompt reads "Handshake required to enter the void."
- Staggered grid layout with shimmer loading states
- Inline editing for titles, tags, and notes
- Custom animations and pull-to-refresh
- Dark/Light mode with system detection
- Onboarding flow with profile setup
- Custom painters and glass-morphism effects
Import and export your entire vault as JSON — keep full ownership of your data.
| Layer | Technology |
|---|---|
| Framework | Flutter 3.10+ / Dart 3.10+ |
| Local Storage | Hive — fast, encrypted NoSQL |
| State Management | Provider |
| On-Device AI | ONNX Runtime — all-MiniLM-L6-v2 |
| Cloud AI | Cloudflare Workers AI — Llama 3.2 |
| Metadata | Open Graph scraping via http + html |
| Auth | local_auth — biometric/PIN |
| UI | Google Fonts, Staggered Grid, Shimmer, Custom Painters |
- Flutter SDK
^3.10.7or later - Dart SDK (bundled with Flutter)
- Android Studio for Android builds (primary platform)
# Clone the repository
git clone https://github.com/naveenxd/VoidSpace.git
cd VoidSpace
# Install dependencies
flutter pub get
# Run on a connected device or emulator
flutter runThe semantic search model (assets/models/model.onnx) and tokenizer (assets/models/tokenizer.json) are bundled in the repo. No additional downloads are required.
TBD