You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/update_issue_assignees.snap
+38-3Lines changed: 38 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,48 @@
6
6
"readOnlyHint": false,
7
7
"title": "Update Issue Assignees"
8
8
},
9
-
"description": "Update the assignees of an existing issue. This replaces the current assignees with the provided list.",
9
+
"description": "Update the assignees of an existing issue. This replaces the current assignees with the provided list. When setting values, include a confidence level (LOW, MEDIUM, or HIGH) reflecting how certain you are about the choice.",
10
10
"inputSchema": {
11
11
"properties": {
12
12
"assignees": {
13
-
"description": "GitHub usernames to assign to this issue",
13
+
"description": "GitHub usernames to assign to this issue.",
14
14
"items": {
15
-
"type": "string"
15
+
"oneOf": [
16
+
{
17
+
"description": "GitHub username",
18
+
"type": "string"
19
+
},
20
+
{
21
+
"properties": {
22
+
"confidence": {
23
+
"description": "How confident you are in this choice. Use 'HIGH' for clear signal or explicit user request, 'MEDIUM' for reasonable inference with some ambiguity, 'LOW' for best guess with limited signal.",
24
+
"enum": [
25
+
"LOW",
26
+
"MEDIUM",
27
+
"HIGH"
28
+
],
29
+
"type": "string"
30
+
},
31
+
"is_suggestion": {
32
+
"description": "If true, this assignee is sent to the API as a suggestion (suggest:true) rather than an applied assignee. Whether the assignee is applied or recorded as a proposal is determined by the API.",
33
+
"type": "boolean"
34
+
},
35
+
"login": {
36
+
"description": "GitHub username",
37
+
"type": "string"
38
+
},
39
+
"rationale": {
40
+
"description": "One concise sentence explaining what specifically about the issue led you to choose this assignee. State the concrete signal (e.g. 'Authored the file the crash originates in').",
0 commit comments