(input, _context)
| 94 | }, |
| 95 | |
| 96 | async validateInput(input, _context) { |
| 97 | if (!input.team_name || input.team_name.trim().length === 0) { |
| 98 | return { |
| 99 | result: false, |
| 100 | message: 'team_name is required for TeamCreate', |
| 101 | errorCode: 9, |
| 102 | } |
| 103 | } |
| 104 | return { result: true } |
| 105 | }, |
| 106 | |
| 107 | async description() { |
| 108 | return 'Create a new team for coordinating multiple agents' |
nothing calls this directly
no outgoing calls
no test coverage detected