MCPcopy Index your code
hub / github.com/Dimillian/CodexMonitor / hasCollabLinkHints

Function hasCollabLinkHints

src/features/threads/hooks/useThreadLinking.ts:77–98  ·  view source on GitHub ↗
(item: Record<string, unknown>)

Source from the content-addressed store, hash-verified

75}
76
77function hasCollabLinkHints(item: Record<string, unknown>) {
78 return Boolean(
79 item.senderThreadId ??
80 item.sender_thread_id ??
81 item.receiverThreadId ??
82 item.receiver_thread_id ??
83 item.receiverThreadIds ??
84 item.receiver_thread_ids ??
85 item.newThreadId ??
86 item.new_thread_id ??
87 item.receiverAgents ??
88 item.receiver_agents ??
89 item.receiverAgent ??
90 item.receiver_agent ??
91 item.agentStatuses ??
92 item.agent_statuses ??
93 item.agentStatus ??
94 item.agentsStates ??
95 item.agents_states ??
96 item.statuses,
97 );
98}
99
100export function useThreadLinking({
101 dispatch,

Callers 1

useThreadLinkingFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected