feat: add consumer-facing install flow / 新增給其他 agent 使用的安裝流程

This commit is contained in:
Alice (OpenClaw)
2026-05-13 20:57:39 +08:00
parent d377426246
commit be3b28e6de
3 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
echo "== install reply-end-controls PoC into openclawtest =="
bash "${ROOT_DIR}/scripts/refresh-openclawtest-poc.sh"
echo
echo "== verify installed state =="
bash "${ROOT_DIR}/scripts/verify-openclaw-poc.sh" \
"/home/openclawtest/.openclaw" \
"/home/openclawtest/.nvm/versions/node/v22.22.2/lib/node_modules/openclaw/dist"
echo
echo "PoC install flow complete."
echo "Next: send a Telegram reply through openclawtest and verify buttons/callback/state manually."