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: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -857,7 +857,7 @@ The following sets of tools are available:
857
857
-`issue_number`: The number of the issue (number, required)
858
858
-`method`: The read operation to perform on a single issue.
859
859
Options are:
860
-
1. get - Get details of a specific issue, including hierarchy relationship signals: has_parent and has_children (booleans, always present), plus a compact parent reference (parent) and sub-issue counts (sub_issues_summary) when those relationships exist. Hierarchy is READ here (and via get_parent / get_sub_issues); there is no writable parent field. To change an issue's parent, use sub_issue_write (add with replace_parent). An issue with no parent returns has_parent:false and omits parent.
860
+
1. get - Get issue details. Also returns best-effort hierarchy flags (`has_parent`, `has_children`); `parent`and `sub_issues_summary` are optional. No writable parent field; use `sub_issue_write`.
861
861
2. get_comments - Get issue comments.
862
862
3. get_sub_issues - Get sub-issues (children) of the issue.
863
863
4. get_parent - Get the parent issue, if this issue is a sub-issue of another.
@@ -934,8 +934,8 @@ The following sets of tools are available:
934
934
- 'add' - add a sub-issue to a parent issue in a GitHub repository.
935
935
- 'remove' - remove a sub-issue from a parent issue in a GitHub repository.
936
936
- 'reprioritize' - change the order of sub-issues within a parent issue in a GitHub repository. Use either 'after_id' or 'before_id' to specify the new position.
937
-
This tool WRITES hierarchy; the parent relationship is read back via issue_read (get returns has_parent / has_children / parent / sub_issues_summary) or issue_read get_parent. There is no writable parent field: to move an issue under a new parent, call 'add' with replace_parent=true.
938
-
(string, required)
937
+
Writes issue hierarchy. To move a sub-issue to a new parent, use `add` with `replace_parent=true`. Read hierarchy via `issue_read get`, `get_parent`, or `get_sub_issues`; there is no writable parent field.
938
+
(string, required)
939
939
-`owner`: Repository owner (string, required)
940
940
-`replace_parent`: When true, replaces the sub-issue's current parent issue. Use with 'add' method only. (boolean, optional)
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/issue_read.snap
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@
11
11
"type": "number"
12
12
},
13
13
"method": {
14
-
"description": "The read operation to perform on a single issue.\nOptions are:\n1. get - Get details of a specific issue, including hierarchy relationship signals: has_parent and has_children (booleans, always present), plus a compact parent reference (parent) and sub-issue counts (sub_issues_summary) when those relationships exist. Hierarchy is READ here (and via get_parent / get_sub_issues); there is no writable parent field. To change an issue's parent, use sub_issue_write (add with replace_parent). An issue with no parent returns has_parent:false and omits parent.\n2. get_comments - Get issue comments.\n3. get_sub_issues - Get sub-issues (children) of the issue.\n4. get_parent - Get the parent issue, if this issue is a sub-issue of another.\n5. get_labels - Get labels assigned to the issue.\n",
14
+
"description": "The read operation to perform on a single issue.\nOptions are:\n1. get - Get issue details. Also returns best-effort hierarchy flags (`has_parent`, `has_children`); `parent` and `sub_issues_summary` are optional. No writable parent field; use `sub_issue_write`.\n2. get_comments - Get issue comments.\n3. get_sub_issues - Get sub-issues (children) of the issue.\n4. get_parent - Get the parent issue, if this issue is a sub-issue of another.\n5. get_labels - Get labels assigned to the issue.\n",
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/sub_issue_write.snap
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@
18
18
"type": "number"
19
19
},
20
20
"method": {
21
-
"description": "The action to perform on a single sub-issue\nOptions are:\n- 'add' - add a sub-issue to a parent issue in a GitHub repository.\n- 'remove' - remove a sub-issue from a parent issue in a GitHub repository.\n- 'reprioritize' - change the order of sub-issues within a parent issue in a GitHub repository. Use either 'after_id' or 'before_id' to specify the new position.\nThis tool WRITES hierarchy; the parent relationship is read back via issue_read (get returns has_parent / has_children / parent / sub_issues_summary) or issue_read get_parent. There is no writable parent field: to move an issue under a new parent, call 'add' with replace_parent=true.\n\t\t\t\t",
21
+
"description": "The action to perform on a single sub-issue\nOptions are:\n- 'add' - add a sub-issue to a parent issue in a GitHub repository.\n- 'remove' - remove a sub-issue from a parent issue in a GitHub repository.\n- 'reprioritize' - change the order of sub-issues within a parent issue in a GitHub repository. Use either 'after_id' or 'before_id' to specify the new position.\nWrites issue hierarchy. To move a sub-issue to a new parent, use `add` with `replace_parent=true`. Read hierarchy via `issue_read get`, `get_parent`, or `get_sub_issues`; there is no writable parent field.\n",
Description: `The read operation to perform on a single issue.
617
-
Options are:
618
-
1. get - Get details of a specific issue, including hierarchy relationship signals: has_parent and has_children (booleans, always present), plus a compact parent reference (parent) and sub-issue counts (sub_issues_summary) when those relationships exist. Hierarchy is READ here (and via get_parent / get_sub_issues); there is no writable parent field. To change an issue's parent, use sub_issue_write (add with replace_parent). An issue with no parent returns has_parent:false and omits parent.
619
-
2. get_comments - Get issue comments.
620
-
3. get_sub_issues - Get sub-issues (children) of the issue.
621
-
4. get_parent - Get the parent issue, if this issue is a sub-issue of another.
622
-
5. get_labels - Get labels assigned to the issue.
623
-
`,
616
+
Description: "The read operation to perform on a single issue.\n"+
617
+
"Options are:\n"+
618
+
"1. get - Get issue details. Also returns best-effort hierarchy flags (`has_parent`, `has_children`); `parent` and `sub_issues_summary` are optional. No writable parent field; use `sub_issue_write`.\n"+
619
+
"2. get_comments - Get issue comments.\n"+
620
+
"3. get_sub_issues - Get sub-issues (children) of the issue.\n"+
621
+
"4. get_parent - Get the parent issue, if this issue is a sub-issue of another.\n"+
622
+
"5. get_labels - Get labels assigned to the issue.\n",
Description: `The action to perform on a single sub-issue
1261
-
Options are:
1262
-
- 'add' - add a sub-issue to a parent issue in a GitHub repository.
1263
-
- 'remove' - remove a sub-issue from a parent issue in a GitHub repository.
1264
-
- 'reprioritize' - change the order of sub-issues within a parent issue in a GitHub repository. Use either 'after_id' or 'before_id' to specify the new position.
1265
-
This tool WRITES hierarchy; the parent relationship is read back via issue_read (get returns has_parent / has_children / parent / sub_issues_summary) or issue_read get_parent. There is no writable parent field: to move an issue under a new parent, call 'add' with replace_parent=true.
1266
-
`,
1259
+
Description: "The action to perform on a single sub-issue\n"+
1260
+
"Options are:\n"+
1261
+
"- 'add' - add a sub-issue to a parent issue in a GitHub repository.\n"+
1262
+
"- 'remove' - remove a sub-issue from a parent issue in a GitHub repository.\n"+
1263
+
"- 'reprioritize' - change the order of sub-issues within a parent issue in a GitHub repository. Use either 'after_id' or 'before_id' to specify the new position.\n"+
1264
+
"Writes issue hierarchy. To move a sub-issue to a new parent, use `add` with `replace_parent=true`. Read hierarchy via `issue_read get`, `get_parent`, or `get_sub_issues`; there is no writable parent field.\n",
0 commit comments