From a460f623fe9349e34158425d478e5d02c91426df Mon Sep 17 00:00:00 2001 From: Jared Pleva Date: Sat, 4 Apr 2026 06:15:18 +0000 Subject: [PATCH] feat: brain-26-1775283229 --- scripts/run-qa-agent.sh | 6 ++++++ scripts/run-report-agent.sh | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/scripts/run-qa-agent.sh b/scripts/run-qa-agent.sh index a3f9c9e..23e21bd 100755 --- a/scripts/run-qa-agent.sh +++ b/scripts/run-qa-agent.sh @@ -1,4 +1,10 @@ #!/usr/bin/env bash set -euo pipefail cd "$(dirname "$0")/.." + +if [[ ! -f ./shellforge ]]; then + echo "[run-qa-agent] Building shellforge..." + go build -o shellforge ./cmd/shellforge +fi + exec ./shellforge qa "${1:-.}" diff --git a/scripts/run-report-agent.sh b/scripts/run-report-agent.sh index 6c7ef17..f66967f 100755 --- a/scripts/run-report-agent.sh +++ b/scripts/run-report-agent.sh @@ -1,4 +1,10 @@ #!/usr/bin/env bash set -euo pipefail cd "$(dirname "$0")/.." + +if [[ ! -f ./shellforge ]]; then + echo "[run-report-agent] Building shellforge..." + go build -o shellforge ./cmd/shellforge +fi + exec ./shellforge report "${1:-.}"