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

Function isQueuedCommandVisible

src/utils/messageQueueManager.ts:368–375  ·  view source on GitHub ↗
(cmd: QueuedCommand)

Source from the content-addressed store, hash-verified

366 * sees what arrived) but stay non-editable (raw XML).
367 */
368export function isQueuedCommandVisible(cmd: QueuedCommand): boolean {
369 if (
370 (feature('KAIROS') || feature('KAIROS_CHANNELS')) &&
371 cmd.origin?.kind === 'channel'
372 )
373 return true
374 return isQueuedCommandEditable(cmd)
375}
376
377/**
378 * Extract text from a queued command value.

Callers

nothing calls this directly

Calls 2

featureFunction · 0.85
isQueuedCommandEditableFunction · 0.85

Tested by

no test coverage detected