v0.1.10

Netw0rkNoob/VulnClawv0.1.10Mar 23, 2026by chonknick

AI Summary

Implemented a per-project merged search index to significantly improve search performance and reduce redundant database queries.

Key Highlights

  • Creates a `manifest.json` and `index.db` in the project root via `mx sync`.
  • Uses a single FTS5 query across all packages instead of N separate queries.
  • Automatically updates the manifest and rebuilds the index on `mx pull` or `mx remove`.
  • Search performance improved from 310ms to 70ms for reranked results.

New Features

  • Per-project merged search index
  • Automatic project manifest generation
  • Smarter reranking (top-20 candidates only)
  • Auto-update on pull and remove commands

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 |