Skip to content

Commit f9860b7

Browse files
fix(honesty): future-tense autonomy overclaims
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent edb3f3e commit f9860b7

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

app/(shell)/focus/FocusModeClient.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1840,7 +1840,7 @@ function DoneScreen({ copy, approvedCount, approvedValueCents, queuedCount, life
18401840
{/* Next morning preview */}
18411841
<div className="w-full max-w-sm mb-6 rounded-lg border border-stone-800/60 bg-stone-800/20 px-4 py-3 text-center">
18421842
<p className="text-xs text-stone-400">
1843-
Your AI team scans overnight. New actions arrive by{" "}
1843+
Your AI team prepares overnight. New actions arrive by{" "}
18441844
<span className="font-medium text-stone-300">7:00 AM tomorrow</span>.
18451845
</p>
18461846
</div>

app/(shell)/focus/SmartInsight.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ function generateInsights(
104104
if (insights.length === 0 && actions.length > 0) {
105105
insights.push({
106106
icon: <Star className="h-3.5 w-3.5" />,
107-
text: "Your AI team scanned overnight and found these opportunities for you",
107+
text: "Your AI team prepared these client follow-ups for your approval",
108108
accent: "stone",
109109
});
110110
}

components/dashboard/DailyPulse.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { AUTONOMY_BUYER_NAMES, type AutonomyLevel } from "@/lib/autonomy/graduat
1313
*/
1414
const MOCK_AUTONOMY_SUMMARY = {
1515
toApprove: 3,
16-
ranOvernight: 2,
16+
preparedOvernight: 2,
1717
watching: 5,
1818
};
1919

@@ -88,7 +88,7 @@ export function DailyPulse() {
8888

8989
<div className="relative z-10 mb-3 flex flex-wrap items-center gap-2 rounded-md border border-emerald-500/20 bg-emerald-500/10 px-3 py-2 text-xs text-emerald-200">
9090
<Activity size={14} className="shrink-0" />
91-
<span>Today: {MOCK_AUTONOMY_SUMMARY.toApprove} to approve · {MOCK_AUTONOMY_SUMMARY.ranOvernight} ran overnight ·</span>
91+
<span>Today: {MOCK_AUTONOMY_SUMMARY.toApprove} to approve · {MOCK_AUTONOMY_SUMMARY.preparedOvernight} prepared overnight ·</span>
9292
<Link href="/settings" className="font-semibold underline decoration-emerald-400/60 underline-offset-2 hover:text-emerald-100">
9393
{MOCK_AUTONOMY_SUMMARY.watching} watching
9494
</Link>

components/dashboard/MorningBriefCard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ export function MorningBriefCard({ heldActions = 0 }: MorningBriefCardProps) {
354354
<div className="min-w-0 flex-1">
355355
<div className="flex flex-wrap items-center gap-2">
356356
<span className="inline-flex items-center rounded-full border border-emerald-500/30 bg-emerald-500/10 px-2 py-0.5 text-[10px] font-bold text-emerald-300">
357-
Ran overnight
357+
Prepared overnight
358358
</span>
359359
<span className="inline-flex items-center rounded-full border border-(--border-default) bg-stone-800/50 px-2 py-0.5 text-[10px] font-medium text-(--text-secondary)">
360360
{AUTONOMY_BUYER_NAMES[autonomyLevel]}
@@ -365,7 +365,7 @@ export function MorningBriefCard({ heldActions = 0 }: MorningBriefCardProps) {
365365
</span>
366366
)}
367367
</div>
368-
<p className={cn("mt-2 font-medium text-emerald-300", isCompact ? "text-[11px]" : "text-xs")}>Ran overnight. Tap to review</p>
368+
<p className={cn("mt-2 font-medium text-emerald-300", isCompact ? "text-[11px]" : "text-xs")}>Prepared overnight. Tap to review</p>
369369
<p className={cn(signalCopyClassName, "mt-2")}>{signal.text}</p>
370370
<div className="mt-3 flex flex-col gap-2 sm:flex-row sm:flex-wrap">
371371
<Link

components/onboarding/WelcomeTour.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const TOUR_STEPS = [
2828
{
2929
title: "Win Back Board",
3030
desc: "Every client at risk of leaving, every open slot to fill, every review opportunity — all in one place.",
31-
feature: "AI scans overnight while you sleep",
31+
feature: "AI prepares your next actions overnight",
3232
},
3333
{
3434
title: "Smart Actions",

0 commit comments

Comments
 (0)