-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathrpc.ts
More file actions
503 lines (462 loc) · 12 KB
/
rpc.ts
File metadata and controls
503 lines (462 loc) · 12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
/**
* AUTO-GENERATED FILE - DO NOT EDIT
* Generated from: api.schema.json
*/
import type { MessageConnection } from "vscode-jsonrpc/node.js";
export interface PingResult {
/**
* Echoed message (or default greeting)
*/
message: string;
/**
* Server timestamp in milliseconds
*/
timestamp: number;
/**
* Server protocol version number
*/
protocolVersion: number;
}
export interface PingParams {
/**
* Optional message to echo back
*/
message?: string;
}
export interface ModelsListResult {
/**
* List of available models with full metadata
*/
models: {
/**
* Model identifier (e.g., "claude-sonnet-4.5")
*/
id: string;
/**
* Display name
*/
name: string;
/**
* Model capabilities and limits
*/
capabilities: {
supports: {
vision?: boolean;
/**
* Whether this model supports reasoning effort configuration
*/
reasoningEffort?: boolean;
};
limits: {
max_prompt_tokens?: number;
max_output_tokens?: number;
max_context_window_tokens: number;
};
};
/**
* Policy state (if applicable)
*/
policy?: {
state: string;
terms: string;
};
/**
* Billing information
*/
billing?: {
multiplier: number;
};
/**
* Supported reasoning effort levels (only present if model supports reasoning effort)
*/
supportedReasoningEfforts?: string[];
/**
* Default reasoning effort level (only present if model supports reasoning effort)
*/
defaultReasoningEffort?: string;
}[];
}
export interface ToolsListResult {
/**
* List of available built-in tools with metadata
*/
tools: {
/**
* Tool identifier (e.g., "bash", "grep", "str_replace_editor")
*/
name: string;
/**
* Optional namespaced name for declarative filtering (e.g., "playwright/navigate" for MCP tools)
*/
namespacedName?: string;
/**
* Description of what the tool does
*/
description: string;
/**
* JSON Schema for the tool's input parameters
*/
parameters?: {
[k: string]: unknown;
};
/**
* Optional instructions for how to use this tool effectively
*/
instructions?: string;
}[];
}
export interface ToolsListParams {
/**
* Optional model ID — when provided, the returned tool list reflects model-specific overrides
*/
model?: string;
}
export interface AccountGetQuotaResult {
/**
* Quota snapshots keyed by type (e.g., chat, completions, premium_interactions)
*/
quotaSnapshots: {
[k: string]: {
/**
* Number of requests included in the entitlement
*/
entitlementRequests: number;
/**
* Number of requests used so far this period
*/
usedRequests: number;
/**
* Percentage of entitlement remaining
*/
remainingPercentage: number;
/**
* Number of overage requests made this period
*/
overage: number;
/**
* Whether pay-per-request usage is allowed when quota is exhausted
*/
overageAllowedWithExhaustedQuota: boolean;
/**
* Date when the quota resets (ISO 8601)
*/
resetDate?: string;
};
};
}
export interface SessionModelGetCurrentResult {
modelId?: string;
}
export interface SessionModelGetCurrentParams {
/**
* Target session identifier
*/
sessionId: string;
}
export interface SessionModelSwitchToResult {
modelId?: string;
}
export interface SessionModelSwitchToParams {
/**
* Target session identifier
*/
sessionId: string;
modelId: string;
}
export interface SessionModeGetResult {
/**
* The current agent mode.
*/
mode: "interactive" | "plan" | "autopilot";
}
export interface SessionModeGetParams {
/**
* Target session identifier
*/
sessionId: string;
}
export interface SessionModeSetResult {
/**
* The agent mode after switching.
*/
mode: "interactive" | "plan" | "autopilot";
}
export interface SessionModeSetParams {
/**
* Target session identifier
*/
sessionId: string;
/**
* The mode to switch to. Valid values: "interactive", "plan", "autopilot".
*/
mode: "interactive" | "plan" | "autopilot";
}
export interface SessionPlanReadResult {
/**
* Whether plan.md exists in the workspace
*/
exists: boolean;
/**
* The content of plan.md, or null if it does not exist
*/
content: string | null;
}
export interface SessionPlanReadParams {
/**
* Target session identifier
*/
sessionId: string;
}
export interface SessionPlanUpdateResult {}
export interface SessionPlanUpdateParams {
/**
* Target session identifier
*/
sessionId: string;
/**
* The new content for plan.md
*/
content: string;
}
export interface SessionPlanDeleteResult {}
export interface SessionPlanDeleteParams {
/**
* Target session identifier
*/
sessionId: string;
}
export interface SessionWorkspaceListFilesResult {
/**
* Relative file paths in the workspace files directory
*/
files: string[];
}
export interface SessionWorkspaceListFilesParams {
/**
* Target session identifier
*/
sessionId: string;
}
export interface SessionWorkspaceReadFileResult {
/**
* File content as a UTF-8 string
*/
content: string;
}
export interface SessionWorkspaceReadFileParams {
/**
* Target session identifier
*/
sessionId: string;
/**
* Relative path within the workspace files directory
*/
path: string;
}
export interface SessionWorkspaceCreateFileResult {}
export interface SessionWorkspaceCreateFileParams {
/**
* Target session identifier
*/
sessionId: string;
/**
* Relative path within the workspace files directory
*/
path: string;
/**
* File content to write as a UTF-8 string
*/
content: string;
}
export interface SessionFleetStartResult {
/**
* Whether fleet mode was successfully activated
*/
started: boolean;
}
export interface SessionFleetStartParams {
/**
* Target session identifier
*/
sessionId: string;
/**
* Optional user prompt to combine with fleet instructions
*/
prompt?: string;
}
export interface SessionAgentListResult {
/**
* Available custom agents
*/
agents: {
/**
* Unique identifier of the custom agent
*/
name: string;
/**
* Human-readable display name
*/
displayName: string;
/**
* Description of the agent's purpose
*/
description: string;
}[];
}
export interface SessionAgentListParams {
/**
* Target session identifier
*/
sessionId: string;
}
export interface SessionAgentGetCurrentResult {
/**
* Currently selected custom agent, or null if using the default agent
*/
agent: {
/**
* Unique identifier of the custom agent
*/
name: string;
/**
* Human-readable display name
*/
displayName: string;
/**
* Description of the agent's purpose
*/
description: string;
} | null;
}
export interface SessionAgentGetCurrentParams {
/**
* Target session identifier
*/
sessionId: string;
}
export interface SessionAgentSelectResult {
/**
* The newly selected custom agent
*/
agent: {
/**
* Unique identifier of the custom agent
*/
name: string;
/**
* Human-readable display name
*/
displayName: string;
/**
* Description of the agent's purpose
*/
description: string;
};
}
export interface SessionAgentSelectParams {
/**
* Target session identifier
*/
sessionId: string;
/**
* Name of the custom agent to select
*/
name: string;
}
export interface SessionAgentDeselectResult {}
export interface SessionAgentDeselectParams {
/**
* Target session identifier
*/
sessionId: string;
}
export interface SessionCompactionCompactResult {
/**
* Whether compaction completed successfully
*/
success: boolean;
/**
* Number of tokens freed by compaction
*/
tokensRemoved: number;
/**
* Number of messages removed during compaction
*/
messagesRemoved: number;
}
export interface SessionCompactionCompactParams {
/**
* Target session identifier
*/
sessionId: string;
}
/** Create typed server-scoped RPC methods (no session required). */
export function createServerRpc(connection: MessageConnection) {
return {
ping: async (params: PingParams): Promise<PingResult> =>
connection.sendRequest("ping", params),
models: {
list: async (): Promise<ModelsListResult> =>
connection.sendRequest("models.list", {}),
},
tools: {
list: async (params: ToolsListParams): Promise<ToolsListResult> =>
connection.sendRequest("tools.list", params),
},
account: {
getQuota: async (): Promise<AccountGetQuotaResult> =>
connection.sendRequest("account.getQuota", {}),
},
};
}
/** Create typed session-scoped RPC methods. */
export function createSessionRpc(connection: MessageConnection, sessionId: string) {
return {
model: {
getCurrent: async (): Promise<SessionModelGetCurrentResult> =>
connection.sendRequest("session.model.getCurrent", { sessionId }),
switchTo: async (params: Omit<SessionModelSwitchToParams, "sessionId">): Promise<SessionModelSwitchToResult> =>
connection.sendRequest("session.model.switchTo", { sessionId, ...params }),
},
mode: {
get: async (): Promise<SessionModeGetResult> =>
connection.sendRequest("session.mode.get", { sessionId }),
set: async (params: Omit<SessionModeSetParams, "sessionId">): Promise<SessionModeSetResult> =>
connection.sendRequest("session.mode.set", { sessionId, ...params }),
},
plan: {
read: async (): Promise<SessionPlanReadResult> =>
connection.sendRequest("session.plan.read", { sessionId }),
update: async (params: Omit<SessionPlanUpdateParams, "sessionId">): Promise<SessionPlanUpdateResult> =>
connection.sendRequest("session.plan.update", { sessionId, ...params }),
delete: async (): Promise<SessionPlanDeleteResult> =>
connection.sendRequest("session.plan.delete", { sessionId }),
},
workspace: {
listFiles: async (): Promise<SessionWorkspaceListFilesResult> =>
connection.sendRequest("session.workspace.listFiles", { sessionId }),
readFile: async (params: Omit<SessionWorkspaceReadFileParams, "sessionId">): Promise<SessionWorkspaceReadFileResult> =>
connection.sendRequest("session.workspace.readFile", { sessionId, ...params }),
createFile: async (params: Omit<SessionWorkspaceCreateFileParams, "sessionId">): Promise<SessionWorkspaceCreateFileResult> =>
connection.sendRequest("session.workspace.createFile", { sessionId, ...params }),
},
fleet: {
start: async (params: Omit<SessionFleetStartParams, "sessionId">): Promise<SessionFleetStartResult> =>
connection.sendRequest("session.fleet.start", { sessionId, ...params }),
},
agent: {
list: async (): Promise<SessionAgentListResult> =>
connection.sendRequest("session.agent.list", { sessionId }),
getCurrent: async (): Promise<SessionAgentGetCurrentResult> =>
connection.sendRequest("session.agent.getCurrent", { sessionId }),
select: async (params: Omit<SessionAgentSelectParams, "sessionId">): Promise<SessionAgentSelectResult> =>
connection.sendRequest("session.agent.select", { sessionId, ...params }),
deselect: async (): Promise<SessionAgentDeselectResult> =>
connection.sendRequest("session.agent.deselect", { sessionId }),
},
compaction: {
compact: async (): Promise<SessionCompactionCompactResult> =>
connection.sendRequest("session.compaction.compact", { sessionId }),
},
};
}