mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-16 05:03:26 +00:00
feat: add terminal input hook for extensions
This commit is contained in:
parent
6da488a5aa
commit
30fd99bd82
7 changed files with 47 additions and 0 deletions
|
|
@ -144,6 +144,11 @@ export async function runRpcMode(session: AgentSession): Promise<never> {
|
|||
} as RpcExtensionUIRequest);
|
||||
},
|
||||
|
||||
onTerminalInput(): () => void {
|
||||
// Raw terminal input not supported in RPC mode
|
||||
return () => {};
|
||||
},
|
||||
|
||||
setStatus(key: string, text: string | undefined): void {
|
||||
// Fire and forget - no response needed
|
||||
output({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue