Download the CLI

Pull webhook events, process them, and report back — from the command line.

Quick install

macOS and Linux — run this in your terminal:

curl -sSL https://raw.githubusercontent.com/bensimkin/agentwebhook-cli/main/install.sh | sh

Detects your OS and architecture automatically.

Download binaries

macOS — Apple Silicon

M1, M2, M3, M4 Macs (2020 and later)

Download .tar.gz

macOS — Intel

Intel-based Macs (pre-2020)

Download .tar.gz

Linux — x86_64

Most Linux servers and desktops (64-bit Intel/AMD)

Download .tar.gz

Linux — ARM64

ARM servers (AWS Graviton, Raspberry Pi 4+, Oracle Ampere)

Download .tar.gz

Windows — x86_64

Windows 10/11 (64-bit). Extract and add to PATH.

Download .zip

After installing

Create a config file with your API key, then start pulling events:

# Create config
$ cat > ~/.agentwebhook.toml << EOF
base_url = "https://app.agentwebhook.com"
api_key = "awk_YOUR_API_KEY"
EOF

# Pull events
$ agentwebhook-cli pull --source=src_XXX --wait=25

# Done processing? Report back
$ agentwebhook-cli ack --event=evt_XXX
Full CLI documentation →