feat: add web search, file edit, MCP management, file refs, and /stop to CLI/TUI (#348)
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/push/publish Pipeline was successful

This commit was merged in pull request #348.
This commit is contained in:
2026-04-02 18:08:30 +00:00
parent ea371d760d
commit 0d12471868
15 changed files with 1162 additions and 4 deletions

View File

@@ -99,6 +99,11 @@ export interface SetThinkingPayload {
level: string;
}
/** Client request to abort the current agent operation */
export interface AbortPayload {
conversationId: string;
}
/** Socket.IO typed event map: server → client */
export interface ServerToClientEvents {
'message:ack': (payload: MessageAckPayload) => void;
@@ -120,4 +125,5 @@ export interface ClientToServerEvents {
message: (data: ChatMessagePayload) => void;
'set:thinking': (data: SetThinkingPayload) => void;
'command:execute': (data: SlashCommandPayload) => void;
abort: (data: AbortPayload) => void;
}

View File

@@ -11,6 +11,7 @@ export type {
SessionInfoPayload,
RoutingDecisionInfo,
SetThinkingPayload,
AbortPayload,
ErrorPayload,
ChatMessagePayload,
ServerToClientEvents,