theniceboy/bin/agent
2026-03-27 21:04:47 -07:00

12 lines
244 B
Bash
Executable file

#!/usr/bin/env bash
set -euo pipefail
ROOT="$HOME/.config/agent-tracker"
BIN="$ROOT/bin/agent"
if [[ ! -x "$BIN" ]]; then
echo "agent binary not found at $BIN; run ~/.config/agent-tracker/install.sh first" >&2
exit 1
fi
exec "$BIN" "$@"