Skip to main content

Local semantic search over your browser bookmarks โ€” on-device embeddings, no cloud.

Project description

๐Ÿ”– mindmark

Your bookmarks, finally searchable.
Ask in natural language โ€” mindmark remembers what you saved.

PyPI Python License: MIT CI Platform

100% local ยท No cloud ยท No API keys ยท Nothing leaves your machine

mindmark demo

Table of Contents


โœจ Features

Command What it does
mindmark sync Auto-detect installed browsers and sync bookmarks directly โ€” no export needed
mindmark find "query" Semantic search over titles, folders, domains, and URL slugs โ€” returns top-K with similarity scores
mindmark open "query" Search and open the best match in your default browser
mindmark stats Show index size, model info, top domains, and top folders
mindmark index <file> Import bookmarks from an exported HTML file (legacy workflow)
mindmark validate Check indexed bookmark URLs for stale links (HTTP 4xx/5xx or unreachable) and report them
mindmark drop-index Delete the local SQLite index database (with confirmation unless --yes)

๐Ÿ”Œ Works offline after the first run. Embeddings run on-device via fastembed (ONNX Runtime, ~130 MB one-time model download).

Supported Browsers

Browser macOS Linux Windows
Chrome โœ… โœ… โœ…
Edge โœ… โœ… โœ…
Brave โœ… โœ… โœ…
Firefox โœ… โœ… โœ…

mindmark reads bookmark files directly from browser data directories โ€” no export step, no browser extension.


๐Ÿ“‹ Prerequisites

Requirement Details
Python 3.9+ python.org/downloads โ€” on Windows, check "Add Python to PATH" during setup
pip Bundled with Python โ€” verify with pip --version or pip3 --version
Internet Needed only once to download the embedding model (~130 MB). Everything after that is offline
๐Ÿ’ก Windows tip โ€” Python PATH

If you installed Python from the Microsoft Store, python and pip are already on your PATH.
If you installed from python.org, make sure you checked "Add Python to PATH" during setup.


๐Ÿ“ฆ Install

Recommended โ€” pipx (isolated + globally on PATH)

pipx install mindmark
Don't have pipx?
pip install --user pipx && pipx ensurepath    # then restart your terminal

Or on macOS with Homebrew: brew install pipx

Alternative โ€” pip with a virtual environment

macOS / Linux:

python3 -m venv .venv && source .venv/bin/activate
pip install mindmark

Windows (PowerShell):

python -m venv .venv; .venv\Scripts\Activate.ps1
pip install mindmark

Windows (Command Prompt):

python -m venv .venv && .venv\Scripts\activate.bat
pip install mindmark
Editable install for development
git clone https://github.com/sukanth/mindmark.git
cd mindmark
pip install -e .[dev]

โšก Quick Start

1๏ธโƒฃ Sync your bookmarks (no export needed!)

mindmark sync

That's it โ€” mindmark auto-detects your installed browsers, reads their bookmark files directly, and builds a searchable index. No manual export required.

First run downloads the embedding model (~130 MB) and caches it locally. Every run after that is instant and fully offline.

๐Ÿ’ก See which browsers were detected
mindmark sync --list-browsers

Example output:

Browser      Profile                  Path
-------      -------                  ----
Chrome       Default                  ~/Library/.../Google/Chrome/Default/Bookmarks
Chrome       Profile 3                ~/Library/.../Google/Chrome/Profile 3/Bookmarks
Edge         Default                  ~/Library/.../Microsoft Edge/Default/Bookmarks
๐Ÿ’ก Sync a specific browser only
mindmark sync --browser chrome
mindmark sync --browser firefox
mindmark sync --browser edge
mindmark sync --browser brave
๐Ÿ’ก Alternative โ€” import from an exported HTML file

If you prefer the manual export workflow, or need to import bookmarks from an unsupported browser:

Browser How to export
Edge edge://favorites โ†’ โ‹ฏ โ†’ Export favorites โ†’ save as HTML
Chrome chrome://bookmarks โ†’ โ‹ฎ โ†’ Export bookmarks โ†’ save as HTML
Firefox Ctrl+Shift+O (Cmd+Shift+O on macOS) โ†’ Import and Backup โ†’ Export Bookmarks to HTML
# macOS / Linux
mindmark index ~/Downloads/bookmarks.html

# Windows (PowerShell)
mindmark index "$env:USERPROFILE\Downloads\bookmarks.html"

2๏ธโƒฃ Search in natural language

mindmark find demo

mindmark find "python async tutorial"
mindmark find "react hooks best practices" -k 5
mindmark find "helm chart examples" --domain github.com
mindmark find "docker compose setup" --folder devops

3๏ธโƒฃ Open a result directly

