Skip to content

Commit 0cf182b

Browse files
committed
Tweak help menu
1 parent 177d3c1 commit 0cf182b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

cli/src/components/help-banner.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ export const HelpBanner = () => {
3838
const theme = useTheme()
3939
const { data: subscriptionData } = useSubscriptionQuery()
4040
const hasSubscription = subscriptionData?.hasSubscription ?? false
41+
const chatGptOAuth = getChatGptOAuthStatus()
4142

4243
// Auto-hide after timeout
4344
React.useEffect(() => {
@@ -79,11 +80,16 @@ export const HelpBanner = () => {
7980
<box style={{ flexDirection: 'column', gap: 0 }}>
8081
<SectionHeader>Tips</SectionHeader>
8182
<box style={{ flexDirection: 'column', paddingLeft: 2 }}>
82-
{IS_FREEBUFF && !getChatGptOAuthStatus().connected && (
83+
{IS_FREEBUFF && !chatGptOAuth.connected && (
8384
<text style={{ fg: theme.muted }}>
8485
Connect via /connect to unlock /plan & /review
8586
</text>
8687
)}
88+
{IS_FREEBUFF && chatGptOAuth.connected && (
89+
<text style={{ fg: theme.muted }}>
90+
Try workflow: /interview → /plan → implement → /review
91+
</text>
92+
)}
8793
<text style={{ fg: theme.muted }}>
8894
Use @ to reference agents to spawn or files to read
8995
</text>

0 commit comments

Comments
 (0)