shell_exec_background
Start a long-running shell command in the background with a job_id for later monitoring and termination.
Instructions
Purpose: Start a long-running shell command as a background job. Constraints: Requires job_id. Use shell_check_job to read output and shell_kill_job to stop the process. Background jobs share the current container session. Example: shell_exec_background(command='python3 -m http.server 8000', job_id='http8000')
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes | ||
| command | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||