2026-03-19 22:56:31 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
|
|
2026-03-20 06:38:05 +00:00
|
|
|
# Prerequisite: auth-runtime must be cloned at ~/clawd/skills/auth-runtime
|
|
|
|
|
if [ ! -d "$HOME/clawd/skills/auth-runtime/src" ]; then
|
|
|
|
|
echo "ERROR: auth-runtime not found at ~/clawd/skills/auth-runtime"
|
|
|
|
|
echo "Run: git clone http://192.168.0.108:3030/agent-skills/auth-runtime.git ~/clawd/skills/auth-runtime"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
2026-03-19 22:56:31 +00:00
|
|
|
npm install
|