MCPcopy Index your code
hub / github.com/codeaashu/claude-code / createCommandInputMessage

Function createCommandInputMessage

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

Source from the content-addressed store, hash-verified

4514}
4515
4516export function createCommandInputMessage(
4517 content: string,
4518): SystemLocalCommandMessage {
4519 return {
4520 type: 'system',
4521 subtype: 'local_command',
4522 content,
4523 level: 'info',
4524 timestamp: new Date().toISOString(),
4525 uuid: randomUUID(),
4526 isMeta: false,
4527 }
4528}
4529
4530export function createCompactBoundaryMessage(
4531 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