forked from sanbuphy/learn-coding-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathremotePermissionBridge.ts
More file actions
78 lines (76 loc) · 2.32 KB
/
Copy pathremotePermissionBridge.ts
File metadata and controls
78 lines (76 loc) · 2.32 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
import { randomUUID } from 'crypto'
import type { SDKControlPermissionRequest } from '../entrypoints/sdk/controlTypes.js'
import type { Tool } from '../Tool.js'
import type { AssistantMessage } from '../types/message.js'
import { jsonStringify } from '../utils/slowOperations.js'
/**
* Create a synthetic AssistantMessage for remote permission requests.
* The ToolUseConfirm type requires an AssistantMessage, but in remote mode
* we don't have a real one — the tool use runs on the CCR container.
*/
export function createSyntheticAssistantMessage(
request: SDKControlPermissionRequest,
requestId: string,
): AssistantMessage {
return {
type: 'assistant',
uuid: randomUUID(),
message: {
id: `remote-${requestId}`,
type: 'message',
role: 'assistant',
content: [
{
type: 'tool_use',
id: request.tool_use_id,
name: request.tool_name,
input: request.input,
},
],
model: '',
stop_reason: null,
stop_sequence: null,
container: null,
context_management: null,
usage: {
input_tokens: 0,
output_tokens: 0,
cache_creation_input_tokens: 0,
cache_read_input_tokens: 0,
},
} as AssistantMessage['message'],
requestId: undefined,
timestamp: new Date().toISOString(),
}
}
/**
* Create a minimal Tool stub for tools that aren't loaded locally.
* This happens when the remote CCR has tools (e.g., MCP tools) that the
* local CLI doesn't know about. The stub routes to FallbackPermissionRequest.
*/
export function createToolStub(toolName: string): Tool {
return {
name: toolName,
inputSchema: {} as Tool['inputSchema'],
isEnabled: () => true,
userFacingName: () => toolName,
renderToolUseMessage: (input: Record<string, unknown>) => {
const entries = Object.entries(input)
if (entries.length === 0) return ''
return entries
.slice(0, 3)
.map(([key, value]) => {
const valueStr =
typeof value === 'string' ? value : jsonStringify(value)
return `${key}: ${valueStr}`
})
.join(', ')
},
call: async () => ({ data: '' }),
description: async () => '',
prompt: () => '',
isReadOnly: () => false,
isMcp: false,
needsPermissions: () => true,
} as unknown as Tool
}