forked from zeroclaw-labs/zeroclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
ยท506 lines (423 loc) ยท 18.3 KB
/
install.sh
File metadata and controls
executable file
ยท506 lines (423 loc) ยท 18.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
#!/bin/sh
set -eu
# โโ ZeroClaw installer โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# Builds and installs ZeroClaw from source.
# All feature lists and version info read from Cargo.toml โ nothing hardcoded.
# POSIX sh โ no bash required. Works on Alpine, Debian, macOS, everywhere.
REPO_URL="https://github.com/zeroclaw-labs/zeroclaw.git"
# โโ Output helpers (terminal-aware) โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if [ -t 1 ]; then
BOLD='\033[1m' GREEN='\033[32m' YELLOW='\033[33m' RED='\033[31m' RESET='\033[0m'
else
BOLD='' GREEN='' YELLOW='' RED='' RESET=''
fi
info() { printf " ${GREEN}โ${RESET} %s\n" "$*"; }
warn() { printf " ${YELLOW}โ ${RESET} %s\n" "$*" >&2; }
die() { printf " ${RED}โ${RESET} %s\n" "$*" >&2; exit 1; }
bold() { printf "${BOLD}%s${RESET}" "$*"; }
# โโ Parse Cargo.toml (source of truth) โโโโโโโโโโโโโโโโโโโโโโโโโโโโ
parse_cargo_toml() {
local toml="$1"
[ -f "$toml" ] || die "Cargo.toml not found at $toml"
VERSION=$(awk '/^\[workspace\.package\]/{p=1;next} /^\[/{p=0} p && /^version *=/{split($0,a,"\"");print a[2]}' "$toml")
MSRV=$(awk '/^\[workspace\.package\]/{p=1;next} /^\[/{p=0} p && /^rust-version *=/{split($0,a,"\"");print a[2]}' "$toml")
EDITION=$(awk '/^\[workspace\.package\]/{p=1;next} /^\[/{p=0} p && /^edition *=/{split($0,a,"\"");print a[2]}' "$toml")
DEFAULT_FEATURES=$(awk '/^default *= *\[/,/\]/{s=$0; while(match(s,/"[^"]+"/)){print substr(s,RSTART+1,RLENGTH-2); s=substr(s,RSTART+RLENGTH)}}' "$toml" | paste -sd, -)
ALL_FEATURES=$(awk '/^\[features\]/{p=1;next} /^\[/{p=0} p && /^[a-z][a-z0-9_-]* *=/{sub(/ *=.*/,"");print}' "$toml")
}
# โโ Feature validation โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
validate_feature() {
case "$1" in
fantoccini) warn "'fantoccini' is deprecated โ use 'browser-native'" ; return 0 ;;
landlock) warn "'landlock' is deprecated โ use 'sandbox-landlock'" ; return 0 ;;
metrics) warn "'metrics' is deprecated โ use 'observability-prometheus'" ; return 0 ;;
esac
echo "$ALL_FEATURES" | grep -qx "$1" && return 0
die "Unknown feature '$1'. Run: $0 --list-features"
}
# โโ List features โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
list_features() {
parse_cargo_toml "$1"
echo
printf "%s โ available build features\n" "$(bold "ZeroClaw v${VERSION}")"
echo
printf " %s\n" "$(bold "Default") (included unless --minimal):"
printf " %s\n" "$DEFAULT_FEATURES"
echo
channels="" observability="" platform="" other=""
for feat in $ALL_FEATURES; do
case "$feat" in
default|ci-all|fantoccini|landlock|metrics) continue ;;
channel-*) channels="${channels:+$channels, }$feat" ;;
observability-*) observability="${observability:+$observability, }$feat" ;;
hardware|peripheral-*|sandbox-*|browser-*|probe|rag-pdf|webauthn)
platform="${platform:+$platform, }$feat" ;;
*) other="${other:+$other, }$feat" ;;
esac
done
[ -n "$channels" ] && printf " %s\n %s\n\n" "$(bold "Channels:")" "$channels"
[ -n "$observability" ] && printf " %s\n %s\n\n" "$(bold "Observability:")" "$observability"
[ -n "$platform" ] && printf " %s\n %s\n\n" "$(bold "Platform:")" "$platform"
[ -n "$other" ] && printf " %s\n %s\n\n" "$(bold "Other:")" "$other"
printf " %s\n" "$(bold "Build profiles:")"
printf " %s # full (default features)\n" "$0"
printf " %s --minimal # kernel only (~6.6MB)\n" "$0"
printf " %s --minimal --features agent-runtime,channel-discord\n" "$0"
echo
}
# โโ Version comparison โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
version_gte() {
# Returns 0 if $1 >= $2 (dot-separated version strings)
local IFS=.
set -- $1 $2
local a1="${1:-0}" a2="${2:-0}" a3="${3:-0}"
shift 3 2>/dev/null || shift $#
local b1="${1:-0}" b2="${2:-0}" b3="${3:-0}"
[ "$a1" -gt "$b1" ] 2>/dev/null && return 0
[ "$a1" -lt "$b1" ] 2>/dev/null && return 1
[ "$a2" -gt "$b2" ] 2>/dev/null && return 0
[ "$a2" -lt "$b2" ] 2>/dev/null && return 1
[ "$a3" -gt "$b3" ] 2>/dev/null && return 0
[ "$a3" -lt "$b3" ] 2>/dev/null && return 1
return 0
}
# โโ Detect user's shell โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
detect_shell_profile() {
local shell_name
shell_name=$(basename "${SHELL:-/bin/bash}")
case "$shell_name" in
zsh) echo "$HOME/.zshrc" ;;
fish) echo "$HOME/.config/fish/config.fish" ;;
*) echo "$HOME/.bashrc" ;;
esac
}
shell_export_syntax() {
local shell_name
shell_name=$(basename "${SHELL:-/bin/bash}")
case "$shell_name" in
fish) printf 'set -gx PATH "%s/bin" $PATH' "$CARGO_HOME" ;;
*) printf 'export PATH="%s/bin:$PATH"' "$CARGO_HOME" ;;
esac
}
# โโ Usage โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
usage() {
cat <<EOF
$(bold "ZeroClaw installer") โ build and install from source
Usage: $0 [options]
Options:
--minimal Build kernel only (config + providers + memory, ~6.6MB)
--features X,Y Select specific features (comma-separated)
--list-features Print all available features and exit
--prefix PATH Install everything under PATH (default: \$HOME)
Sets CARGO_HOME, RUSTUP_HOME, source checkout, config
--dry-run Show what would happen without building or installing
--skip-onboard Skip the setup wizard after install
--uninstall Remove ZeroClaw binary and optionally config/data
-h, --help Show this help
-V, --version Show version from Cargo.toml
Examples:
$0 # full install (interactive)
$0 --minimal # smallest possible binary
$0 --features agent-runtime,channel-discord # custom feature set
$0 --skip-onboard # build only, configure later
$0 --prefix /tmp/zc-test --skip-onboard # isolated test install
$0 --dry-run --minimal # preview without building
$0 --uninstall # remove ZeroClaw
Environment:
ZEROCLAW_INSTALL_DIR Source checkout override (default: PREFIX/.zeroclaw/src)
ZEROCLAW_CARGO_FEATURES Extra cargo features (legacy; prefer --features)
EOF
}
# โโ Uninstall โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
do_uninstall() {
echo
printf "%s\n" "$(bold "Uninstalling ZeroClaw")"
echo
local bin="$CARGO_HOME/bin/zeroclaw"
if [ -f "$bin" ]; then
"$bin" service stop 2>/dev/null || true
"$bin" service uninstall 2>/dev/null || true
rm -f "$bin"
info "Removed $bin"
else
warn "Binary not found at $bin"
fi
local config_dir="$PREFIX/.zeroclaw"
if [ -d "$config_dir" ]; then
if [ -t 0 ]; then
printf " Remove config and data (%s)? [y/N] " "$config_dir"
read confirm
case "$confirm" in
[Yy]*) rm -rf "$config_dir"; info "Removed $config_dir" ;;
*) info "Config preserved at $config_dir" ;;
esac
else
info "Config preserved at $config_dir (non-interactive โ use rm -rf to remove)"
fi
fi
# Check if another zeroclaw still lurks in PATH
local other_bin
other_bin=$(PATH="$ORIGINAL_PATH" command -v zeroclaw 2>/dev/null || true)
if [ -n "$other_bin" ]; then
local other_version
other_version=$("$other_bin" --version 2>/dev/null | awk '{print $NF}' || echo "unknown")
echo
warn "Another zeroclaw found at $other_bin (v$other_version)"
warn "Remove it manually if you want a full uninstall"
fi
echo
info "ZeroClaw uninstalled"
exit 0
}
# โโ Parse arguments โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
MINIMAL=false
USER_FEATURES=""
SKIP_ONBOARD=false
LIST_FEATURES=false
UNINSTALL=false
DRY_RUN=false
PREFIX="$HOME"
# Support legacy env var
if [ -n "${ZEROCLAW_CARGO_FEATURES:-}" ]; then
USER_FEATURES="${USER_FEATURES:+$USER_FEATURES,}$ZEROCLAW_CARGO_FEATURES"
fi
while [ $# -gt 0 ]; do
case "$1" in
--minimal) MINIMAL=true ;;
--features)
if [ $# -lt 2 ]; then
die "Missing value for --features. Expected: --features X,Y"
fi
shift; USER_FEATURES="${USER_FEATURES:+$USER_FEATURES,}$1" ;;
--list-features) LIST_FEATURES=true ;;
--prefix)
if [ $# -lt 2 ]; then
die "Missing value for --prefix. Expected: --prefix /path"
fi
shift; PREFIX=$(echo "$1" | sed 's|/*$||') ;;
--dry-run) DRY_RUN=true ;;
--skip-onboard) SKIP_ONBOARD=true ;;
--uninstall) UNINSTALL=true ;;
-h|--help) usage; exit 0 ;;
-V|--version)
if [ -f "Cargo.toml" ]; then
parse_cargo_toml "Cargo.toml"
echo "install.sh for ZeroClaw v$VERSION"
else
echo "install.sh (version unknown โ not in repo)"
fi
exit 0 ;;
*) die "Unknown option: $1. Run: $0 --help" ;;
esac
shift
done
# โโ Derive paths from prefix โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
CARGO_HOME="${CARGO_HOME:-$PREFIX/.cargo}"
RUSTUP_HOME="${RUSTUP_HOME:-$PREFIX/.rustup}"
INSTALL_DIR="${ZEROCLAW_INSTALL_DIR:-$PREFIX/.zeroclaw/src}"
ORIGINAL_PATH="$PATH"
PATH="$CARGO_HOME/bin:$PATH"
export CARGO_HOME RUSTUP_HOME PATH
[ "$UNINSTALL" = true ] && do_uninstall
# โโ List features (can run without cloning if in repo) โโโโโโโโโโโโ
if [ "$LIST_FEATURES" = true ]; then
if [ -f "Cargo.toml" ]; then
list_features "Cargo.toml"
elif [ -f "$INSTALL_DIR/Cargo.toml" ]; then
list_features "$INSTALL_DIR/Cargo.toml"
else
die "No Cargo.toml found. Clone the repo first or run from the repo root."
fi
exit 0
fi
# โโ Locate source โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
echo
printf "%s\n" "$(bold "ZeroClaw โ source install")"
if [ "$PREFIX" != "$HOME" ]; then
printf " prefix: %s\n" "$(bold "$PREFIX")"
fi
echo
if [ -f "Cargo.toml" ] && grep -q "zeroclaw" "Cargo.toml" 2>/dev/null; then
INSTALL_DIR="$(pwd)"
info "Building from $(pwd)"
elif [ -d "$INSTALL_DIR/.git" ]; then
info "Updating source in $INSTALL_DIR"
git -C "$INSTALL_DIR" pull --ff-only --quiet 2>/dev/null || {
warn "Fast-forward pull failed โ resetting to origin/master"
git -C "$INSTALL_DIR" fetch origin master --quiet
git -C "$INSTALL_DIR" reset --hard origin/master --quiet
}
cd "$INSTALL_DIR"
else
info "Cloning into $INSTALL_DIR"
mkdir -p "$(dirname "$INSTALL_DIR")"
git clone --depth 1 "$REPO_URL" "$INSTALL_DIR"
cd "$INSTALL_DIR"
fi
# โโ Parse Cargo.toml โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
parse_cargo_toml "Cargo.toml"
printf " Version: %s (MSRV: %s, edition: %s)\n" "$(bold "$VERSION")" "$MSRV" "$EDITION"
# โโ Preflight: Rust โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
NEED_RUST=false
if ! command -v rustc >/dev/null 2>&1 || ! command -v cargo >/dev/null 2>&1; then
NEED_RUST=true
elif [ "$PREFIX" != "$HOME" ] && [ ! -d "$RUSTUP_HOME/toolchains" ]; then
NEED_RUST=true
fi
if [ "$NEED_RUST" = true ]; then
if [ "$DRY_RUN" = true ]; then
warn "[dry-run] Would install Rust via rustup into $RUSTUP_HOME"
else
warn "Installing Rust via rustup into $CARGO_HOME"
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \
--no-modify-path --default-toolchain stable
. "$CARGO_HOME/env"
fi
fi
if [ "$DRY_RUN" != true ]; then
RUST_VERSION=$(rustc --version | awk '{print $2}')
if ! version_gte "$RUST_VERSION" "$MSRV"; then
die "Rust $RUST_VERSION is too old. ZeroClaw requires $MSRV+ (edition $EDITION). Run: rustup update stable"
fi
info "Rust $RUST_VERSION (>= $MSRV)"
fi
# โโ Preflight: 32-bit ARM โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
case "$(uname -m)" in
armv7l|armv6l|armhf)
die "32-bit ARM detected โ the default feature 'observability-prometheus'
requires 64-bit atomics and will not compile on this architecture.
Example (full agent without prometheus):
$0 --minimal --features agent-runtime,schema-export
See all available features:
$0 --list-features"
;;
esac
# โโ Build feature flags โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
CARGO_FLAGS=""
if [ "$MINIMAL" = true ]; then
CARGO_FLAGS="--no-default-features"
fi
if [ -n "$USER_FEATURES" ]; then
# Normalize: treat commas, spaces, tabs as delimiters; deduplicate; trim empty
USER_FEATURES=$(printf '%s' "$USER_FEATURES" | tr ',[:space:]' '\n' | grep -v '^$' | sort -u | paste -sd, - || true)
if [ -n "$USER_FEATURES" ]; then
# Validate each feature
OLD_IFS="$IFS"
IFS=','
for feat in $USER_FEATURES; do
[ -n "$feat" ] && validate_feature "$feat"
done
IFS="$OLD_IFS"
CARGO_FLAGS="$CARGO_FLAGS --features $USER_FEATURES"
fi
fi
# โโ Detect existing installs โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
PATH_BIN=$(PATH="$ORIGINAL_PATH" command -v zeroclaw 2>/dev/null || true)
if [ -n "$PATH_BIN" ]; then
PATH_VERSION=$("$PATH_BIN" --version 2>/dev/null | awk '{print $NF}' || echo "unknown")
TARGET_BIN="$CARGO_HOME/bin/zeroclaw"
if [ "$PATH_BIN" != "$TARGET_BIN" ]; then
warn "zeroclaw found at $PATH_BIN (v$PATH_VERSION)"
warn "This install targets $TARGET_BIN"
warn "The old binary will shadow the new one unless removed or PATH is reordered"
else
warn "Existing install: $PATH_BIN (v$PATH_VERSION)"
fi
if [ "$MINIMAL" = true ] && [ "$DRY_RUN" != true ]; then
if [ -t 0 ]; then
printf " --minimal will produce a reduced binary (no agent runtime by default). Continue? [Y/n] "
read confirm
case "$confirm" in
[Nn]*) echo "Aborted."; exit 0 ;;
esac
fi
fi
fi
# โโ Dry run โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if [ "$DRY_RUN" = true ]; then
echo
printf "%s\n" "$(bold "Dry run โ nothing will be built or installed")"
echo
info "Source: $INSTALL_DIR"
info "Binary: $CARGO_HOME/bin/zeroclaw"
info "Config: $PREFIX/.zeroclaw/"
info "Rust: $CARGO_HOME (CARGO_HOME), $RUSTUP_HOME (RUSTUP_HOME)"
echo
if [ -n "$CARGO_FLAGS" ]; then
info "cargo install --path . --locked --force $CARGO_FLAGS"
else
info "cargo install --path . --locked --force"
fi
EXPORT_LINE=$(shell_export_syntax)
PROFILE=$(detect_shell_profile)
echo
printf " %s (%s):\n" "$(bold "Shell profile")" "$PROFILE"
printf " %s\n" "$EXPORT_LINE"
echo
exit 0
fi
# โโ Build and install โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
echo
printf "%s\n" "$(bold "Building ZeroClaw v$VERSION")"
if [ -n "$CARGO_FLAGS" ]; then
info "Feature flags: $CARGO_FLAGS"
else
info "Feature flags: (defaults)"
fi
echo
# shellcheck disable=SC2086
cargo install --path . --locked --force $CARGO_FLAGS
# โโ Summary โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
BIN="$CARGO_HOME/bin/zeroclaw"
if [ -f "$BIN" ]; then
SIZE=$(du -h "$BIN" | awk '{print $1}')
NEW_VERSION=$("$BIN" --version 2>/dev/null | awk '{print $NF}' || echo "$VERSION")
echo
info "Installed: $BIN (v$NEW_VERSION, $SIZE)"
ACTIVE_BIN=$(PATH="$ORIGINAL_PATH" command -v zeroclaw 2>/dev/null || true)
if [ -n "$ACTIVE_BIN" ] && [ "$ACTIVE_BIN" != "$BIN" ]; then
ACTIVE_VERSION=$("$ACTIVE_BIN" --version 2>/dev/null | awk '{print $NF}' || echo "unknown")
echo
warn "$(bold "WARNING:") zeroclaw in your PATH is $ACTIVE_BIN (v$ACTIVE_VERSION)"
warn "It will shadow the v$NEW_VERSION binary you just installed at $BIN"
warn "Fix: remove the old binary or put $CARGO_HOME/bin earlier in your PATH"
fi
else
warn "Binary not found at expected path: $BIN"
fi
# โโ PATH guidance โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
PROFILE=$(detect_shell_profile)
EXPORT_LINE=$(shell_export_syntax)
SHOW_PATH_HELP=false
if [ "$PREFIX" != "$HOME" ]; then
SHOW_PATH_HELP=true
elif [ -f "$PROFILE" ] && ! grep -q "$CARGO_HOME/bin" "$PROFILE" 2>/dev/null; then
SHOW_PATH_HELP=true
elif [ ! -f "$PROFILE" ]; then
SHOW_PATH_HELP=true
fi
if [ "$SHOW_PATH_HELP" = true ]; then
echo
printf " %s (%s):\n" "$(bold "Add to your shell profile")" "$PROFILE"
echo
printf " %s\n" "$EXPORT_LINE"
echo
printf " Then reload:\n"
echo
printf " source %s\n" "$PROFILE"
echo
fi
# โโ Onboard โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if [ "$SKIP_ONBOARD" = false ] && [ -f "$BIN" ]; then
if [ -t 0 ]; then
echo
printf "%s\n" "$(bold "Running setup wizard...")"
echo
"$BIN" onboard || warn "Onboard wizard exited with an error โ run 'zeroclaw onboard' manually"
else
info "Non-interactive โ skipping onboard wizard. Run 'zeroclaw onboard' to configure."
fi
fi
echo
info "Done. Run $(bold "zeroclaw agent") to start chatting."
echo