( agent: AgentDefinition, )
| 172 | } |
| 173 | |
| 174 | export function isCustomAgent( |
| 175 | agent: AgentDefinition, |
| 176 | ): agent is CustomAgentDefinition { |
| 177 | return agent.source !== 'built-in' && agent.source !== 'plugin' |
| 178 | } |
| 179 | |
| 180 | export function isPluginAgent( |
| 181 | agent: AgentDefinition, |
no outgoing calls
no test coverage detected