diff --git a/frontend/src/app/pages/Workflows/app/ComposeView.tsx b/frontend/src/app/pages/Workflows/app/ComposeView.tsx index 059cd2ef..20eecf58 100644 --- a/frontend/src/app/pages/Workflows/app/ComposeView.tsx +++ b/frontend/src/app/pages/Workflows/app/ComposeView.tsx @@ -14,16 +14,16 @@ import StepsCard from './StepsCard'; import SaveGuard from './SaveGuard'; import type { AppNav } from './types'; -// Starter prompts sent verbatim, so each reads as a real ask the agent can turn -// into steps + a schedule. Spread across personas so most people see one that -// fits: work, money, research, learning, lifestyle, monitoring. -const NEW_CHIPS = [ - 'Summarize my inbox each morning and draft the key replies', - 'Every Sunday, recap my spending, subscriptions, upcoming bills, and any weird charges', - 'Weekly digest of new research and trends in my field', - 'Each morning, teach me something new in five minutes', - 'Friday afternoon, plan my weekend from the weather and what\'s nearby', - 'Watch a webpage and alert me when it changes', +// Short pill label for the clean cluster, plus the richer prompt actually sent +// so the agent gets real detail. Spread across personas (work, money, research, +// lifestyle, monitoring) so most people see one that fits. Keep labels similar +// length so they cluster two-per-row. +const NEW_CHIPS: Array<{ label: string; prompt: string }> = [ + { label: 'Summarize my inbox daily', prompt: 'Each morning, summarize my inbox and draft replies to the important emails.' }, + { label: 'Recap my weekly spending', prompt: 'Every Sunday, recap my spending, subscriptions, upcoming bills, and any weird charges.' }, + { label: 'Digest of news in my field', prompt: 'Each week, give me a digest of the latest news and research in my field.' }, + { label: 'Plan my weekend for me', prompt: 'Friday afternoon, plan my weekend from the weather and what\'s nearby.' }, + { label: 'Watch a webpage for changes', prompt: 'Watch a webpage and alert me when it changes.' }, ]; // Short provisional name from the first message so the workflow isn't "Untitled" @@ -189,9 +189,17 @@ const ComposeView: React.FC<{ nav: AppNav }> = ({ nav }) => {