Skip to content

Releases: vimo-ai/memex

v0.0.5

Choose a tag to compare

@github-actions github-actions released this 08 Mar 09:00

memex v0.0.5 — Fix LanceDB disk leak & MCP enhancements

Fix critical compact_vectors bug that caused ~234G disk waste from LanceDB version leak.

🐛 Bug Fixes

  • Critical: Fix compact_vectors LanceDB version leak (~234G disk waste)
  • Fix time filter being ignored at sessions/talks level
  • Fix Windows build: platform-specific parent process check

✨ Features

  • Auto-trigger vector indexing after compact
  • Session-based archive with atomic main+subagent archiving
  • Expose session relations and metadata in MCP responses
  • Add session ID filtering and single-message retrieval to MCP
  • Add include_summary option to get_recent_sessions MCP tool
  • Add hour-level time shortcut support for search_history
  • Add parent process monitoring for graceful shutdown

🔧 Maintenance

  • Filter system noise messages from MCP search and session results
  • Remove agent_client module and event subscription

Full Changelog: v0.0.4...v0.0.5

v0.0.4-platform.3

Choose a tag to compare

@github-actions github-actions released this 27 Jan 12:38

Memex v0.0.4-platform.3

Claude Code session history manager - Multi-platform release

Downloads

Platform Binary Checksum
macOS Apple Silicon memex-darwin-arm64 SHA256
macOS Intel memex-darwin-x64 SHA256
Linux x64 memex-linux-x64 SHA256
Linux arm64 memex-linux-arm64 SHA256
Windows x64 memex-windows-x64.exe SHA256

Quick Install

macOS / Linux:

# Detect platform and download
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
ARCH=$(uname -m)
case "$OS-$ARCH" in
  darwin-arm64) FILE="memex-darwin-arm64" ;;
  darwin-x86_64) FILE="memex-darwin-x64" ;;
  linux-x86_64) FILE="memex-linux-x64" ;;
  linux-aarch64) FILE="memex-linux-arm64" ;;
  *) echo "Unsupported: $OS-$ARCH"; exit 1 ;;
esac

mkdir -p ~/.vimo/bin
curl -L -o ~/.vimo/bin/memex \
  https://github.com/vimo-ai/memex/releases/download/v0.0.4-platform.3/$FILE
chmod +x ~/.vimo/bin/memex
~/.vimo/bin/memex

Windows (PowerShell):

New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.vimo\bin"
Invoke-WebRequest -Uri "https://github.com/vimo-ai/memex/releases/download/v0.0.4-platform.3/memex-windows-x64.exe" -OutFile "$env:USERPROFILE\.vimo\bin\memex.exe"
& "$env:USERPROFILE\.vimo\bin\memex.exe"

Web UI is embedded in the binary. vimo-agent will be auto-downloaded on first run.

v0.0.4-platform.2

Choose a tag to compare

@github-actions github-actions released this 27 Jan 05:49

Memex v0.0.4-platform.2

Claude Code session history manager - Multi-platform release

Downloads

Platform Binary Checksum
macOS Apple Silicon memex-darwin-arm64 SHA256
macOS Intel memex-darwin-x64 SHA256
Linux x64 memex-linux-x64 SHA256
Linux arm64 memex-linux-arm64 SHA256
Windows x64 memex-windows-x64.exe SHA256

Quick Install

macOS / Linux:

# Detect platform and download
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
ARCH=$(uname -m)
case "$OS-$ARCH" in
  darwin-arm64) FILE="memex-darwin-arm64" ;;
  darwin-x86_64) FILE="memex-darwin-x64" ;;
  linux-x86_64) FILE="memex-linux-x64" ;;
  linux-aarch64) FILE="memex-linux-arm64" ;;
  *) echo "Unsupported: $OS-$ARCH"; exit 1 ;;
esac

mkdir -p ~/.vimo/bin
curl -L -o ~/.vimo/bin/memex \
  https://github.com/vimo-ai/memex/releases/download/v0.0.4-platform.2/$FILE
chmod +x ~/.vimo/bin/memex
~/.vimo/bin/memex

Windows (PowerShell):

New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.vimo\bin"
Invoke-WebRequest -Uri "https://github.com/vimo-ai/memex/releases/download/v0.0.4-platform.2/memex-windows-x64.exe" -OutFile "$env:USERPROFILE\.vimo\bin\memex.exe"
& "$env:USERPROFILE\.vimo\bin\memex.exe"

Web UI is embedded in the binary. vimo-agent will be auto-downloaded on first run.

v0.0.4-platform.1

Choose a tag to compare

@github-actions github-actions released this 27 Jan 04:13

Memex v0.0.4-platform.1

Claude Code session history manager - Multi-platform release

Downloads

Platform Binary Checksum
macOS Apple Silicon memex-darwin-arm64 SHA256
macOS Intel memex-darwin-x64 SHA256
Linux x64 memex-linux-x64 SHA256
Linux arm64 memex-linux-arm64 SHA256

Quick Install

macOS / Linux:

# Detect platform and download
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
ARCH=$(uname -m)
case "$OS-$ARCH" in
  darwin-arm64) FILE="memex-darwin-arm64" ;;
  darwin-x86_64) FILE="memex-darwin-x64" ;;
  linux-x86_64) FILE="memex-linux-x64" ;;
  linux-aarch64) FILE="memex-linux-arm64" ;;
  *) echo "Unsupported: $OS-$ARCH"; exit 1 ;;
esac

mkdir -p ~/.vimo/bin
curl -L -o ~/.vimo/bin/memex \
  https://github.com/vimo-ai/memex/releases/download/v0.0.4-platform.1/$FILE
