From c3aa6f2a200f0739f93d6271a46a53de4c3601fc Mon Sep 17 00:00:00 2001 From: Copilot <223556219+Copilot@users.noreply.github.com> Date: Thu, 25 Jun 2026 13:49:11 -0400 Subject: [PATCH 1/2] fix(honesty): future-tense autonomy overclaims Replace completed-autonomy language on proof=0 surfaces with honest prepared/prepares copy while preserving the owner-approval promise. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- app/(shell)/focus/FocusModeClient.tsx | 2 +- app/(shell)/focus/SmartInsight.tsx | 2 +- components/dashboard/DailyPulse.tsx | 4 ++-- components/dashboard/MorningBriefCard.tsx | 4 ++-- components/onboarding/WelcomeTour.tsx | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/(shell)/focus/FocusModeClient.tsx b/app/(shell)/focus/FocusModeClient.tsx index dee4cd041..54b3f5d8d 100644 --- a/app/(shell)/focus/FocusModeClient.tsx +++ b/app/(shell)/focus/FocusModeClient.tsx @@ -1840,7 +1840,7 @@ function DoneScreen({ copy, approvedCount, approvedValueCents, queuedCount, life {/* Next morning preview */}

- Your AI team scans overnight. New actions arrive by{" "} + Your AI team prepares overnight. New actions arrive by{" "} 7:00 AM tomorrow.

diff --git a/app/(shell)/focus/SmartInsight.tsx b/app/(shell)/focus/SmartInsight.tsx index ed77d602e..4c69303fb 100644 --- a/app/(shell)/focus/SmartInsight.tsx +++ b/app/(shell)/focus/SmartInsight.tsx @@ -104,7 +104,7 @@ function generateInsights( if (insights.length === 0 && actions.length > 0) { insights.push({ icon: , - text: "Your AI team scanned overnight and found these opportunities for you", + text: "Your AI team reviewed your clients overnight and surfaced these for your approval", accent: "stone", }); } diff --git a/components/dashboard/DailyPulse.tsx b/components/dashboard/DailyPulse.tsx index 93638b5aa..1f760fc60 100644 --- a/components/dashboard/DailyPulse.tsx +++ b/components/dashboard/DailyPulse.tsx @@ -13,7 +13,7 @@ import { AUTONOMY_BUYER_NAMES, type AutonomyLevel } from "@/lib/autonomy/graduat */ const MOCK_AUTONOMY_SUMMARY = { toApprove: 3, - ranOvernight: 2, + preparedOvernight: 2, watching: 5, }; @@ -88,7 +88,7 @@ export function DailyPulse() {
- Today: {MOCK_AUTONOMY_SUMMARY.toApprove} to approve · {MOCK_AUTONOMY_SUMMARY.ranOvernight} ran overnight · + Today: {MOCK_AUTONOMY_SUMMARY.toApprove} to approve · {MOCK_AUTONOMY_SUMMARY.preparedOvernight} prepared overnight · {MOCK_AUTONOMY_SUMMARY.watching} watching diff --git a/components/dashboard/MorningBriefCard.tsx b/components/dashboard/MorningBriefCard.tsx index c5a1b5275..3c1c3f7c2 100644 --- a/components/dashboard/MorningBriefCard.tsx +++ b/components/dashboard/MorningBriefCard.tsx @@ -354,7 +354,7 @@ export function MorningBriefCard({ heldActions = 0 }: MorningBriefCardProps) {
- Ran overnight + Prepared overnight {AUTONOMY_BUYER_NAMES[autonomyLevel]} @@ -365,7 +365,7 @@ export function MorningBriefCard({ heldActions = 0 }: MorningBriefCardProps) { )}
-

Ran overnight. Tap to review

+

Prepared overnight. Tap to review

{signal.text}

Date: Thu, 25 Jun 2026 13:59:08 -0400 Subject: [PATCH 2/2] fix(honesty): remove remaining overnight review claim Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- app/(shell)/focus/SmartInsight.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/(shell)/focus/SmartInsight.tsx b/app/(shell)/focus/SmartInsight.tsx index 4c69303fb..bcb40c78d 100644 --- a/app/(shell)/focus/SmartInsight.tsx +++ b/app/(shell)/focus/SmartInsight.tsx @@ -104,7 +104,7 @@ function generateInsights( if (insights.length === 0 && actions.length > 0) { insights.push({ icon: , - text: "Your AI team reviewed your clients overnight and surfaced these for your approval", + text: "Your AI team prepared these client follow-ups for your approval", accent: "stone", }); }