process_write
Send UTF-8 text to the standard input of a live process started by start_process. Optionally close stdin after writing to signal end of input.
Instructions
Write UTF-8 text to the standard input of a live process started by start_process. Recovered processes remain inspectable after restart but their stdin cannot be reattached.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end | No | Close standard input after writing; defaults to false. | |
| pid | Yes | Process ID returned by start_process. | |
| input | Yes | UTF-8 text to write to standard input. | |
| process_id | No | Opaque processId returned by start_process; detects stale PID references. |