(id string)
| 165 | } |
| 166 | |
| 167 | func lookupSubagentDefinition(id string) (subagentDefinition, bool) { |
| 168 | for _, def := range allSubagentDefinitions() { |
| 169 | if def.id == id { |
| 170 | return def, true |
| 171 | } |
| 172 | } |
| 173 | return subagentDefinition{}, false |
| 174 | } |
| 175 | |
| 176 | func availableSubagentDefinitions( |
| 177 | ctx context.Context, |
no test coverage detected