job_kill.md

Stop a background shell process.

- Provide shell_id from a background bash execution - Immediately terminates the process (SIGTERM) - Shell ID becomes invalid after killing

<when_to_use>

  • Stop servers or watchers you started
  • Clean up processes no longer needed
  • Cancel long-running commands </when_to_use>
``` shell_id: "abc123" ``` → Stops the background process.