Document exec-server design flow and add lifecycle tests

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
starr-openai
2026-03-17 03:21:04 +00:00
parent 63706bc34e
commit 4319be2d7c
5 changed files with 472 additions and 0 deletions

View File

@@ -45,6 +45,8 @@ pub struct InitializeResponse {
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ExecParams {
/// Caller-chosen stable process identifier scoped to a single exec-server
/// connection. This is a protocol handle, not an OS pid.
pub process_id: String,
pub argv: Vec<String>,
pub cwd: PathBuf,