Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/daemon/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading