File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed
Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { useSubscriptionQuery } from '../hooks/use-subscription-query'
55import { useTheme } from '../hooks/use-theme'
66import { IS_FREEBUFF } from '../utils/constants'
77import { useChatStore } from '../state/chat-store'
8+ import { getChatGptOAuthStatus } from '../utils/chatgpt-oauth'
89
910const HELP_TIMEOUT = 60 * 1000 // 60 seconds
1011
@@ -74,6 +75,24 @@ export const HelpBanner = () => {
7475 </ box >
7576 </ box >
7677
78+ { /* Tips Section */ }
79+ < box style = { { flexDirection : 'column' , gap : 0 } } >
80+ < SectionHeader > Tips</ SectionHeader >
81+ < box style = { { flexDirection : 'column' , paddingLeft : 2 } } >
82+ { IS_FREEBUFF && ! getChatGptOAuthStatus ( ) . connected && (
83+ < text style = { { fg : theme . muted } } >
84+ Connect via /connect to unlock /plan & / review
85+ </ text >
86+ ) }
87+ < text style = { { fg : theme . muted } } >
88+ Use @ to reference agents to spawn or files to read
89+ </ text >
90+ < text style = { { fg : theme . muted } } >
91+ Esc to cancel the current response
92+ </ text >
93+ </ box >
94+ </ box >
95+
7796 { /* Credits Section — hidden in Freebuff */ }
7897 { ! IS_FREEBUFF && (
7998 < box style = { { flexDirection : 'column' , gap : 0 } } >
You can’t perform that action at this time.
0 commit comments