Skip to content

Releases: prapaa-ai/agav

v0.1.6

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

v0.1.5

Choose a tag to compare

@github-actions github-actions released this 14 Aug 08:44
b61e850

Changes

  • feat(windows): publish agav-windows-x64.exe and document uninstall (#37) (b61e850)
  • fix(install): keep install.ps1 pure ASCII so PowerShell 5.1 can parse it (#35) (2aa00b1)
  • fix: Improve terminal handling, user guidance, and add unit tests (#34) (b261230)

Installation

macOS

# Apple Silicon (M1/M2/M3/M4)
curl -fsSL https://github.com/prapaa-ai/agav/releases/download/v0.1.5/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.5/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.5/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.5/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.5/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.4...v0.1.5

v0.1.4

Choose a tag to compare

@github-actions github-actions released this 13 Aug 21:35
548e4ab

Changes

  • fix: improve terminal handling and add unit tests for auto-update utilities (#33) (548e4ab)

Installation

macOS

# Apple Silicon (M1/M2/M3/M4)
curl -fsSL https://github.com/prapaa-ai/agav/releases/download/v0.1.4/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.4/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.4/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.4/agav-linux-arm64 -o agav
chmod +x agav && sudo mv agav /usr/local/bin/

Windows

# Download and install
Invoke-WebRequest -Uri "https://github.com/prapaa-ai/agav/releases/download/v0.1.4/agav-windows-x64.exe" -OutFile "$env:LOCALAPPDATA\agav.exe"

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

What's Changed

  • fix: improve terminal handling and add unit tests for auto-update utilities by @somnath-world123 in #33

Full Changelog: v0.1.3...v0.1.4

v0.1.3

Choose a tag to compare

@github-actions github-actions released this 13 Aug 21:07
e86a857

Changes

  • fix: improve terminal handling for Agav launch (#32) (e86a857)

Installation

macOS

# Apple Silicon (M1/M2/M3/M4)
curl -fsSL https://github.com/prapaa-ai/agav/releases/download/v0.1.3/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.3/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.3/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.3/agav-linux-arm64 -o agav
chmod +x agav && sudo mv agav /usr/local/bin/

Windows

# Download and install
Invoke-WebRequest -Uri "https://github.com/prapaa-ai/agav/releases/download/v0.1.3/agav-windows-x64.exe" -OutFile "$env:LOCALAPPDATA\agav.exe"

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

What's Changed

Full Changelog: v0.1.2...v0.1.3

v0.1.2

Choose a tag to compare

@github-actions github-actions released this 13 Aug 20:33

Changes

  • chore: update README version badge to v0.1.2 [skip ci] (27da809)
  • fix: tui (#31) (cb56858)
  • docs: auto-update documentation [skip ci] (f0a1287)

Installation

macOS

# Apple Silicon (M1/M2/M3/M4)
curl -fsSL https://github.com/prapaa-ai/agav/releases/download/v0.1.2/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.2/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.2/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.2/agav-linux-arm64 -o agav
chmod +x agav && sudo mv agav /usr/local/bin/

Windows

# Download and install
Invoke-WebRequest -Uri "https://github.com/prapaa-ai/agav/releases/download/v0.1.2/agav-windows-x64.exe" -OutFile "$env:LOCALAPPDATA\agav.exe"

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

What's Changed

New Contributors

Full Changelog: v0.1.1...v0.1.2

v0.1.1

Choose a tag to compare

@github-actions github-actions released this 13 Aug 14:44
91eff76

Changes

  • feat: add benchmarks for Terminal-Bench 2.1, including scripts and agent integration (ce163f3)

Installation

macOS

# Apple Silicon (M1/M2/M3/M4)
curl -fsSL https://github.com/prapaa-ai/agav/releases/download/v0.1.1/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.1/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.1/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.1/agav-linux-arm64 -o agav
chmod +x agav && sudo mv agav /usr/local/bin/

Windows

# Download and install
Invoke-WebRequest -Uri "https://github.com/prapaa-ai/agav/releases/download/v0.1.1/agav-windows-x64.exe" -OutFile "$env:LOCALAPPDATA\agav.exe"

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

What's Changed

  • feat: add benchmarks for Terminal-Bench 2.1, including scripts and ag… by @somnath-world123 in #29

New Contributors

Full Changelog: https://github.com/prapaa-ai/agav/commits/v0.1.1