chmod +x ~/.vimo/bin/memex
~/.vimo/bin/memex

Web UI is embedded in the binary. vimo-agent will be auto-downloaded on first run.

v0.0.4

Choose a tag to compare

@github-actions github-actions released this 27 Jan 21:42

memex v0.0.4

Stable release with critical bug fixes and System message type support.

🐛 Bug Fixes

  • Critical: Fix sequence increment for incremental writes - messages now correctly ordered
  • Fix idle timeout auto-exit in vimo-agent

✨ Features

  • Support MessageType::System in compact/output
  • HookEvent architecture with context field

Full Changelog: v0.0.4-platform.3...v0.0.4

v0.0.3

Choose a tag to compare

@github-actions github-actions released this 26 Jan 15:34

Memex v0.0.3

macOS arm64 - Claude Code session history manager

Installation

mkdir -p ~/.vimo/bin && curl -L -o ~/.vimo/bin/memex \
  https://github.com/vimo-ai/memex/releases/download/v0.0.3/memex-darwin-arm64 && \
  chmod +x ~/.vimo/bin/memex && ~/.vimo/bin/memex

Web UI is now embedded in the binary - download and run, that's it!

vimo-agent will be auto-downloaded on first run.

Manual vimo-agent download (if auto-download fails)

curl -L -o ~/.vimo/bin/vimo-agent \
  https://github.com/vimo-ai/ai-cli-session-db/releases/latest/download/vimo-agent
chmod +x ~/.vimo/bin/vimo-agent

SHA256

File SHA256
memex-darwin-arm64 757d75c1291ce32c2cc28588136e1c263ffe1e4d2558da40fa0ad0b2579852fa

v0.0.2

Choose a tag to compare

@github-actions github-actions released this 26 Jan 10:50

Memex v0.0.2

macOS arm64 - Claude Code session history manager

Installation

mkdir -p ~/.vimo/bin && curl -L -o ~/.vimo/bin/memex \
  https://github.com/vimo-ai/memex/releases/download/v0.0.2/memex-darwin-arm64 && \
  chmod +x ~/.vimo/bin/memex && ~/.vimo/bin/memex

vimo-agent will be auto-downloaded on first run.

Manual vimo-agent download (if auto-download fails)

curl -L -o ~/.vimo/bin/vimo-agent \
  https://github.com/vimo-ai/ai-cli-session-db/releases/latest/download/vimo-agent
chmod +x ~/.vimo/bin/vimo-agent

SHA256

File SHA256
memex-darwin-arm64 bfc7a9064812d8fd76dbfef4031f9757358391846479a24998a2415afebc9920

v0.0.1-beta.3-rc.1

v0.0.1-beta.3-rc.1 Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 26 Jan 03:11

Memex v0.0.1-beta.3-rc.1

macOS arm64 - Claude Code 会话历史管理

产物

文件 说明 SHA256
memex-darwin-arm64 Memex 主程序 e778ebd2a00333326d169951459c372d61a44ba6cc9627c57547328cd157446f
vimo-agent Agent 守护进程 a027b82991a79a1bbaaaca736110e3bf67cedaa83ea7f845d18a9bbea708cac4

安装

mkdir -p ~/.vimo/bin

# 下载 memex
curl -L -o ~/.vimo/bin/memex \
  https://github.com/vimo-ai/memex/releases/download/v0.0.1-beta.3-rc.1/memex-darwin-arm64
chmod +x ~/.vimo/bin/memex

# 下载 vimo-agent
curl -L -o ~/.vimo/bin/vimo-agent \
  https://github.com/vimo-ai/memex/releases/download/v0.0.1-beta.3-rc.1/vimo-agent
chmod +x ~/.vimo/bin/vimo-agent

依赖

  • vimo-agent: v0.0.1-beta.5 (from ai-cli-session-db)

v0.0.1-beta.3

v0.0.1-beta.3 Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 26 Jan 05:52

Memex v0.0.1-beta.3

macOS arm64 - Claude Code 会话历史管理

产物

文件 说明 SHA256
memex-darwin-arm64 Memex 主程序 d5b3e1f24ef0129bd9d8fe87ab32b8cd772ccc95f9cff0436d6d1c57dea5b82f
vimo-agent Agent 守护进程 a027b82991a79a1bbaaaca736110e3bf67cedaa83ea7f845d18a9bbea708cac4

安装

mkdir -p ~/.vimo/bin

# 下载 memex
curl -L -o ~/.vimo/bin/memex \
  https://github.com/vimo-ai/memex/releases/download/v0.0.1-beta.3/memex-darwin-arm64
chmod +x ~/.vimo/bin/memex

# 下载 vimo-agent
curl -L -o ~/.vimo/bin/vimo-agent \
  https://github.com/vimo-ai/memex/releases/download/v0.0.1-beta.3/vimo-agent
chmod +x ~/.vimo/bin/vimo-agent

依赖

  • vimo-agent: v0.0.1-beta.5 (from ai-cli-session-db)

v0.0.1

Choose a tag to compare

@github-actions github-actions released this 17 Jan 19:23

Memex v0.0.1

macOS arm64 二进制 - Claude Code 会话历史管理

安装

mkdir -p ~/.vimo/bin
curl -L -o ~/.vimo/bin/memex \
  https://github.com/vimo-ai/memex/releases/download/v0.0.1/memex-darwin-arm64
chmod +x ~/.vimo/bin/memex

校验

SHA256: f0761138bc88cf0dde9ee65ef3d7db038046d115c66a04e37baca180268a22a0
Size: 59.50MB