mindmark open "k8s cheat sheet"           # opens the best match
mindmark find "docker setup" --open 2     # opens result #2 from the list
๐Ÿ’ก Tip โ€” create a short alias

macOS / Linux โ€” add to ~/.bashrc or ~/.zshrc:

alias mm='mindmark open'
mm "docker setup"

Windows โ€” add to your PowerShell $PROFILE:

Set-Alias mm mindmark
mm open "docker setup"

4๏ธโƒฃ JSON output for scripting

Pipe results into fzf, jq, Alfred, Raycast, PowerToys Run, or any tool that accepts JSON:

# macOS / Linux
mindmark find "istio service mesh" --json | jq '.[].url'

# Windows (PowerShell)
mindmark find "istio service mesh" --json | ConvertFrom-Json | ForEach-Object { $_.url }

๐Ÿ“– Usage

Syncing

mindmark sync reads bookmarks directly from your browser data directories. It's incremental โ€” only new or changed bookmarks are re-embedded, making re-syncs near-instant.

mindmark sync                         # sync all detected browsers
mindmark sync --browser chrome        # sync only Chrome
mindmark sync --browser firefox       # sync only Firefox
mindmark sync --list-browsers         # list detected browsers and profiles

When you add new bookmarks in your browser, just run mindmark sync again โ€” it will pick up only the changes.

๐Ÿ’ก Note: If you change the embedding model with --model, all bookmarks will be re-embedded on the next sync. Browser names are case-insensitive (e.g., --browser Chrome and --browser chrome both work).

Filters

Narrow down results without changing your query:

mindmark find "useful tools" --domain github.com     # only github.com results
mindmark find "useful tools" --folder work/kusto      # only bookmarks in matching folders
mindmark find "useful tools" -k 20                    # return top 20 instead of 10

Re-indexing

For the sync workflow, just rerun mindmark sync. It's incremental โ€” only changed bookmarks are re-embedded.

For the index workflow, rerun mindmark index <file>. It clears and rebuilds the index. The model is cached, so re-indexing 800+ bookmarks takes only seconds.

Drop the local index

Use drop-index to remove the local SQLite index database when you want a clean slate.

mindmark drop-index               # asks for confirmation
mindmark drop-index --yes         # skip confirmation
mindmark drop-index --db /path/to/index.db

Validate stale links

Use validate to probe all indexed HTTP(S) bookmark URLs and identify stale ones (HTTP 4xx/5xx or unreachable hosts). Mindmark will report which bookmarks may be stale and where they are located, but does not modify them. You can then manually remove stale bookmarks from your browser or re-index after cleaning them up.

mindmark validate                     # identify all stale bookmarks
mindmark validate --timeout 5         # per-request timeout in seconds (default 8)
mindmark validate --workers 32        # parallel URL checks (default 16)

Non-HTTP URLs (for example file: or browser-internal URLs) are skipped and not checked.

Swap the embedding model

mindmark sync --model BAAI/bge-small-en-v1.5                # default, 384-dim
mindmark sync --model sentence-transformers/all-MiniLM-L6-v2
mindmark sync --model BAAI/bge-base-en-v1.5                 # 768-dim, higher quality

The --model flag also works with mindmark index. Switching models triggers a full re-embed automatically. See the fastembed supported models list.


๐Ÿง  How It Works

Browser data files                              "python async tutorial"
(Chrome JSON / Firefox SQLite)                            โ”‚
       โ”‚                                                  โ”‚
       โ–ผ                                                  โ–ผ
  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”     โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
  โ”‚  Detect &  โ”‚โ”€โ–ถโ”‚  Embed   โ”‚โ”€โ–ถโ”‚  Store   โ”‚     โ”‚  Embed   โ”‚
  โ”‚   Parse    โ”‚  โ”‚ (ONNX)   โ”‚  โ”‚ (SQLite) โ”‚โ—€โ”€โ”€โ”€โ”€โ”‚  query   โ”‚
  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜     โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                      โ–ฒ               โ”‚                โ”‚
                      โ”‚               โ–ผ                โ–ผ
                 only new/      โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
                 changed        โ”‚  Dot-product similarity  โ”‚
                 bookmarks      โ”‚   โ†’ top-K results        โ”‚
                                โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
  1. Detect โ€” Auto-discover installed browsers (Chrome, Edge, Brave, Firefox) and their profiles across macOS, Linux, and Windows.
  2. Parse โ€” Read bookmark files natively: Chromium JSON format or Firefox places.sqlite. No export step needed.
  3. Diff โ€” Hash each bookmark's content and compare against the existing index. Only new or changed bookmarks proceed to embedding.
  4. Embed โ€” Each bookmark becomes a rich text string (title | folder | domain | path) and is passed through a BGE/MiniLM ONNX model. Vectors are L2-normalized.
  5. Store โ€” Vectors live as float32 blobs in a single SQLite file. A bookmark_sources table tracks which browser contributed each bookmark, so multi-browser syncs don't conflict.
  6. Search โ€” Encode the query, compute dot products against all vectors, return the top-K.

