| 63 | } |
| 64 | |
| 65 | type ConfigurableAgent interface { |
| 66 | name() string |
| 67 | description() string |
| 68 | editMcpConfig() error |
| 69 | editRules() error |
| 70 | isInstalled() bool |
| 71 | } |
| 72 | |
| 73 | // Add agents here |
| 74 | func selectAgent(agentKey string) (ConfigurableAgent, error) { |
no outgoing calls
no test coverage detected