mirror of
https://github.com/garrytan/gstack.git
synced 2026-06-03 00:28:02 +02:00
3bef43bc5a
* fix(jsonl-merge): make equal-ts resolution converge across machines The JSONL append merge driver sorted timestamped entries by (0, ts) with no further tiebreaker. Equal-ts entries then fell back to stable-sort insertion order (base, ours, theirs), but git assigns the local side to "ours", so two machines resolving the same conflict emitted equal-ts lines in opposite order. The merged files diverged and never converged. gstack-telemetry-log uses second-granularity timestamps, so same-ts collisions are routine. Add the line content as the final sort tiebreaker so the order is total and side-independent. Add a regression test that runs the driver with the two sides swapped and asserts identical output. * fix(gen-skill-docs): quote frontmatter descriptions with interior colons (#1778) Generated SKILL.md frontmatter emitted the catalog-trimmed description: as a plain YAML scalar. A description with an interior ": " (e.g. "Ship workflow: detect...") parses as a nested mapping under strict YAML loaders, so Codex/OpenAI skill loading rejected those skills. applyCatalogTrim now routes the value through toYamlInlineScalar, which quotes (via JSON.stringify) only when a plain scalar would be invalid — interior ": ", inline " #", leading indicator char, or surrounding whitespace. Strings that are already valid plain scalars pass through unchanged to keep regen diffs small. The frontmatter test now parses every generated block (Claude + Codex hosts) with Bun.YAML.parse instead of string-checking that name:/description: substrings exist, so the regression can't reappear. Runs under `bun test` (already in CI). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * chore(skills): regenerate SKILL.md after frontmatter quoting fix (#1778) 9 catalog-trimmed descriptions whose values contain an interior colon or inline- comment marker are now quoted. Generated output only; rerun of bun run gen:skill-docs. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * refactor(gbrain-sources): centralize sources-list shape handling in parseSourcesList (#1576) #1576's crash in sourceLocalPath was already fixed in v1.42.0.0 (dual-shape handling). But the readers disagreed: sourceLocalPath accepted both the wrapped {sources:[...]} object (v0.20+) and a bare array, while probeSource and sourcePageCount accepted only the wrapped shape. Extract one parseSourcesList() normalizer and route all three through it, so the shape assumption lives in a single place. This is also the base the #1734 remote_url audit builds on. parseSourcesList returns [] for null/garbage rather than throwing; callers treat 'no rows' as absent. New test/gbrain-sources-parse.test.ts pins both shapes plus the garbage paths and confirms config.remote_url survives for the audit. #1576 is closeable as already-fixed in v1.42.0.0. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(gbrain): spawn gbrain + brain-sync through a shell on Windows (#1731) On Windows, bun/npm install gbrain as a gbrain.cmd/.ps1 shim and gstack-brain-sync is a bash shebang script. spawnSync/spawn/execFileSync resolve neither without a shell, so the child spawn failed ENOENT — on the sync orchestrator this surfaced as 'brain-sync exited undefined' (#1731). Add NEEDS_SHELL_ON_WINDOWS (process.platform === 'win32') in gbrain-exec and pass it as shell: to every gbrain/brain-sync child spawn: spawnGbrain, spawnGbrainAsync, execGbrainText (gbrain-exec), the two sources-list/remove/add spawns (gbrain-sources), the version + probe spawns (gbrain-local-status), and the two brain-sync spawns in the orchestrator. POSIX keeps the cheaper no-shell path. macOS/Linux CI can't exercise the Windows path, so test/gbrain-spawn-windows-shell.ts is a static-grep tripwire: it fails CI if a gbrain/brain-sync spawn is added without the shell flag. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * test(catalog-trim): expect YAML-quoted descriptions with interior colons (#1778) The quoting fix wraps colon-bearing catalog descriptions in double quotes; two catalog-trim assertions still pinned the old unquoted form. Tolerate the optional quotes. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(gbrain-sync): defensive guards against destructive gbrain ops (#1734) The orchestrator shelled out to gbrain's destructive subcommands as if they were safe. gbrain can rm-rf a user's working tree during an autopilot race (its own bug, upstream gbrain #1526); gstack now defends itself. New lib/gbrain-guards.ts gates the two destructive reach points, all checked immediately before the op: - Autopilot refuse (multi-signal, affirmative-only): refuse a destructive op when a live 'gbrain autopilot' process (primary) or a known autopilot lock file (secondary; checked under both GBRAIN_HOME and ~/.gbrain since gbrain #1226 ignores GBRAIN_HOME) is present. No signal → proceed; inability to introspect never bricks a normal sync. - sources remove: routed through safeSourcesRemove → decideSourceRemove. Fail CLOSED — refuse to remove a user-managed source (remote_url set, local_path outside gbrain's clones) when gbrain has no --keep-storage to protect the files (it doesn't in 0.41.x). Also fail closed when the source list can't be read. Path containment uses realpath so a symlink can't smuggle a delete out of clones. - sync --strategy code: decideCodeSync refuses URL-managed sources (remote_url set) unless --allow-reclone is passed, since the walk can auto-reclone (rm-rf). Capability detection memoizes per process keyed to gbrain's identity (no stale persistent cache); --keep-storage can't be probed (generic help) so it defaults unsupported → fail closed. Every guard surfaces a visible reason; autopilot/reclone refusals fail the code stage (verdict ERR) rather than silently skipping protection. test/gbrain-guards.test.ts covers all branches hermetically (injected rows + probe overrides): autopilot signals, fail-closed remove, keep-storage path, reclone gate, realpath/symlink containment. Supersedes #1736 (which guarded a nonexistent path). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * docs(sync-gbrain): warn against running during autopilot; prefer --path sources (#1734) Adds a Safety note to the /sync-gbrain guidance (template + regenerated SKILL.md + this repo's CLAUDE.md): don't run while autopilot is active, and prefer `gbrain sources add --path` over URL-managed sources, which can auto-reclone. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(memory-ingest): configurable import timeout + resume-on-timeout messaging (#1611) The gbrain import (the long pole on big brains) had a hardcoded 30-min timeout, so large memory corpora got SIGTERM'd mid-import on /sync-gbrain --full. Make it configurable via GSTACK_INGEST_TIMEOUT_MS (default 30 min, validated 1min–24h). gstack can't drive gbrain's internal resume, but the existing SIGTERM forwarder already preserves gbrain's import-checkpoint.json, so the next run resumes. On a timeout we now say so explicitly ('checkpoint preserved — re-run /sync-gbrain to resume, raise GSTACK_INGEST_TIMEOUT_MS for big brains') instead of surfacing a bare 'exited null'. True gstack-driven ingest-resume is deferred to gbrain (.context/gbrain-asks.md). Also guards the module's main() behind import.meta.main so resolveImportTimeoutMs is unit-testable; the orchestrator runs it as a subprocess where main still fires. New test/memory-ingest-timeout.test.ts pins default/override/invalid resolution. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(browse): stop the headed daemon crash-loop + silent headless downgrade (#1781) A headed session against a beacon-heavy page (analytics/extension load) could tip the single-threaded daemon into a self-inflicted crash-loop: a brief HTTP stall was read as a crash, the restart didn't clear the dead Chromium's SingletonLock, the relaunch failed, and the session silently came back headless. Four fixes: 1. Busy-vs-dead (sendCommand): on a connection error, if the process is alive give /health a bounded probe (3x/250ms) and just retry the command — never kill+restart a live-but-busy server. A 30s timeout now reports 'busy, not restarting' when the process is alive instead of exiting into a kill cycle. 2. Profile-lock cleanup on (re)start: startServer reaps the orphaned Chromium holding the SingletonLock and clears Singleton{Lock,Socket,Cookie} before relaunch, so the auto-restart path gets the same clean profile the manual connect preamble did. 3. Headed persistence: the restart env reapplies BROWSE_HEADED from this invocation OR the persisted server state (mode==='headed'), so a restart from a plain command never downgrades a headed window to invisible headless. Extracted to buildRestartEnv. 4. Force-clean disconnect reaps the Chromium child tree (via the SingletonLock PID) so the next connect starts clean instead of fighting an orphan. Plus macOS window surfacing: connect + focus raise 'Google Chrome for Testing' to the active Space (best-effort osascript) with a Mission Control hint — the first thing users read as 'I can't see the browser'. Shared lock helpers (chromiumProfileDir / cleanChromiumProfileLocks / killOrphanChromium) dedupe the connect, disconnect, and restart paths. browse/test/restart-env.test.ts pins the headed-persistence decision; the full crash-loop repro is an E2E (periodic). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * feat(gbrain-install): remove the v0.18.2 pin, install latest + version floor + doctor self-test (#1744) The installer pinned gbrain at v0.18.2 while gbrain shipped v0.41.x — ~23 versions behind. Remove the hard pin: a fresh clone now stays on the latest default-branch HEAD. --pinned-commit <sha> still pins for reproducibility. Unpinning removes the version gate the pin provided, so add two install-time gates that fail closed (exit 3, matching the existing PATH-shadow/version-mismatch posture): - MIN_GBRAIN_VERSION floor (0.20.0, the sources-list/federated surface gstack needs): refuse an install below it. - gbrain doctor --fast self-test when a brain config already exists (re-install / detected clone): refuse to leave a broken gbrain in place. Pre-init installs skip it; the full /sync-gbrain --dry-run self-test runs from /setup-gbrain after init. Docs updated (USING_GBRAIN_WITH_GSTACK.md no longer says 'edit PINNED_COMMIT'). Detect-install tests bump the success-path fixtures above the floor and add a below-floor exit-3 test. The gbrain-side asks (root #1526 fix, --keep-storage, remove-lease, capability command, ingest-resume, integration CI) are written to .context/gbrain-asks.md for filing against garrytan/gbrain. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * test(#1778): update claude-ship golden + catalog-mode assertions for quoted descriptions ship's catalog description ('Ship workflow: detect...') has an interior colon, so the #1778 fix now YAML-quotes it. Refresh the claude-ship golden baseline to the quoted output and make the catalog-mode-full trim/restore assertions quote-tolerant. codex/factory ship goldens are unaffected (they use block-scalar descriptions). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(gen-skill-docs): use function replacer so a $ in a description can't corrupt frontmatter (#1778) String.prototype.replace treats $&/$1/$` in the replacement as patterns. A future skill description containing $ (e.g. referencing $B/$D) would silently corrupt the generated frontmatter. Use a function replacer. Behavior-preserving for all current descriptions (regen produces no diff). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * chore: bump version and changelog (v1.55.0.0) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * docs(gbrain): document configurable memory-ingest timeout for v1.55.0.0 USING_GBRAIN_WITH_GSTACK.md: note GSTACK_INGEST_TIMEOUT_MS (default 30 min, 1 min-24h range) on the /sync-gbrain memory stage, plus checkpoint-resume on timeout. Fills the reference gap left by the configurable-import-timeout fix (#1611) shipped in v1.55.0.0. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Jayesh Betala <jayesh.betala7@gmail.com> Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
283 lines
12 KiB
Bash
Executable File
283 lines
12 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# gstack-gbrain-install — install the gbrain CLI on a local Mac.
|
|
#
|
|
# Usage:
|
|
# gstack-gbrain-install [--install-dir <dir>] [--pinned-commit <sha>] [--dry-run]
|
|
#
|
|
# D5 detect-first: before cloning anywhere, probe likely pre-existing
|
|
# locations (~/git/gbrain and ~/gbrain) and reuse a working clone if one
|
|
# exists. Falls back to a fresh clone of the pinned commit at ~/gbrain
|
|
# (override with GBRAIN_INSTALL_DIR or --install-dir).
|
|
#
|
|
# D19 PATH-shadowing: after `bun link`, compare `gbrain --version` output
|
|
# to the install-dir's package.json version. On mismatch, abort with an
|
|
# actionable error listing every gbrain on PATH. Never "silently fixes"
|
|
# PATH; setup skills should refuse broken environments.
|
|
#
|
|
# Prerequisites (checked before doing anything):
|
|
# - bun (install: curl -fsSL https://bun.sh/install | bash)
|
|
# - git
|
|
# - network reachability to https://github.com
|
|
#
|
|
# gbrain installs at the latest default-branch HEAD by default — the hard pin
|
|
# was removed in #1744 (it had drifted ~23 versions behind). Pass
|
|
# --pinned-commit <sha> to install a specific commit for reproducibility. A
|
|
# minimum-version floor (MIN_GBRAIN_VERSION) hard-fails the install when the
|
|
# resulting gbrain is too old for gstack's sync integration, and a fast
|
|
# `gbrain doctor` self-test hard-fails a broken install when gbrain is already
|
|
# configured. This keeps the version gate that the pin used to provide without
|
|
# freezing users 23 releases behind.
|
|
#
|
|
# Env:
|
|
# GBRAIN_INSTALL_DIR — override default install path (~/gbrain)
|
|
#
|
|
# Exit codes:
|
|
# 0 — success (or --dry-run printed the plan)
|
|
# 2 — prerequisite missing or invalid argument
|
|
# 3 — post-install validation failed (PATH shadow, broken binary, etc.)
|
|
set -euo pipefail
|
|
|
|
# --- defaults ---
|
|
# No version pin by default — install the latest default-branch HEAD (#1744).
|
|
# --pinned-commit <sha> overrides for reproducibility.
|
|
PINNED_COMMIT=""
|
|
PINNED_TAG=""
|
|
# Minimum gbrain version gstack's integration is known to work with. The
|
|
# `sources list --json` wrapped-object shape + federated sources landed by 0.20;
|
|
# older predates the surface gstack drives. Hard-fail below this floor (#1744).
|
|
MIN_GBRAIN_VERSION="0.20.0"
|
|
GBRAIN_REPO_URL="https://github.com/garrytan/gbrain.git"
|
|
DEFAULT_INSTALL_DIR="${GBRAIN_INSTALL_DIR:-$HOME/gbrain}"
|
|
INSTALL_DIR="$DEFAULT_INSTALL_DIR"
|
|
DRY_RUN=false
|
|
VALIDATE_ONLY=false
|
|
|
|
die() { echo "gstack-gbrain-install: $*" >&2; exit 2; }
|
|
fail() { echo "gstack-gbrain-install: $*" >&2; exit 3; }
|
|
log() { echo "gstack-gbrain-install: $*"; }
|
|
|
|
# --- parse args ---
|
|
while [ $# -gt 0 ]; do
|
|
case "$1" in
|
|
--install-dir) INSTALL_DIR="$2"; shift 2 ;;
|
|
--pinned-commit) PINNED_COMMIT="$2"; PINNED_TAG=""; shift 2 ;;
|
|
--dry-run) DRY_RUN=true; shift ;;
|
|
--validate-only) VALIDATE_ONLY=true; shift ;;
|
|
--help|-h) sed -n '2,30p' "$0" | sed 's/^# \{0,1\}//'; exit 0 ;;
|
|
*) die "unknown flag: $1" ;;
|
|
esac
|
|
done
|
|
|
|
# --- prerequisites ---
|
|
check_prereq() {
|
|
local bin="$1"
|
|
local hint="$2"
|
|
if ! command -v "$bin" >/dev/null 2>&1; then
|
|
fail "required tool '$bin' not found. $hint"
|
|
fi
|
|
}
|
|
|
|
if ! $VALIDATE_ONLY; then
|
|
check_prereq bun "Install: curl -fsSL https://bun.sh/install | bash"
|
|
check_prereq git "Install: xcode-select --install (macOS) or your package manager"
|
|
|
|
# GitHub reachability — fail fast if offline rather than hanging `git clone`.
|
|
# --max-time 10, --head (no body), quiet. Status code 200-4xx means we reached
|
|
# the server (even 404 is reachability proof).
|
|
if ! curl -s --head --max-time 10 https://github.com >/dev/null 2>&1; then
|
|
fail "cannot reach https://github.com. Check your network and try again."
|
|
fi
|
|
fi
|
|
|
|
# --- D5 detect-first: probe common locations before cloning fresh ---
|
|
# Accept any directory that looks like a gbrain clone: has package.json
|
|
# with name "gbrain" and a `bin.gbrain` entry. Don't accept version mismatches
|
|
# here — we'll let bun link run and then D19-validate.
|
|
is_valid_clone() {
|
|
local dir="$1"
|
|
[ -d "$dir" ] || return 1
|
|
[ -f "$dir/package.json" ] || return 1
|
|
local name
|
|
name=$(jq -r '.name // empty' "$dir/package.json" 2>/dev/null || true)
|
|
[ "$name" = "gbrain" ] || return 1
|
|
local bin
|
|
bin=$(jq -r '.bin.gbrain // empty' "$dir/package.json" 2>/dev/null || true)
|
|
[ -n "$bin" ] || return 1
|
|
return 0
|
|
}
|
|
|
|
DETECTED_CLONE=""
|
|
if ! $VALIDATE_ONLY; then
|
|
for candidate in "$HOME/git/gbrain" "$HOME/gbrain" "$INSTALL_DIR"; do
|
|
if is_valid_clone "$candidate"; then
|
|
DETECTED_CLONE="$candidate"
|
|
break
|
|
fi
|
|
done
|
|
fi
|
|
|
|
if $VALIDATE_ONLY; then
|
|
log "validate-only mode: skipping detect + clone + install + link"
|
|
elif [ -n "$DETECTED_CLONE" ]; then
|
|
log "detected existing gbrain clone at $DETECTED_CLONE — reusing"
|
|
INSTALL_DIR="$DETECTED_CLONE"
|
|
else
|
|
# Fresh clone path.
|
|
if $DRY_RUN; then
|
|
log "DRY RUN: would clone $GBRAIN_REPO_URL ${PINNED_COMMIT:+@ $PINNED_COMMIT }→ $INSTALL_DIR (latest HEAD unless --pinned-commit)"
|
|
exit 0
|
|
fi
|
|
if [ -d "$INSTALL_DIR" ]; then
|
|
fail "install dir $INSTALL_DIR exists but is not a valid gbrain clone. Remove it or pass --install-dir <other>."
|
|
fi
|
|
log "cloning $GBRAIN_REPO_URL → $INSTALL_DIR"
|
|
git clone --quiet "$GBRAIN_REPO_URL" "$INSTALL_DIR"
|
|
if [ -n "$PINNED_COMMIT" ]; then
|
|
( cd "$INSTALL_DIR" && git checkout --quiet "$PINNED_COMMIT" )
|
|
log "checked out pinned commit $PINNED_COMMIT${PINNED_TAG:+ ($PINNED_TAG)}"
|
|
else
|
|
log "installed latest gbrain (default-branch HEAD)"
|
|
fi
|
|
fi
|
|
|
|
if $DRY_RUN; then
|
|
log "DRY RUN: would run bun install + bun link in $INSTALL_DIR"
|
|
exit 0
|
|
fi
|
|
|
|
# --- install + link ---
|
|
# On Windows MSYS/Cygwin shells, bun's postinstall scripts (notably gbrain's
|
|
# native-bindings setup) fail to parse path arguments correctly and abort
|
|
# `bun install` with a non-zero exit. The package itself installs fine
|
|
# without scripts, so detect Windows and pass --ignore-scripts there. The
|
|
# `bun link` step below is unaffected.
|
|
IS_WINDOWS=0
|
|
case "$(uname -s)" in
|
|
MINGW*|MSYS*|CYGWIN*|Windows_NT) IS_WINDOWS=1 ;;
|
|
esac
|
|
|
|
if ! $VALIDATE_ONLY; then
|
|
if [ "$IS_WINDOWS" -eq 1 ]; then
|
|
log "running bun install --ignore-scripts in $INSTALL_DIR (Windows shell detected)"
|
|
( cd "$INSTALL_DIR" && bun install --silent --ignore-scripts )
|
|
else
|
|
log "running bun install in $INSTALL_DIR"
|
|
( cd "$INSTALL_DIR" && bun install --silent )
|
|
fi
|
|
log "running bun link in $INSTALL_DIR"
|
|
( cd "$INSTALL_DIR" && bun link --silent )
|
|
fi
|
|
|
|
# --- D19 PATH-shadowing validation ---
|
|
# Read the version from the install-dir's package.json; compare to
|
|
# `gbrain --version`. If they disagree, PATH is returning a DIFFERENT
|
|
# gbrain than the one we just linked. Fail hard with remediation.
|
|
expected_version=$(jq -r '.version // empty' "$INSTALL_DIR/package.json" 2>/dev/null || true)
|
|
if [ -z "$expected_version" ]; then
|
|
fail "cannot read version from $INSTALL_DIR/package.json (install may be broken)"
|
|
fi
|
|
|
|
if ! command -v gbrain >/dev/null 2>&1; then
|
|
fail "bun link completed but 'gbrain' is not on PATH. Ensure ~/.bun/bin is in your PATH."
|
|
fi
|
|
|
|
actual_version=$(gbrain --version 2>/dev/null | head -1 | awk '{print $NF}' | tr -d '[:space:]' || true)
|
|
if [ -z "$actual_version" ]; then
|
|
fail "gbrain is on PATH but 'gbrain --version' produced no output — the binary may be broken."
|
|
fi
|
|
|
|
# Tolerate a leading "v" (gbrain may print either "0.18.2" or "v0.18.2").
|
|
expected_norm="${expected_version#v}"
|
|
actual_norm="${actual_version#v}"
|
|
|
|
if [ "$actual_norm" != "$expected_norm" ]; then
|
|
echo "" >&2
|
|
echo "gstack-gbrain-install: PATH SHADOWING DETECTED" >&2
|
|
echo "" >&2
|
|
echo " We just linked gbrain $expected_version from $INSTALL_DIR," >&2
|
|
echo " but PATH is returning gbrain $actual_version." >&2
|
|
echo "" >&2
|
|
echo " All gbrain binaries on PATH:" >&2
|
|
type -a gbrain 2>&1 | sed 's/^/ /' >&2 || true
|
|
echo "" >&2
|
|
echo " Fix one of the following, then re-run /setup-gbrain:" >&2
|
|
echo " a) rm the shadowing binary: rm \$(which gbrain)" >&2
|
|
echo " b) prepend ~/.bun/bin to PATH in your shell rc" >&2
|
|
echo " c) point GBRAIN_INSTALL_DIR at the shadowing binary's install dir" >&2
|
|
echo "" >&2
|
|
exit 3
|
|
fi
|
|
|
|
log "installed gbrain $actual_version from $INSTALL_DIR"
|
|
|
|
# --- minimum-version floor (#1744) ---
|
|
# Unpinning means new installs track gbrain HEAD. Hard-fail if the resulting
|
|
# version is below the floor gstack's sync integration needs — same exit-3 posture
|
|
# as the PATH-shadow / version-mismatch failures above. A warning here is exactly
|
|
# how the data-loss class slipped through, so this gate fails closed.
|
|
version_lt() {
|
|
# 0 (true) when $1 < $2 by version sort; equal versions are NOT less-than.
|
|
[ "$1" = "$2" ] && return 1
|
|
[ "$(printf '%s\n%s\n' "$1" "$2" | sort -V | head -1)" = "$1" ]
|
|
}
|
|
if version_lt "$actual_norm" "$MIN_GBRAIN_VERSION"; then
|
|
echo "" >&2
|
|
echo "gstack-gbrain-install: gbrain $actual_version is below the minimum gstack-tested version ($MIN_GBRAIN_VERSION)." >&2
|
|
echo " gstack's sync integration needs the v0.20+ source/list surface." >&2
|
|
echo " Fix: update the gbrain clone at $INSTALL_DIR to a newer release (git pull), then" >&2
|
|
echo " re-run /setup-gbrain. Or pass --pinned-commit <sha> to install a specific newer commit." >&2
|
|
echo "" >&2
|
|
exit 3
|
|
fi
|
|
|
|
# --- functional self-test when gbrain is already configured (#1744) ---
|
|
# When a brain config exists (re-install / detected clone), run a fast doctor as
|
|
# a hard gate so a broken gbrain is caught at setup, not at data-loss time.
|
|
# Pre-init installs skip this (config not written yet); the full
|
|
# `/sync-gbrain --dry-run` self-test runs from /setup-gbrain after `gbrain init`.
|
|
_GBRAIN_HOME_CHECK="${GBRAIN_HOME:-$HOME/.gbrain}"
|
|
if [ -f "$_GBRAIN_HOME_CHECK/config.json" ]; then
|
|
if ! gbrain doctor --fast >/dev/null 2>&1; then
|
|
echo "" >&2
|
|
echo "gstack-gbrain-install: gbrain $actual_version installed but 'gbrain doctor --fast' failed." >&2
|
|
echo " Refusing to leave a broken gbrain in place. Run 'gbrain doctor' to see what's wrong," >&2
|
|
echo " fix it, then re-run /setup-gbrain." >&2
|
|
echo "" >&2
|
|
exit 3
|
|
fi
|
|
log "gbrain doctor --fast passed"
|
|
fi
|
|
|
|
# v1.40.0.0 post-install validation (T6 / codex review #19): --ignore-scripts
|
|
# may skip artifacts gbrain needs at runtime, especially on Windows
|
|
# MSYS/MINGW where we DID pass --ignore-scripts. `gbrain --version` above
|
|
# already confirmed the binary runs; this second probe checks that the
|
|
# subcommand surface is reachable (`sources` is the entry point the sync
|
|
# stage hits first). If the probe fails, we warn but don't exit non-zero —
|
|
# the user may still be able to use other commands.
|
|
if ! gbrain sources --help >/dev/null 2>&1; then
|
|
echo "" >&2
|
|
echo "gstack-gbrain-install: WARNING — gbrain installed but 'gbrain sources --help' did not exit 0." >&2
|
|
if [ "$IS_WINDOWS" -eq 1 ]; then
|
|
echo " Windows shells skip bun postinstall scripts; some gbrain features may need native build tools." >&2
|
|
echo " If /sync-gbrain fails to find subcommands, install gbrain from a non-MSYS shell," >&2
|
|
echo " or run: cd $INSTALL_DIR && bun install (without --ignore-scripts)" >&2
|
|
else
|
|
echo " This may be a transient gbrain CLI issue or a missing native dependency." >&2
|
|
echo " If /sync-gbrain fails, re-run: cd $INSTALL_DIR && bun install" >&2
|
|
fi
|
|
echo "" >&2
|
|
fi
|
|
|
|
echo ""
|
|
if [ -n "${VOYAGE_API_KEY:-}" ]; then
|
|
echo "Next: gbrain init --pglite --embedding-model voyage:voyage-code-3 --embedding-dimensions 1024"
|
|
echo " (or run /setup-gbrain for the full setup flow)"
|
|
else
|
|
echo "Next: gbrain init --pglite (or run /setup-gbrain for the full setup flow)"
|
|
echo ""
|
|
echo "Tip: set VOYAGE_API_KEY before init to use voyage-code-3 (best embedding"
|
|
echo "model for code retrieval on Voyage). Without it, gbrain falls back to its"
|
|
echo "auto-selected provider (OpenAI when OPENAI_API_KEY is set, etc.)."
|
|
fi
|