๐Ÿ—‚๏ธ Storage Layout

What macOS / Linux Windows Override
Index database ~/.mindmark/index.db %LOCALAPPDATA%\mindmark\index.db --db flag or MINDMARK_DB env var
Home directory ~/.mindmark/ %LOCALAPPDATA%\mindmark\ MINDMARK_HOME env var
Embedding model ~/.cache/fastembed/ %LOCALAPPDATA%\fastembed\ Managed by fastembed

๐Ÿ—‘๏ธ Uninstall

pipx uninstall mindmark    # if installed with pipx
pip uninstall mindmark      # if installed with pip
Remove stored data (optional)

The index and cached model are stored outside the package:

macOS / Linux:

rm -rf ~/.mindmark              # index database
rm -rf ~/.cache/fastembed        # cached embedding model (~130 MB)

Windows (PowerShell):

Remove-Item -Recurse "$env:LOCALAPPDATA\mindmark"     # index database
Remove-Item -Recurse "$env:LOCALAPPDATA\fastembed"     # cached embedding model

If you set a custom MINDMARK_HOME, remove that directory instead.


๐Ÿ› ๏ธ Development

Contributions are welcome! See CONTRIBUTING.md for full details.

git clone https://github.com/sukanth/mindmark.git
cd mindmark
pip install -e .[dev]
pytest -q
Publishing to PyPI

First-time setup

  1. Create an account at pypi.org
  2. Generate an API token at pypi.org/manage/account/token/
  3. Install build tools: pip install build twine

Test on TestPyPI first (recommended)

python -m build
python -m twine upload --repository testpypi dist/*
pipx install --index-url https://test.pypi.org/simple/ mindmark

Publish to PyPI

python -m build
python -m twine upload dist/*

Use __token__ as the username when prompted.

Alternative distribution methods

GitHub release

python -m build
gh release create v0.1.0 dist/*
# Users install:
pipx install https://github.com/sukanth/mindmark/releases/download/v0.1.0/mindmark-0.1.0-py3-none-any.whl

Standalone executable (no Python required)

pip install pyinstaller
pyinstaller --onefile -n mindmark -p src src/mindmark/__main__.py
# Creates: dist/mindmark (macOS/Linux) or dist/mindmark.exe (Windows)

Docker

FROM python:3.11-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir .
ENTRYPOINT ["mindmark"]
docker build -t mindmark .

# Sync from browser bookmarks (mount browser data directories)
# Note: browser data paths vary โ€” this example is for macOS Chrome
docker run --rm \
    -v $HOME/.mindmark:/root/.mindmark \
    -v "$HOME/Library/Application Support/Google/Chrome":/chrome:ro \
    mindmark sync

# Or import from an exported HTML file
docker run --rm -v $HOME/.mindmark:/root/.mindmark \
    -v $HOME/Downloads:/downloads mindmark \
    index /downloads/bookmarks.html

๐Ÿ“„ License

MIT โ€” see LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mindmark-0.1.5.tar.gz (33.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mindmark-0.1.5-py3-none-any.whl (23.8 kB view details)

Uploaded Python 3

File details

Details for the file mindmark-0.1.5.tar.gz.

File metadata

  • Download URL: mindmark-0.1.5.tar.gz
  • Upload date:
  • Size: 33.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mindmark-0.1.5.tar.gz
Algorithm Hash digest
SHA256 9efb340cf97a5e66259271dc92d49abac61ef8945924cdeac536edb382ec6a73
MD5 00700946f3c3ed156e86c3d927362b3d
BLAKE2b-256 fd411778b44d4399474fc33e0a088699976078f8c81bda04623a44d7ae606472

See more details on using hashes here.

Provenance

The following attestation bundles were made for mindmark-0.1.5.tar.gz:

Publisher: publish.yml on sukanth/mindmark

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mindmark-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: mindmark-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 23.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mindmark-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 0516b892e0f6f64d403f573ef1e5a066c0c1ac567a78ea6cfa74a2cd2f378f3c
MD5 1c9bfc8c6692affddc449fa4d5f78b7c
BLAKE2b-256 32972525574b3cff346508f36225f717ae28233e1dc26b51fd32cb75b9daeda8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mindmark-0.1.5-py3-none-any.whl:

Publisher: publish.yml on sukanth/mindmark

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page