Skip to content

Releases: the-void-ia/void-box

v0.2.0

18 Apr 13:37

Choose a tag to compare

void-box v0.2.0

Install

Linux (deb):

curl -fsSLO https://github.com/the-void-ia/void-box/releases/download/v0.2.0/voidbox_v0.2.0_amd64.deb
sudo dpkg -i voidbox_v0.2.0_amd64.deb

Linux (rpm):

sudo rpm -i https://github.com/the-void-ia/void-box/releases/download/v0.2.0/voidbox-v0.2.0.x86_64.rpm

macOS (Homebrew):

brew tap the-void-ia/tap
brew install voidbox

Shell installer (Linux & macOS):

curl -fsSL https://raw.githubusercontent.com/the-void-ia/void-box/main/scripts/install.sh | sh

Manual download:

  • Linux x86_64: voidbox-v0.2.0-linux-x86_64.tar.gz
  • Linux aarch64: voidbox-v0.2.0-linux-aarch64.tar.gz
  • macOS aarch64: voidbox-v0.2.0-darwin-aarch64.tar.gz

All packages bundle the voidbox binary, kernel, and initramfs — no env vars needed.

See Getting Started for details.

What's Changed

  • site improvements by @dpsoft in #27
  • refactor(voidbox): split CLI into modules and add snapshot subcommands by @cspinetta in #29
  • initial claude setup: CLAUDE.md + 2 skills to ease the dev flow by @cspinetta in #30
  • fix: resolve blocking I/O on tokio runtime and VM memory sizing by @cspinetta in #31
  • feat(llm): add claude-personal provider with auto credential staging by @cspinetta in #32
  • Service Mode Agent Support by @dpsoft in #28
  • void attach by @dpsoft in #34
  • Improve interactive shell PTY handling and terminal lifecycle by @cspinetta in #35
  • Snapshot/Restore fix by @dpsoft in #36
  • Feat/auto snapshot by @dpsoft in #37
  • Codex CLI as first-class agent peer by @dpsoft in #38
  • Auto image resolution: zero-config kernel/initramfs download by @dpsoft in #39
  • fix(macos): codesign packaged CLI and detect host CA bundles by @cspinetta in #40
  • macOS parity pass: VZ snapshot/restore, guest network deny list, image build parity, and code-quality cleanup by @cspinetta in #41

Full Changelog: v0.1.2...v0.2.0

v0.1.2

17 Mar 00:50

Choose a tag to compare

void-box v0.1.2

Install

Linux (deb):

curl -fsSLO https://github.com/the-void-ia/void-box/releases/download/v0.1.2/voidbox_v0.1.2_amd64.deb
sudo dpkg -i voidbox_v0.1.2_amd64.deb

Linux (rpm):

sudo rpm -i https://github.com/the-void-ia/void-box/releases/download/v0.1.2/voidbox-v0.1.2.x86_64.rpm

macOS (Homebrew):

brew tap the-void-ia/tap
brew install voidbox

Shell installer (Linux & macOS):

curl -fsSL https://raw.githubusercontent.com/the-void-ia/void-box/main/scripts/install.sh | sh

Manual download:

  • Linux x86_64: voidbox-v0.1.2-linux-x86_64.tar.gz
  • Linux aarch64: voidbox-v0.1.2-linux-aarch64.tar.gz
  • macOS aarch64: voidbox-v0.1.2-darwin-aarch64.tar.gz

All packages bundle the voidbox binary, kernel, and initramfs — no env vars needed.

See Getting Started for details.

v0.1.1

25 Feb 00:03

Choose a tag to compare

What's Changed

  • feat: add LM Studio as first-class LLM provider by @ramirolaso in #1
  • fixed deps problem with virtio and vm-memory libs by @ramirolaso in #2
  • add: macOS native support by @dpsoft in #3
  • OCI Support by @dpsoft in #4
  • refactor(pipeline): unify execution loop and document semantics by @cspinetta in #5

New Contributors

Full Changelog: v0.1.0...v0.1.1

v0.1.0

19 Feb 20:47

Choose a tag to compare

void-box v0.1.0

Pre-built artifacts for easy setup:

Download:

  • Initramfs: void-box-initramfs-v0.1.0-x86_64.cpio.gz
  • Guest agent: guest-agent-x86_64
  • Checksums: checksums-v0.1.0-x86_64.txt

Quick start:

# Download artifacts
wget https://github.com/the-void-ia/void-box/releases/download/v0.1.0/void-box-initramfs-v0.1.0-x86_64.cpio.gz

# Use with void-box
VOID_BOX_KERNEL=/boot/vmlinuz-$(uname -r) \
VOID_BOX_INITRAMFS=void-box-initramfs-v0.1.0-x86_64.cpio.gz \
cargo run --example claude_workflow

See Getting Started for details.