huskies: merge 878

This commit is contained in:
dave
2026-04-29 23:48:30 +00:00
parent 1d86202abb
commit 8fc581ad6b
9 changed files with 413 additions and 51 deletions
+3 -1
View File
@@ -104,7 +104,9 @@ mod tests {
assert!(names.contains(&"create_epic"));
assert!(names.contains(&"list_epics"));
assert!(names.contains(&"show_epic"));
assert_eq!(tools.len(), 72);
assert!(names.contains(&"freeze_story"));
assert!(names.contains(&"unfreeze_story"));
assert_eq!(tools.len(), 74);
}
#[test]
@@ -641,6 +641,34 @@ pub(super) fn story_tools() -> Vec<Value> {
"required": ["story_id"]
}
}),
json!({
"name": "freeze_story",
"description": "Freeze a work item at its current pipeline stage, suppressing pipeline advancement and auto-assign until unfrozen.",
"inputSchema": {
"type": "object",
"properties": {
"story_id": {
"type": "string",
"description": "Work item identifier (filename stem, e.g. '42_story_my_feature')"
}
},
"required": ["story_id"]
}
}),
json!({
"name": "unfreeze_story",
"description": "Unfreeze a work item, resuming normal pipeline behaviour.",
"inputSchema": {
"type": "object",
"properties": {
"story_id": {
"type": "string",
"description": "Work item identifier (filename stem, e.g. '42_story_my_feature')"
}
},
"required": ["story_id"]
}
}),
json!({
"name": "status",
"description": "Get a full triage dump for an in-progress story: front matter, AC checklist, active worktree/branch, git diff --stat since master, last 5 commits, and last 20 lines of the most recent agent log. Returns a clear error if the story is not in work/2_current/.",