Expand description
LLM-callable tools for process management.
These tools are contributed to the agent’s tool registry by
ProcessPlugin when process_tracking.enabled = true.
ListProcessesTool— list running processes (own + visible children)KillProcessTool— send a signal to a process (own only)ProcessStatsTool— detailed stats for one process (own + children)WaitForProcessTool— poll until a process exits (own + children)ReadProcessOutputTool— read captured stdout/stderr (own + children)
Structs§
- Kill
Process Tool - LLM tool: send a signal to a process owned by this agent.
- List
Processes Tool - LLM tool: list all running processes visible to this agent.
- Process
Stats Tool - LLM tool: detailed stats for a single tracked process (own or child).
- Read
Process Output Tool - LLM tool: read captured stdout/stderr from a non-interactive process.
- Wait
ForProcess Tool - LLM tool: wait for a process to finish and return its exit status.