MCPcopy Create free account
hub / github.com/WJX20/claude-code / createCommandInputMessage

Function createCommandInputMessage

src/utils/messages.ts:4555–4567  ·  view source on GitHub ↗
(
  content: string,
)

Source from the content-addressed store, hash-verified

4553}
4554
4555export function createCommandInputMessage(
4556 content: string,
4557): SystemLocalCommandMessage {
4558 return {
4559 type: 'system',
4560 subtype: 'local_command',
4561 content,
4562 level: 'info',
4563 timestamp: new Date().toISOString(),
4564 uuid: randomUUID(),
4565 isMeta: false,
4566 }
4567}
4568
4569export function createCompactBoundaryMessage(
4570 trigger: 'manual' | 'auto',

Callers 6

onDoneFunction · 0.85
processUserInputBaseFunction · 0.85
onDoneFunction · 0.85
REPLFunction · 0.85
appendStdoutFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected