Skip to content

Installation

Install directly to your $GOPATH/bin:

go install github.com/plexusone/agentsentinel@latest

Make sure ~/go/bin is in your PATH:

# Add to ~/.zshrc or ~/.bashrc
export PATH="$HOME/go/bin:$PATH"

Verify the installation:

agentsentinel version

Option 2: Build from Source

Clone and build locally:

git clone https://github.com/plexusone/agentsentinel.git
cd agentsentinel
go build -o agentsentinel .

Run from the current directory:

./agentsentinel version

Or move to a directory in your PATH:

mv agentsentinel /usr/local/bin/

Shell Completion

Enable tab completion for your shell:

agentsentinel completion bash > /usr/local/etc/bash_completion.d/agentsentinel
agentsentinel completion zsh > "${fpath[1]}/_agentsentinel"
agentsentinel completion fish > ~/.config/fish/completions/agentsentinel.fish

Verify Installation

Check that everything is working:

# Check version
agentsentinel version

# Check tmux connectivity
agentsentinel status

If agentsentinel status shows tmux information, you're ready to go.

Next Steps