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 enrich Fetch page content, extract text, embed summaries, and improve search relevance with page context
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)

Human output is concise and TTY-aware: color is enabled in real terminals, disabled automatically for pipes/CI, and can always be turned off with --no-color.

๐Ÿ”Œ 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:

Supported browsers
  - Chrome
  - Edge
  - Brave
  - Firefox

Detected profiles
  - Chrome (Default) โ†’ ~/Library/Application Support/Google/Chrome/Default/Bookmarks
  - Edge (Default) โ†’ C:\Users\you\AppData\Local\Microsoft\Edge\User Data\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. find --json returns the same result object shape as the CLI uses internally:

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

# Windows (PowerShell)
mindmark find "istio service mesh" --json | ConvertFrom-Json | ForEach-Object { $_.url }
[
  {
    "score": 0.842,
    "title": "Istio / Service Mesh",
    "url": "https://istio.io/latest/docs/",
    "folder_path": "Work/Kubernetes",
    "domain": "istio.io"
  }
]

If you add --excerpt, results that have enriched page content also include relevant_excerpt.


๐Ÿ“– Usage

Output modes

By default, mindmark prints professional human-readable output with status symbols, hints, and color when stdout is an interactive terminal:

โ†’ Reading bookmarks from Chrome (Default), Firefox (default-release)
โœ“ Collected 812 bookmarks from 2 profile(s)
โ†’ Syncing index at ~/.mindmark/index.db
โœ“ Sync complete: added=12, updated=3, removed=0, unchanged=797
Hint: Run 'mindmark find "your query"' to search your bookmarks.

Use --no-color when you want plain text even in a TTY. NO_COLOR=1 and MINDMARK_NO_COLOR=1 are also respected.

mindmark --no-color stats

Use --json for stable machine-readable output from find, sync, stats, validate, and enrich.

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
mindmark sync --json                  # emit sync summary as JSON

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).

sync --json returns a top-level summary, synced profiles, any warnings, plus db_path and model.

Stats

mindmark stats
mindmark stats --json

Example human output:

Bookmarks: 812
Index:     ~/.mindmark/index.db
Model:     BAAI/bge-small-en-v1.5

Top domains
  github.com: 42
  docs.python.org: 18

Top folders
  Work/Kubernetes: 27
  Reading: 14

stats --json returns:

{
  "db_path": "/home/you/.mindmark/index.db",
  "model": "BAAI/bge-small-en-v1.5",
  "top_domains": [{"count": 42, "domain": "github.com"}],
  "top_folders": [{"count": 27, "folder": "Work/Kubernetes"}],
  "total": 812
}

Filters and options

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
mindmark find "useful tools" --excerpt               # include excerpts from enriched pages

๐Ÿ’ก Note: The --excerpt flag requires you to run mindmark enrich first to fetch and embed page content. See Augmented Index for details.

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 --db /path/to/index.db drop-index

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)
mindmark validate --json              # emit validation summary as JSON

Non-HTTP URLs (for example file: or browser-internal URLs) are skipped and not checked. validate --json returns total, checked, healthy, skipped, stale_count, and a stale array with title, url, folder_path, status_code, reason, and error.

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.

๐ŸŽฏ Augmented Index with Page Summaries

By default, mindmark indexes only bookmark metadata: titles, folders, domains, and URL slugs. If you want deeper page context in search results, use the enrichment pipeline to fetch page content and embed summaries.

๐Ÿ’ก Note: In order to be 100% local and lightweight enrichment uses extractive summarization (first 500 chars of page text) โ€” no LLM, no text generation. This means:

  • Only the opening content is embedded (relevant if key info is early; may miss content further down)
  • Page content must already be well-written for excerpts to be useful (relies on natural sentence structure)
  • Privacy and speed are preserved (no cloud calls, runs entirely locally)

Why enrich?

Without enrichment, searching for "authentication strategies" on a bookmark titled "AWS Services" may miss it, even though the page discusses authentication. With enrichment, the page content is fetched and summarized, improving relevance.

