kill_process
Send a signal to a remote process by PID to control its lifecycle. Use TERM for graceful termination, KILL to force stop, or HUP to reload configuration.
Instructions
Send a signal to a process by PID.
Args: pid: Process ID to signal. signal: Signal name: "TERM" (graceful, default), "KILL" (force), "HUP" (reload). host_name: Named host from SSH_HOSTS config; uses default host if omitted.
Returns: Result of the kill command.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pid | Yes | ||
| signal | No | TERM | |
| host_name | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |