(err error)
| 252 | } |
| 253 | |
| 254 | func isStructuredAgentCommandError(err error) bool { |
| 255 | var identityErr *agentidentity.Error |
| 256 | return errors.As(err, &identityErr) |
| 257 | } |
| 258 | |
| 259 | func requestedOutputFormat(args []string) OutputFormat { |
| 260 | mode := OutputHuman |
no outgoing calls
no test coverage detected