huskies: merge 640_bug_create_story_create_refactor_create_bug_silently_drop_the_depends_on_parameter

This commit is contained in:
dave
2026-04-25 19:33:38 +00:00
parent e4dd4bbe2c
commit 120745d102
3 changed files with 160 additions and 2 deletions
+10
View File
@@ -676,6 +676,11 @@ fn handle_tools_list(id: Option<Value>) -> JsonRpcResponse {
"type": "array",
"items": { "type": "string" },
"description": "Optional list of acceptance criteria for the fix"
},
"depends_on": {
"type": "array",
"items": { "type": "integer" },
"description": "Optional list of story numbers this bug depends on (e.g. [42, 43]). Persisted as depends_on in YAML front matter."
}
},
"required": ["name", "description", "steps_to_reproduce", "actual_result", "expected_result"]
@@ -707,6 +712,11 @@ fn handle_tools_list(id: Option<Value>) -> JsonRpcResponse {
"type": "array",
"items": { "type": "string" },
"description": "Optional list of acceptance criteria"
},
"depends_on": {
"type": "array",
"items": { "type": "integer" },
"description": "Optional list of story numbers this refactor depends on (e.g. [42, 43]). Persisted as depends_on in YAML front matter."
}
},
"required": ["name"]