Skip to content

Releases: epicsagas/alcove

0.12.6 — 2026-07-06

Choose a tag to compare

@github-actions github-actions released this 05 Jul 16:46
1c986fe

Release Notes

Changed

  • Trimmed dist release targets to aarch64-apple-darwin (macOS) and x86_64-unknown-linux-gnu (Linux). The llm-kernel 0.15 static-ort link fails the dist build (LTO dist profile) on Windows (unresolved MSVC CRT externals in libort_sys) and the aarch64-linux cross-build (ARM libopenblas.so). Both are tracked separately; macOS and x86_64-linux artifacts build and publish cleanly. powershell installer dropped (no Windows target).

Install alcove 0.12.6

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/epicsagas/alcove/releases/download/v0.12.6/alcove-installer.sh | sh

Install prebuilt binaries via Homebrew

brew install epicsagas/tap/alcove

Download alcove 0.12.6

File Platform Checksum
alcove-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
alcove-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

0.12.4 — 2026-07-04

Choose a tag to compare

@github-actions github-actions released this 04 Jul 13:02
0224c3b

Release Notes

Changed

  • Rolled back llm-kernel 0.14 → 0.9.2: llm-kernel 0.12.0 removed ort-load-dynamic in favor of a statically-linked ONNX Runtime, which broke the Linux and Windows dist release builds (the static archive references glibc 2.38+ symbols like __isoc23_strtoll and 50 unresolved MSVC CRT externals). 0.9.2 uses dynamic ort linking, restoring release compatibility. The RUSTSEC advisory cleanup, the macOS clang_rt link fix, and the cargo audit green state are all retained (independent of llm-kernel).

Install alcove 0.12.4

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/epicsagas/alcove/releases/download/v0.12.4/alcove-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/epicsagas/alcove/releases/download/v0.12.4/alcove-installer.ps1 | iex"

Install prebuilt binaries via Homebrew

brew install epicsagas/tap/alcove

Download alcove 0.12.4

File Platform Checksum
alcove-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
alcove-x86_64-pc-windows-msvc.zip x64 Windows checksum
alcove-aarch64-unknown-linux-gnu.tar.xz ARM64 Linux checksum
alcove-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

v0.12.2

Choose a tag to compare

@github-actions github-actions released this 22 Jun 09:51

Install alcove 0.12.2

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/epicsagas/alcove/releases/download/v0.12.2/alcove-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/epicsagas/alcove/releases/download/v0.12.2/alcove-installer.ps1 | iex"

Install prebuilt binaries via Homebrew

brew install epicsagas/tap/alcove

Download alcove 0.12.2

File Platform Checksum
alcove-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
alcove-x86_64-pc-windows-msvc.zip x64 Windows checksum
alcove-aarch64-unknown-linux-gnu.tar.xz ARM64 Linux checksum
alcove-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

0.12.1 — 2026-06-11

Choose a tag to compare

@github-actions github-actions released this 11 Jun 10:09

Release Notes

Fixed

  • Auto-build BM25 index on HTTP server startup when no index exists, preventing /search from returning 503 on fresh or post-restart servers

Install alcove 0.12.1

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/epicsagas/alcove/releases/download/v0.12.1/alcove-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/epicsagas/alcove/releases/download/v0.12.1/alcove-installer.ps1 | iex"

Install prebuilt binaries via Homebrew

brew install epicsagas/tap/alcove

Download alcove 0.12.1

File Platform Checksum
alcove-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
alcove-x86_64-pc-windows-msvc.zip x64 Windows checksum
alcove-aarch64-unknown-linux-gnu.tar.xz ARM64 Linux checksum
alcove-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

0.12.0 — 2026-06-11

Choose a tag to compare

@github-actions github-actions released this 11 Jun 08:13

Release Notes

