From 2844aaa44a4cb389ef29ebf6de4c5d0e6cc64101 Mon Sep 17 00:00:00 2001 From: Teodor Calin Date: Wed, 22 Jul 2026 09:02:15 +0300 Subject: [PATCH] rebrand residue: install.sh examples use pilot-mom; fix stale flag help defaults MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - install.sh post-install examples taught pilot-director (dead hostname) - cmd/daemon flag help claimed keepalive 'default 30s' (actual 60s, daemon.go DefaultKeepaliveInterval) and max-conns-total 'default 4096' (actual 65536) — docs were right, help strings were stale Co-Authored-By: Claude Opus 4.8 --- cmd/daemon/main.go | 4 ++-- install.sh | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/cmd/daemon/main.go b/cmd/daemon/main.go index 0d84a85e..45afa015 100644 --- a/cmd/daemon/main.go +++ b/cmd/daemon/main.go @@ -69,11 +69,11 @@ func main() { identityPath := flag.String("identity", "", "path to persist Ed25519 identity (enables stable identity across restarts)") email := flag.String("email", "", "email address for account identification and key recovery") owner := flag.String("owner", "", "(deprecated: use -email) owner identifier for key rotation recovery") - keepalive := flag.Duration("keepalive", 0, "keepalive probe interval (default 30s)") + keepalive := flag.Duration("keepalive", 0, "keepalive probe interval (default 60s)") idleTimeout := flag.Duration("idle-timeout", 0, "idle connection timeout (default 120s)") synRate := flag.Int("syn-rate-limit", 0, "max SYN packets per second (default 100)") maxConnsPerPort := flag.Int("max-conns-per-port", 0, "max connections per port (default 1024)") - maxConnsTotal := flag.Int("max-conns-total", 0, "max total connections (default 4096)") + maxConnsTotal := flag.Int("max-conns-total", 0, "max total connections (default 65536)") // PILOT-343/344/345 rate-limit whitelists. Comma-separated trusted-peer // node IDs (decimal uint32). Env fallbacks let deployments configure // without editing flag strings. Empty default preserves backwards diff --git a/install.sh b/install.sh index 9601dda7..77276855 100755 --- a/install.sh +++ b/install.sh @@ -735,13 +735,13 @@ cat <<'PILOT_GET_STARTED' Describe the whole task in plain English; it picks the specialist agents + filters and returns a validated, ready-to-run plan. ------------------------------------------------------------------ - pilotctl send-message pilot-director --data 'current weather and air quality for Berlin' --wait + pilotctl send-message pilot-mom --data 'current weather and air quality for Berlin' --wait jq -r '.data' "$(ls -1t ~/.pilot/inbox/*.json | head -1)" # More examples — hand it the whole sentence, don't hunt for agents yourself: - pilotctl send-message pilot-director --data 'summarize this season F1 drivers' --wait - pilotctl send-message pilot-director --data 'latest CVEs for nginx' --wait - pilotctl send-message pilot-director --data "what's BTC at right now in USD" --wait + pilotctl send-message pilot-mom --data 'summarize this season F1 drivers' --wait + pilotctl send-message pilot-mom --data 'latest CVEs for nginx' --wait + pilotctl send-message pilot-mom --data "what's BTC at right now in USD" --wait 2) DISCOVER SERVICE AGENTS — when you already know the specialist you want.