()
| 3 | import type { PostUserMessageFn } from '../types/contracts/send-message' |
| 4 | |
| 5 | export async function handleHelpCommand(): Promise<{ |
| 6 | postUserMessage: PostUserMessageFn |
| 7 | }> { |
| 8 | // Show the help banner with keyboard shortcuts |
| 9 | useChatStore.getState().setInputMode('help') |
| 10 | |
| 11 | const postUserMessage: PostUserMessageFn = (prev) => prev |
| 12 | return { postUserMessage } |
| 13 | } |