Skip to content

Release v0.10.1

Choose a tag to compare

@github-actions github-actions released this 26 Jul 05:53
fb4f99c

What's New in v0.10.1

Changed

  • Default data directory migrated from ~/.uteke to ~/.codecora/uteke (#773, #778) β€” First launch auto-migrates existing data via atomic rename (cross-device fallback: recursive copy). Set UTEKE_HOME to override. All docs, CLI help, and config defaults updated.

Fixed

  • uteke upgrade command not found (#777) β€” commands::upgrade module was private, now pub(crate).
  • DELETE /doc/delete ignored query string on CI runners (#777) β€” req.url().query() returned None on some environments; replaced with req.uri().query() split pattern.
  • Windows uninstall paths in INSTALL.md (#778) β€” All four ~/.uteke references now point to ~/.codecora/uteke.
  • Clippy: redundant &format! borrow (#778) β€” Error::generic(&format!(…)) β†’ Error::generic(format!(…)).
  • Test env var pollution (#778) β€” uteke_home tests now save/restore HOME and UTEKE_HOME to prevent parallel test race conditions.

Contributors

  • @ajianaz β€” data dir migration with auto-migrate (#778)
  • @ajianaz β€” fix upgrade visibility and doc delete query (#777)

πŸ“¦ Binaries

Each archive contains three binaries:

  • uteke β€” CLI tool
  • uteke-serve β€” HTTP server daemon
  • uteke-mcp β€” MCP server (stdio + HTTP)
Platform File
Linux (x86_64) uteke-x86_64-unknown-linux-gnu-v0.10.1.tar.gz
Linux (ARM64) uteke-aarch64-unknown-linux-gnu-v0.10.1.tar.gz
macOS (Apple Silicon) uteke-aarch64-apple-darwin-v0.10.1.tar.gz
Windows (x86_64) uteke-x86_64-pc-windows-msvc-v0.10.1.zip

πŸš€ Quick Start

# Quick install (Linux / macOS)
curl -fsSL https://raw.githubusercontent.com/codecoradev/uteke/main/install.sh | sh

# Pin a specific version
UTEKE_VERSION= curl -fsSL https://raw.githubusercontent.com/codecoradev/uteke/main/install.sh | sh

# Store a memory
uteke remember "Important context" --tags project

# Recall by meaning
uteke recall "what was that context?"

# Start server for fast AI agent access
uteke-serve --port 8767

Full changelog: https://github.com/codecoradev/uteke/blob/main/CHANGELOG.md