agent tracker + tmux update

This commit is contained in:
David Chen 2026-03-25 12:13:26 -07:00
parent cd9c92b1c2
commit 5064629d61
68 changed files with 15041 additions and 3483 deletions

12
bin/agent Executable file
View file

@ -0,0 +1,12 @@
#!/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" "$@"