From 2e4481fc268efaca69f9fa3c5d87e60eaba9a7b7 Mon Sep 17 00:00:00 2001 From: Dotta Date: Tue, 3 Mar 2026 13:10:06 -0600 Subject: [PATCH] Fix onboarding duplicate wake run and set 1h CEO heartbeat --- ui/src/components/OnboardingWizard.tsx | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/ui/src/components/OnboardingWizard.tsx b/ui/src/components/OnboardingWizard.tsx index 51ac157a..3848587a 100644 --- a/ui/src/components/OnboardingWizard.tsx +++ b/ui/src/components/OnboardingWizard.tsx @@ -292,7 +292,7 @@ export function OnboardingWizard() { runtimeConfig: { heartbeat: { enabled: true, - intervalSec: 300, + intervalSec: 3600, wakeOnDemand: true, cooldownSec: 10, maxConcurrentRuns: 1 @@ -340,11 +340,6 @@ export function OnboardingWizard() { if (!createdAgentId) return; setLoading(true); setError(null); - try { - await agentsApi.invoke(createdAgentId); - } catch { - // Agent may already be running from auto-wake — that's fine - } setLoading(false); reset(); closeOnboarding(); @@ -797,8 +792,8 @@ export function OnboardingWizard() {

Ready to launch

- Everything is set up. Launch your agent and watch it - work. + Everything is set up. Your assigned task already woke + the agent, so you can jump straight to the issue.

@@ -911,9 +906,9 @@ export function OnboardingWizard() { {loading ? ( ) : ( - + )} - {loading ? "Launching..." : "Launch Agent"} + {loading ? "Opening..." : "Open Issue"} )}