start_process
Start an interactive process session for AI agents, specifying command, arguments, I/O mode (PTY/pipe), environment, and timeout. Returns session info for managing long-running programs.
Instructions
Start an interactive process and return its session info.
Args: command: The command to execute. args: Command arguments. mode: I/O mode — "pty" (pseudo-terminal) or "pipe". Default "pty". name: Optional human-readable session name. cwd: Working directory for the process. env: Environment variables (dict of string key-value pairs). timeout: Process startup timeout in seconds. rows: PTY row count (pty mode only). cols: PTY column count (pty mode only).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| command | Yes | ||
| args | No | ||
| mode | No | pty | |
| name | No | ||
| cwd | No | ||
| env | No | ||
| timeout | No | ||
| rows | No | ||
| cols | No |