(status int32)
| 221 | } |
| 222 | |
| 223 | func statusToString(status int32) string { |
| 224 | if s, ok := statusStrings[status]; ok { |
| 225 | return s |
| 226 | } |
| 227 | return "unknown" |
| 228 | } |
| 229 | |
| 230 | func (h *shellHandler) RunShell(ctx context.Context, params RunShellArgs) (*tools.ToolCallResult, error) { |
| 231 | if strings.TrimSpace(params.Cmd) == "" { |
no outgoing calls
no test coverage detected