Add web command execution

This commit is contained in:
Federico Jaramillo Martinez
2026-05-07 12:20:26 +02:00
parent bb93c0fef1
commit 8c825c7384
9 changed files with 299 additions and 21 deletions
+11
View File
@@ -49,3 +49,14 @@ export interface ClientFileSuggestion {
path: string;
kind: "tracked" | "untracked" | "other";
}
export interface ClientCommandOption {
value: string;
label: string;
description?: string;
}
export type ClientCommandResult =
| { type: "done"; message?: string; session?: ClientSession }
| { type: "select"; requestId: string; title: string; options: ClientCommandOption[] }
| { type: "unsupported"; message: string };