Quick start

  1. Enrich bookmarks (fetch page content and embed summaries):
mindmark enrich --limit 100 --workers 4
mindmark enrich --limit 100 --workers 4 --json

Options:

  • --limit N โ€” Process top N pending URLs (default: all)
  • --workers N โ€” Parallel fetch workers (default: 8)
  • --timeout S โ€” Per-request timeout in seconds (default: 10.0)
  • --refresh-failed โ€” Retry previously failed enrichments
  1. Search with page context:
mindmark find "authentication strategies" --excerpt

With --excerpt, results display the most relevant excerpt from the enriched page:

 1. AWS Services
    aws.amazon.com
    โคต To control user access to AWS resources, you must have an authentication strategy. AWS IAM provides fine-grained access control...

 2. Auth0 Documentation
    auth0.com
    โคต Authentication is the process of verifying the identity of a user or service. Authorization is the process of granting permissions...

The โคต symbol indicates content from the enriched page. Without enrichment, the symbol won't appear.

How it works

  1. Fetch โ€” GET each bookmark URL with a user-agent, respecting HTTP 4xx/5xx and content-type guards.
  2. Extract โ€” Strip boilerplate (nav, footer, scripts, styles) and extract plain text.
  3. Summarize โ€” Use the first 500 characters of extracted text as the summary (extractive, no LLM).
  4. Embed โ€” Embed the summary using the same ONNX model as bookmark metadata.
  5. Blend โ€” At search time, combine base (bookmark metadata) and summary similarity scores:
    • Blended score = 0.65 ร— base_score + 0.35 ร— summary_score
    • Falls back to base-only if no summary exists.
  6. Excerpt โ€” For readability, find and display the sentence from the summary most similar to the query.

Status and monitoring

Get a machine-readable enrichment run summary:

mindmark enrich --json

Example output:

{
  "before": {"pending": 1234, "complete": 450, "failed": 23},
  "after": {"pending": 1134, "complete": 550, "failed": 25},
  "complete": 100,
  "failed": 2,
  "reset_failed": 0,
  "skipped": 0,
  "status": "complete",
  "total": 102
}

mindmark enrich --json still performs enrichment when work is pending. To inspect counts without fetching pages, use the Python API (Index().enrichment_stats()).

Notes

  • 100% local โ€” Page fetching happens on your machine; no cloud service is used.
  • Smart caching โ€” Pages are re-fetched only if the page content changes (detected via content hash).
  • Failure resilience โ€” HTTP errors, timeouts, and JavaScript-only pages are logged as failed; sync and search continue without interruption.
  • Privacy โ€” No content leaves your machine; all processing is offline and local.

๐Ÿ’พ Storage Layout

What macOS / Linux Windows Override
Index database ~/.mindmark/index.db %LOCALAPPDATA%\mindmark\index.db global --db flag (before the command) 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.7.tar.gz (58.4 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.7-py3-none-any.whl (37.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: mindmark-0.1.7.tar.gz
  • Upload date:
  • Size: 58.4 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.7.tar.gz
Algorithm Hash digest
SHA256 5cedfd6a7eda485679e46704312fb0cbef60041290ccd10a799a790120e23143
MD5 67281cf866d310599476ae8b6a5fd530
BLAKE2b-256 7e7137cd3fcae0ab2a55df68a361fcf94254b64d1d0cac6c689856c2d9954516

See more details on using hashes here.

Provenance

The following attestation bundles were made for mindmark-0.1.7.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.7-py3-none-any.whl.

File metadata

  • Download URL: mindmark-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 37.6 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.7-py3-none-any.whl
Algorithm Hash digest
SHA256 ad7bb99a3d74ceec0ba8471c57b132cafd668240eb15152232105519c33c94e6
MD5 f8c22cf8c2e0b1597031afada61b4cb2
BLAKE2b-256 6bb4acc52bff76b7cf8419f4f2e5e58e16b888d14274b739d4695db50c2d4dda

See more details on using hashes here.

Provenance

The following attestation bundles were made for mindmark-0.1.7-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