Commit 0611f811af5c

Vincent Demeester <vincent@sbr.pm>
2026-02-11 07:45:03
feat(scripts): added gor wrapper for goose with Vertex AI
Added wrapper script to configure goose with GCP Vertex AI environment, matching the pattern of cr and pir wrappers.
1 parent f86a648
Changed files (1)
pkgs
my
scripts
bin
pkgs/my/scripts/bin/gor
@@ -0,0 +1,9 @@
+#!/usr/bin/env bash
+# Goose with Vertex AI environment
+# Usage: gor [args...]
+# This wrapper configures goose to use GCP Vertex AI
+
+export GCP_PROJECT_ID=itpc-gcp-pnd-pe-eng-claude
+export GCP_LOCATION=us-east5
+
+exec goose "$@"