process_write
Send UTF-8 text to the standard input of a running process, with the option to close the input stream afterward.
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. |