From ed88442d2da578dea6e362bcf388af3be22e6788 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Tue, 28 Apr 2026 14:22:39 +0100 Subject: [PATCH] Add last of the big four agent commands --- agent-cmd.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/agent-cmd.sh b/agent-cmd.sh index 8443174..d7754a0 100755 --- a/agent-cmd.sh +++ b/agent-cmd.sh @@ -6,6 +6,7 @@ agents=() command -v claude &>/dev/null && agents+=(claude) command -v opencode &>/dev/null && agents+=(opencode) command -v gemini &>/dev/null && agents+=(gemini) +command -v codex &>/dev/null && agents+=(gemini) if [ ${#agents[@]} -eq 0 ]; then echo "No agent commands found (claude, opencode, gemini)"