Skip to content

v0.1.6

Latest

Choose a tag to compare

@github-actions github-actions released this 14 Aug 17:29
b8d5378

Changes

  • chore: bump version to 0.1.6 in package.json and enhance conversation state management (#43) (b8d5378)
  • fix(38): remove hardcoded hints (#42) (87ce4ac)

Installation

macOS

# Apple Silicon (M1/M2/M3/M4)
curl -fsSL https://github.com/prapaa-ai/agav/releases/download/v0.1.6/agav-darwin-arm64 -o agav
chmod +x agav && sudo mv agav /usr/local/bin/

# Intel
curl -fsSL https://github.com/prapaa-ai/agav/releases/download/v0.1.6/agav-darwin-x64 -o agav
chmod +x agav && sudo mv agav /usr/local/bin/

Linux

# x64
curl -fsSL https://github.com/prapaa-ai/agav/releases/download/v0.1.6/agav-linux-x64 -o agav
chmod +x agav && sudo mv agav /usr/local/bin/

# ARM64
curl -fsSL https://github.com/prapaa-ai/agav/releases/download/v0.1.6/agav-linux-arm64 -o agav
chmod +x agav && sudo mv agav /usr/local/bin/

Windows

# Download and install (x64; ARM64 runs this under emulation)
New-Item -ItemType Directory -Force -Path "$env:LOCALAPPDATA\agav" | Out-Null
Invoke-WebRequest -Uri "https://github.com/prapaa-ai/agav/releases/download/v0.1.6/agav-windows-x64.exe" -OutFile "$env:LOCALAPPDATA\agav\agav.exe"

# Add to PATH (run once)
$dir = "$env:LOCALAPPDATA\agav"
$path = [Environment]::GetEnvironmentVariable("Path", "User")
if ($path -notlike "*$dir*") {
  [Environment]::SetEnvironmentVariable("Path", "$dir;$path", "User")
}

What's Changed

Full Changelog: v0.1.5...v0.1.6