package model // ShellStatusResponse is the API response for shell status. type ShellStatusResponse struct { WorkspaceID string `json:"workspaceId"` Running bool `json:"running"` PID int `json:"pid,omitempty"` } // ShellResizeRequest is the body for POST /shell/resize. type ShellResizeRequest struct { Cols int `json:"cols"` Rows int `json:"rows"` }