MCPcopy Create free account
hub / github.com/codeaashu/claude-code / createPermissionRetryMessage

Function createPermissionRetryMessage

src/utils/messages.ts:4354–4367  ·  view source on GitHub ↗
(
  commands: string[],
)

Source from the content-addressed store, hash-verified

4352}
4353
4354export function createPermissionRetryMessage(
4355 commands: string[],
4356): SystemPermissionRetryMessage {
4357 return {
4358 type: 'system',
4359 subtype: 'permission_retry',
4360 content: `Allowed ${commands.join(', ')}`,
4361 commands,
4362 level: 'info',
4363 isMeta: false,
4364 timestamp: new Date().toISOString(),
4365 uuid: randomUUID(),
4366 }
4367}
4368
4369export function createBridgeStatusMessage(
4370 url: string,

Callers 1

callFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected