Skip to content

Releases: saurabhahuja71/agenterm

agenterm v0.3.0

Choose a tag to compare

@github-actions github-actions released this 25 Jul 16:14

agenterm v0.3.0

Terminal AI agent (Ollama / OpenAI-compatible + tools). Download a binary below — no Go install required.

Direct download (pick your OS)

Platform Binary
Linux x86_64 agenterm-linux-amd64
Linux arm64 agenterm-linux-arm64
macOS Intel agenterm-darwin-amd64
macOS Apple Silicon agenterm-darwin-arm64
Windows x86_64 agenterm-windows-amd64.exe

Each asset also has a .sha256 checksum file attached to this release.

Linux (quick install)

curl -fsSL -o agenterm   https://github.com/saurabhahuja71/agenterm/releases/download/v0.3.0/agenterm-linux-amd64
chmod +x agenterm
./agenterm --version
sudo install -m 755 agenterm /usr/local/bin/agenterm   # optional system-wide

macOS (Apple Silicon)

curl -fsSL -o agenterm   https://github.com/saurabhahuja71/agenterm/releases/download/v0.3.0/agenterm-darwin-arm64
chmod +x agenterm
./agenterm --version

One-line installer (auto-picks asset)

curl -fsSL https://raw.githubusercontent.com/saurabhahuja71/agenterm/main/scripts/install.sh | bash

What’s new in 0.3.0

  • Grok-like UX: /plan, /edit, /copy, /undo, /stop, Alt+Enter multiline
  • Interactive /model picker (Tab / Enter)
  • Built-in doc link check (skips localhost / $VAR placeholders)
  • repo_map tool, quieter TUI, safer shell timeouts
  • Thinking banner while busy

Container

podman run --rm -it --network=host   -e AGENTERM_BASE_URL=http://127.0.0.1:11434/v1   -v "$HOME/.agenterm:/home/agenterm/.agenterm:Z"   ghcr.io/saurabhahuja71/agenterm:v0.3.0

Full changelog: v0.1.1...v0.3.0

agenterm v0.1.1

Choose a tag to compare

@github-actions github-actions released this 25 Jul 10:09

agenterm v0.1.1

Terminal AI agent — native binaries + container.

Native (recommended — no container limits)

curl -fsSL https://raw.githubusercontent.com/saurabhahuja71/agenterm/main/scripts/install.sh | bash
agenterm --version
agenterm

Or download a specific asset from this release, e.g. agenterm-linux-amd64.

Container (Podman / Docker)

podman run --rm -it --network=host \
  -e AGENTERM_BASE_URL=http://127.0.0.1:11434/v1 \
  -v "$HOME/.agenterm:/home/agenterm/.agenterm:Z" \
  ghcr.io/saurabhahuja71/agenterm:v0.1.1

Point AGENTERM_BASE_URL at local or remote Ollama (…:11434/v1).

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