9c9a51263c
汇总未提交工作区:Servers 列表 site_url 链接、终端页与选机器 UI、SSH 连通性与 Telegram 通知、agent/offline/unset_path 后台调度与 gate_ai_review 门控;更新 AGENTS 与 agent-exploration 规则(仅本机 commit);同步 web/app 构建产物与相关文档。
17 lines
407 B
Bash
17 lines
407 B
Bash
#!/usr/bin/env bash
|
|
# Run Nexus Gate 8 AI review (see scripts/gate_ai_review.py).
|
|
set -euo pipefail
|
|
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
|
cd "${ROOT}"
|
|
PYTHON=""
|
|
for p in "${ROOT}/.venv/bin/python3" "${ROOT}/venv/bin/python3"; do
|
|
if [[ -x "${p}" ]]; then
|
|
PYTHON="${p}"
|
|
break
|
|
fi
|
|
done
|
|
if [[ -z "${PYTHON}" ]]; then
|
|
PYTHON="python3"
|
|
fi
|
|
exec "${PYTHON}" "${ROOT}/scripts/gate_ai_review.py" "$@"
|