2026-03-19 22:56:31 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
|
|
2026-03-20 10:26:29 +00:00
|
|
|
# Prerequisite: auth-rt binary must be installed
|
|
|
|
|
if ! command -v auth-rt &>/dev/null && [ ! -x "$HOME/.openclaw/bin/auth-rt" ]; then
|
|
|
|
|
echo "ERROR: auth-rt not found. Install it:"
|
|
|
|
|
echo " cd ~/clawd/skills/auth-runtime && ./install.sh"
|
2026-03-20 06:38:05 +00:00
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
2026-03-19 22:56:31 +00:00
|
|
|
npm install
|