chore: prep 2026.1.17 and onboard flow

This commit is contained in:
Peter Steinberger
2026-01-17 16:41:25 +00:00
parent 003c6c9ae1
commit 1657525201
2 changed files with 31 additions and 15 deletions

View File

@@ -2,6 +2,11 @@
Docs: https://docs.clawd.bot Docs: https://docs.clawd.bot
## 2026.1.17 (Unreleased)
### Changes
- TBD.
## 2026.1.16-2 ## 2026.1.16-2
### Changes ### Changes

View File

@@ -168,24 +168,33 @@ TRASH
fi fi
} }
select_skip_hooks() {
# Hooks multiselect: pick "Skip for now".
wait_for_log "Enable hooks?" 60 || true
send $'"'"' \r'"'"' 0.6
}
send_local_basic() { send_local_basic() {
# Risk acknowledgement (default is "No"). # Risk acknowledgement (default is "No").
send $'"'"'y\r'"'"' 0.6 send $'"'"'y\r'"'"' 0.6
# Choose local gateway, accept defaults, skip channels/skills/daemon, skip UI. # Choose local gateway, accept defaults, skip channels/skills/daemon, skip UI.
send $'"'"'\r'"'"' 0.5 send $'"'"'\r'"'"' 0.5
select_skip_hooks
} }
send_reset_config_only() { send_reset_config_only() {
# Risk acknowledgement (default is "No"). # Risk acknowledgement (default is "No").
send $'"'"'y\r'"'"' 0.8 send $'"'"'y\r'"'"' 0.8
# Reset config + reuse the local defaults flow. # Select reset flow for existing config.
send $'"'"'\e[B'"'"' 0.3 wait_for_log "Config handling" 40 || true
send $'"'"'\e[B'"'"' 0.3 send $'"'"'\e[B'"'"' 0.3
send $'"'"'\r'"'"' 0.4 send $'"'"'\e[B'"'"' 0.3
send $'"'"'\r'"'"' 0.4 send $'"'"'\r'"'"' 0.4
send "" 1.2 # Reset scope -> Config only (default).
send_local_basic wait_for_log "Reset scope" 40 || true
} send $'"'"'\r'"'"' 0.4
select_skip_hooks
}
send_channels_flow() { send_channels_flow() {
# Configure channels via configure wizard. # Configure channels via configure wizard.
@@ -202,11 +211,13 @@ TRASH
send_skills_flow() { send_skills_flow() {
# Select skills section and skip optional installs. # Select skills section and skip optional installs.
send $'"'"'\r'"'"' 1.2 wait_for_log "Where will the Gateway run?" 40 || true
send "" 1.0 send $'"'"'\r'"'"' 0.8
# Configure skills now? -> No # Configure skills now? -> No
send $'"'"'n\r'"'"' 1.2 wait_for_log "Configure skills now?" 40 || true
send "" 2.0 send $'"'"'n\r'"'"' 0.8
wait_for_log "Configure complete." 40 || true
send "" 0.8
} }
run_case_local_basic() { run_case_local_basic() {