huskies: merge 964

This commit is contained in:
dave
2026-05-13 14:51:39 +00:00
parent c811672e18
commit dcb43c465a
24 changed files with 234 additions and 188 deletions
+3 -1
View File
@@ -37,7 +37,9 @@ pub(crate) fn tool_get_story_todos(args: &Value, ctx: &AppContext) -> Result<Str
let contents = crate::http::workflow::read_story_content(&root, story_id)
.map_err(|_| format!("Story file not found: {story_id}.md"))?;
let story_name = crate::crdt_state::read_item(story_id).map(|v| v.name().to_string());
let story_name = crate::crdt_state::read_item(story_id)
.map(|v| v.name().to_string())
.unwrap_or_default();
let todos = parse_unchecked_todos(&contents);
serde_json::to_string_pretty(&json!({