remotePermissionBridge.ts
remote/remotePermissionBridge.ts
79
Lines
2378
Bytes
2
Exports
5
Imports
10
Keywords
What this is
This page documents one file from the repository and includes its full source so you can read it without leaving the docs site.
Beginner explanation
This file is one piece of the larger system. Its name, directory, imports, and exports show where it fits. Start by reading the exports and related files first.
How it is used
Start from the exports list and related files. Those are the easiest clues for where this file fits into the system.
Expert explanation
Architecturally, this file intersects with shell-safety, permissions, remote-bridge. It contains 79 lines, 5 detected imports, and 2 detected exports.
Important relationships
Detected exports
createSyntheticAssistantMessagecreateToolStub
Keywords
toolassistantmessagemessagerequestinputentriesremoterequestidtoolstoolname
Detected imports
crypto../entrypoints/sdk/controlTypes.js../Tool.js../types/message.js../utils/slowOperations.js
Source notes
This page embeds the full file contents. Small or leaf files are still indexed honestly instead of being over-explained.
Full source
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
}