Added

  • TurboQuant 4-bit vector index backend (replaces hnsw_rs) (#30)
  • Multi document-root support (#27)
  • Heading-level markdown chunking (#28)
  • PDF form-feed → --- Page N --- marker conversion (#31)
  • Persistent embedding cache for full rebuilds
  • alcove path command and doctor path summary (#26)
  • Isolated eval corpus with --corpus flag for CI/regression testing
  • IR metrics: NDCG@K, MAP@K, MRR alongside existing Precision@K and Recall@K
  • Chunk-level precision evaluation for heading-based section accuracy
  • Regression detection with configurable thresholds (--baseline, --save-baseline)
  • Baseline reference benchmark (benches/baseline.json)

Changed

  • Migrated to llm-kernel 0.3.5 vector-index feature
  • Upgraded llm-kernel from 0.3 to 0.3.5
  • Replaced openssl-sys with rustls for all remaining dependencies

Fixed

  • File-level grep matching and deferred ONNX loading
  • Ambiguous env detection and tilde expansion in config paths
  • Duplicate project-resolution block in MCP handler

Install alcove 0.12.0

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/epicsagas/alcove/releases/download/v0.12.0/alcove-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/epicsagas/alcove/releases/download/v0.12.0/alcove-installer.ps1 | iex"

Install prebuilt binaries via Homebrew

brew install epicsagas/tap/alcove

Download alcove 0.12.0

File Platform Checksum
alcove-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
alcove-x86_64-pc-windows-msvc.zip x64 Windows checksum
alcove-aarch64-unknown-linux-gnu.tar.xz ARM64 Linux checksum
alcove-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

v0.11.7

Choose a tag to compare

@github-actions github-actions released this 07 Jun 15:37

Install alcove 0.11.7

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/epicsagas/alcove/releases/download/v0.11.7/alcove-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/epicsagas/alcove/releases/download/v0.11.7/alcove-installer.ps1 | iex"

Install prebuilt binaries via Homebrew

brew install epicsagas/tap/alcove

Download alcove 0.11.7

File Platform Checksum
alcove-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
alcove-x86_64-pc-windows-msvc.zip x64 Windows checksum
alcove-aarch64-unknown-linux-gnu.tar.xz ARM64 Linux checksum
alcove-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

v0.11.6

Choose a tag to compare

@github-actions github-actions released this 03 Jun 16:48

Install alcove 0.11.6

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/epicsagas/alcove/releases/download/v0.11.6/alcove-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/epicsagas/alcove/releases/download/v0.11.6/alcove-installer.ps1 | iex"

Install prebuilt binaries via Homebrew

brew install epicsagas/tap/alcove

Download alcove 0.11.6

File Platform Checksum
alcove-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
alcove-x86_64-apple-darwin.tar.xz Intel macOS checksum
alcove-x86_64-pc-windows-msvc.zip x64 Windows checksum
alcove-aarch64-unknown-linux-gnu.tar.xz ARM64 Linux checksum
alcove-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

v0.11.5

Choose a tag to compare

@github-actions github-actions released this 03 Jun 15:15

Install alcove 0.11.5

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/epicsagas/alcove/releases/download/v0.11.5/alcove-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/epicsagas/alcove/releases/download/v0.11.5/alcove-installer.ps1 | iex"

Install prebuilt binaries via Homebrew

brew install epicsagas/tap/alcove

Download alcove 0.11.5

File Platform Checksum
alcove-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
alcove-x86_64-apple-darwin.tar.xz Intel macOS checksum
alcove-x86_64-pc-windows-msvc.zip x64 Windows checksum
alcove-aarch64-unknown-linux-gnu.tar.xz ARM64 Linux checksum
alcove-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

v0.11.4

Choose a tag to compare

@github-actions github-actions released this 03 Jun 14:22

Install alcove 0.11.4

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/epicsagas/alcove/releases/download/v0.11.4/alcove-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/epicsagas/alcove/releases/download/v0.11.4/alcove-installer.ps1 | iex"

Install prebuilt binaries via Homebrew

brew install epicsagas/tap/alcove

Download alcove 0.11.4

File Platform Checksum
alcove-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
alcove-x86_64-apple-darwin.tar.xz Intel macOS checksum
alcove-x86_64-pc-windows-msvc.zip x64 Windows checksum
alcove-aarch64-unknown-linux-gnu.tar.xz ARM64 Linux checksum
alcove-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

v0.11.3

Choose a tag to compare

@github-actions github-actions released this 26 May 18:53

Install alcove 0.11.3

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/epicsagas/alcove/releases/download/v0.11.3/alcove-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/epicsagas/alcove/releases/download/v0.11.3/alcove-installer.ps1 | iex"

Install prebuilt binaries via Homebrew

brew install epicsagas/tap/alcove

Download alcove 0.11.3

File Platform Checksum
alcove-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
alcove-x86_64-apple-darwin.tar.xz Intel macOS checksum
alcove-x86_64-pc-windows-msvc.zip x64 Windows checksum
alcove-aarch64-unknown-linux-gnu.tar.xz ARM64 Linux checksum
alcove-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum