( agent: AgentDefinition, )
| 178 | } |
| 179 | |
| 180 | export function isPluginAgent( |
| 181 | agent: AgentDefinition, |
| 182 | ): agent is PluginAgentDefinition { |
| 183 | return agent.source === 'plugin' |
| 184 | } |
| 185 | |
| 186 | export type AgentDefinitionsResult = { |
| 187 | activeAgents: AgentDefinition[] |
no outgoing calls
no test coverage detected