v0.1.10

asheshgoplani/agent-deckv0.1.10Mar 23, 2026by chonknick

AI Summary

Introduced per-project merged search indexes to streamline querying and improve search performance.

Key Highlights

  • Single FTS5 query across all project packages
  • Smarter reranking limited to top-20 candidates
  • Automatic manifest and index updates via `mx pull` and `mx remove`
  • Performance improvement: Project search from 310ms to 70ms

New Features

  • Per-project merged search index
  • Automatic manifest management

Full Release Notes

## What's Changed

### Per-project merged search index

- **`.mandex/` project directory** — `mx sync` now creates a `manifest.json` + `index.db` in your project root
- **Single FTS5 query** — merged index across all project packages instead of N separate DB queries
- **Smarter reranking** — only top-20 BM25 candidates reranked (not N×20)
- **`mx pull` / `mx remove`** automatically update the project manifest and rebuild the index

### Performance

| Scenario | v0.1.9 | v0.1.10 |
|----------|--------|---------|
| Project search (reranked) | 310ms | **70ms** |
| Single package | 40ms | **40ms** |
| Global fallback (no project) | 310ms | 310ms |