process_start
Start long-running or interactive non-agent shell commands that persist across MCP tool calls. Returns a processId for reading, writing to, or killing the process later.
Instructions
Start a long-running or interactive non-agent shell command and keep it alive across MCP tool calls. Returns a processId for process_read, process_write, and process_kill. Do not use process_start for Codex, Antigravity CLI (agy), or Claude Code agent work; use agent_start because Herdr provides dedicated parallel workspaces and survives MCP/conversation lifecycle changes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cwd | No | Working directory. Defaults to the agent user home directory. | |
| env | No | Additional environment variables. | |
| command | Yes | Shell command to start with bash -lc. |