MCPcopy Index your code
hub / github.com/Noumena-Network/code / createCommandInputMessage

Function createCommandInputMessage

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

Source from the content-addressed store, hash-verified

4614}
4615
4616export function createCommandInputMessage(
4617 content: string,
4618): SystemLocalCommandMessage {
4619 return {
4620 type: 'system',
4621 subtype: 'local_command',
4622 content,
4623 level: 'info',
4624 timestamp: new Date().toISOString(),
4625 uuid: randomUUID(),
4626 isMeta: false,
4627 }
4628}
4629
4630export function createCompactBoundaryMessage(
4631 trigger: 'manual' | 'auto',

Callers 6

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

Calls 1

randomUUIDFunction · 0.90

Tested by

no test coverage detected