feat(session): persist model in session metadata — ROADMAP #59

Add 'model: Option<String>' to Session struct. The model used is now
saved in the session_meta JSONL record and surfaced in resumed /status:
- JSON mode: {model: 'claude-sonnet-4-6'} instead of null
- Text mode: shows actual model instead of 'restored-session'

Model is set in build_runtime_with_plugin_state() before the runtime
is constructed, and only when not already set (preserves model through
fork/resume cycles).

Backward compatible: old sessions without a model field load cleanly
with model: None (shown as null in JSON, 'restored-session' in text).

All workspace tests pass.
This commit is contained in:
YeonGyu-Kim
2026-04-10 10:05:42 +09:00
parent 6af0189906
commit 0f34c66acd
2 changed files with 26 additions and 3 deletions

View File

@@ -96,6 +96,9 @@ pub struct Session {
pub fork: Option<SessionFork>,
pub workspace_root: Option<PathBuf>,
pub prompt_history: Vec<SessionPromptEntry>,
/// The model used in this session, persisted so resumed sessions can
/// report which model was originally used.
pub model: Option<String>,
persistence: Option<SessionPersistence>,
}
@@ -161,6 +164,7 @@ impl Session {
fork: None,
workspace_root: None,
prompt_history: Vec::new(),
model: None,
persistence: None,
}
}
@@ -263,6 +267,7 @@ impl Session {
}),
workspace_root: self.workspace_root.clone(),
prompt_history: self.prompt_history.clone(),
model: self.model.clone(),
persistence: None,
}
}
@@ -371,6 +376,10 @@ impl Session {
.collect()
})
.unwrap_or_default();
let model = object
.get("model")
.and_then(JsonValue::as_str)
.map(String::from);
Ok(Self {
version,
session_id,
@@ -381,6 +390,7 @@ impl Session {
fork,
workspace_root,
prompt_history,
model,
persistence: None,
})
}
@@ -394,6 +404,7 @@ impl Session {
let mut compaction = None;
let mut fork = None;
let mut workspace_root = None;
let mut model = None;
let mut prompt_history = Vec::new();
for (line_number, raw_line) in contents.lines().enumerate() {
@@ -433,6 +444,10 @@ impl Session {
.get("workspace_root")
.and_then(JsonValue::as_str)
.map(PathBuf::from);
model = object
.get("model")
.and_then(JsonValue::as_str)
.map(String::from);
}
"message" => {
let message_value = object.get("message").ok_or_else(|| {
@@ -475,6 +490,7 @@ impl Session {
fork,
workspace_root,
prompt_history,
model,
persistence: None,
})
}
@@ -580,6 +596,9 @@ impl Session {
JsonValue::String(workspace_root_to_string(workspace_root)?),
);
}
if let Some(model) = &self.model {
object.insert("model".to_string(), JsonValue::String(model.clone()));
}
Ok(JsonValue::Object(object))
}