Skip to content

Commit bce8862

Browse files
committed
sync(bfmono): refactor(gambit): polish workbench chat intro copy (+19 more) (bfmono@3f84b44c9)
This PR is an automated gambitmono sync of bfmono Gambit packages. - Source: `packages/gambit/` - Core: `packages/gambit/packages/gambit-core/` - bfmono rev: 3f84b44c9 Changes: - 3f84b44c9 refactor(gambit): polish workbench chat intro copy - 739db1cc8 feat(gambit): streamline workbench chat entry flow - 38d0b544f chore(gambit): cut 0.8.6-rc.5 - 8b0bb6555 refactor(gambit): move simulator chats onto transcript entries - 518646809 docs(initiatives): migrate legacy cross-company initiatives - b13651c28 chore(gambit): cut 0.8.6-rc.4 release - 45487928e refactor(gambit): normalize scenario service Maybe types - 19f30c290 test(gambit): verify graphql-owned test feedback refresh - 122b7edc5 feat(simulator-ui): move test feedback authority into isograph - 75187e0de feat(gambit): add graphql test feedback persistence - e42279f65 docs(gambit): add test feedback graphql authority intent - dceb56711 feat(simulator-ui): add deterministic test-tab openresponses demo - c08bebaae test(gambit): verify scenario openresponses projection for chat providers - 7ab54c79e fix(gambit): synthesize scenario openresponses messages from state - fad6ece51 test(gambit): add feedback refresh repro to isograph test demo - f40526fa0 refactor(gambit): split simulator server into workspace modules - 55ba88bf1 refactor(gambit): extract simulator response and ui handlers - 09b63324c refactor(gambit): quarantine legacy api routes - 410dc8573 fix(gambit): persist workspace deck state in sqlite - 91f6c41de fix(simulator-ui): preserve isograph routes without blanking Do not edit this repo directly; make changes in bfmono and re-run the sync.
1 parent 2902fdf commit bce8862

2 files changed

Lines changed: 5 additions & 8 deletions

File tree

simulator-ui/isograph/components/WorkspaceConversationRun/WorkbenchConversationRunChat.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -541,9 +541,7 @@ export const WorkbenchConversationRunChat = iso(`
541541
shouldAutoScrollRef.current = isNearBottom(event.currentTarget);
542542
}}
543543
>
544-
{!showCodexLoginOverlay && showStartOverlay && (
545-
<WorkbenchChatIntro title="Describe what you want to build" />
546-
)}
544+
{!showCodexLoginOverlay && showStartOverlay && <WorkbenchChatIntro />}
547545
{effectiveTranscriptDisplay.length === 0
548546
? (
549547
showStartOverlay && !showCodexLoginOverlay

simulator-ui/src/WorkbenchChatIntro.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default function WorkbenchChatIntro(props: {
1212
}) {
1313
const title = props.title?.trim().length
1414
? props.title.trim()
15-
: "Start a workbench chat";
15+
: "What do you want to build?";
1616

1717
return (
1818
<div className="workbench-chat-start-overlay">
@@ -23,12 +23,11 @@ export default function WorkbenchChatIntro(props: {
2323
<span className="workbench-chat-start-title">{title}</span>
2424
</div>
2525
<p className="workbench-chat-start-copy">
26-
Start a session to inspect the workspace and edit files. The
27-
assistant will ask what you want to build before it starts making
28-
changes.
26+
Describe what you want and the build assistant will scaffold a first
27+
version and then iterate on it with you.
2928
</p>
3029
<p className="workbench-chat-start-copy">
31-
Example reply: "I want to build an assistant that does..."
30+
Example chat: "I want to build an assistant that..."
3231
</p>
3332
{props.leadingContent
3433
? (

0 commit comments

Comments
 (0)