v0.1.0
feyninc/mandexv0.1.0Mar 20, 2026by chonknick
AI Summary
Initial release of Mandex, a tool for documentation packages for AI agents.
Key Highlights
- Core commands: `mx pull`, `mx search`, `mx show`, `mx sync`, `mx build`, `mx serve`
- Package format: Zstd-compressed SQLite databases with FTS5 full-text search
- Local, versioned, offline usage without API keys
New Features
- Initial release
- Core CLI commands
- FTS5 package format
- Local/offline capability
Full Release Notes
## What's new Initial release of Mandex — documentation packages for AI agents. ## Highlights - **`mx pull`** — Download versioned documentation packages from the registry - **`mx search`** — Full-text search across installed docs with FTS5 + cross-encoder reranking - **`mx show`** — Read specific documentation entries - **`mx sync`** — Auto-detect project dependencies and install matching doc packages - **`mx build`** — Build documentation packages from markdown/MDX source directories - **`mx serve`** — Start a local MCP server for agent integrations ## Package format Zstd-compressed SQLite databases with FTS5 full-text search. Local, versioned, offline — no API keys, no rate limits, no network calls after download. ## Install ```bash curl -fsSL https://mandex.dev/install.sh | sh ``` Or via cargo: ```bash cargo install mandex ```