( context: AgentContext | undefined, )
| 113 | * Type guard to check if context is a SubagentContext. |
| 114 | */ |
| 115 | export function isSubagentContext( |
| 116 | context: AgentContext | undefined, |
| 117 | ): context is SubagentContext { |
| 118 | return context?.agentType === 'subagent' |
| 119 | } |
| 120 | |
| 121 | /** |
| 122 | * Type guard to check if context is a TeammateAgentContext. |
no outgoing calls
no test coverage detected