#!/usr/bin/env bash set -euo pipefail cd /repo export OPENCLAW_STATE_DIR="/tmp/openclaw-test" export OPENCLAW_CONFIG_PATH="${OPENCLAW_STATE_DIR}/openclaw.json" echo "==> Build" pnpm build echo "==> Seed state" mkdir -p "${OPENCLAW_STATE_DIR}/credentials" mkdir -p "${OPENCLAW_STATE_DIR}/agents/main/sessions" echo '{}' >"${OPENCLAW_CONFIG_PATH}" echo 'creds' >"${OPENCLAW_STATE_DIR}/credentials/marker.txt" echo 'session' >"${OPENCLAW_STATE_DIR}/agents/main/sessions/sessions.json" echo "==> Reset (config+creds+sessions)" pnpm openclaw reset --scope config+creds+sessions --yes --non-interactive test ! -f "${OPENCLAW_CONFIG_PATH}" test ! -d "${OPENCLAW_STATE_DIR}/credentials" test ! -d "${OPENCLAW_STATE_DIR}/agents/main/sessions" echo "==> Recreate minimal config" mkdir -p "${OPENCLAW_STATE_DIR}/credentials" echo '{}' >"${OPENCLAW_CONFIG_PATH}" echo "==> Uninstall (state only)" pnpm openclaw uninstall --state --yes --non-interactive test ! -d "${OPENCLAW_STATE_DIR}" echo "OK"