Skip to content

Commit c2328d0

Browse files
committed
shorten param descriptions
1 parent 3477def commit c2328d0

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ The following sets of tools are available (all are on by default):
483483
- `owner`: Repository owner (string, required)
484484
- `replace_parent`: When true, replaces the sub-issue's current parent issue (boolean, optional)
485485
- `repo`: Repository name (string, required)
486-
- `sub_issue_id`: The ID of the sub-issue to add. Note: This is NOT the same as the issue number. (number, required)
486+
- `sub_issue_id`: The ID of the sub-issue to add. ID is not the same as issue number (number, required)
487487

488488
- **assign_copilot_to_issue** - Assign Copilot to issue
489489
- `issueNumber`: Issue number (number, required)
@@ -533,15 +533,15 @@ The following sets of tools are available (all are on by default):
533533
- `issue_number`: The number of the parent issue (number, required)
534534
- `owner`: Repository owner (string, required)
535535
- `repo`: Repository name (string, required)
536-
- `sub_issue_id`: The ID of the sub-issue to remove. Note: This is NOT the same as the issue number. (number, required)
536+
- `sub_issue_id`: The ID of the sub-issue to remove. ID is not the same as issue number (number, required)
537537

538538
- **reprioritize_sub_issue** - Reprioritize sub-issue
539539
- `after_id`: The ID of the sub-issue to be prioritized after (either after_id OR before_id should be specified) (number, optional)
540540
- `before_id`: The ID of the sub-issue to be prioritized before (either after_id OR before_id should be specified) (number, optional)
541541
- `issue_number`: The number of the parent issue (number, required)
542542
- `owner`: Repository owner (string, required)
543543
- `repo`: Repository name (string, required)
544-
- `sub_issue_id`: The ID of the sub-issue to reprioritize. Note: This is NOT the same as the issue number. (number, required)
544+
- `sub_issue_id`: The ID of the sub-issue to reprioritize. ID is not the same as issue number (number, required)
545545

546546
- **search_issues** - Search issues
547547
- `order`: Sort order (string, optional)

pkg/github/__toolsnaps__/add_sub_issue.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"type": "string"
2424
},
2525
"sub_issue_id": {
26-
"description": "The ID of the sub-issue to add. Note: This is NOT the same as the issue number.",
26+
"description": "The ID of the sub-issue to add. ID is not the same as issue number",
2727
"type": "number"
2828
}
2929
},

pkg/github/__toolsnaps__/remove_sub_issue.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"type": "string"
2020
},
2121
"sub_issue_id": {
22-
"description": "The ID of the sub-issue to remove. Note: This is NOT the same as the issue number.",
22+
"description": "The ID of the sub-issue to remove. ID is not the same as issue number",
2323
"type": "number"
2424
}
2525
},

pkg/github/__toolsnaps__/reprioritize_sub_issue.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"type": "string"
2828
},
2929
"sub_issue_id": {
30-
"description": "The ID of the sub-issue to reprioritize. Note: This is NOT the same as the issue number.",
30+
"description": "The ID of the sub-issue to reprioritize. ID is not the same as issue number",
3131
"type": "number"
3232
}
3333
},

pkg/github/issues.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ func AddSubIssue(getClient GetClientFn, t translations.TranslationHelperFunc) (t
176176
),
177177
mcp.WithNumber("sub_issue_id",
178178
mcp.Required(),
179-
mcp.Description("The ID of the sub-issue to add. Note: This is NOT the same as the issue number."),
179+
mcp.Description("The ID of the sub-issue to add. ID is not the same as issue number"),
180180
),
181181
mcp.WithBoolean("replace_parent",
182182
mcp.Description("When true, replaces the sub-issue's current parent issue"),
@@ -358,7 +358,7 @@ func RemoveSubIssue(getClient GetClientFn, t translations.TranslationHelperFunc)
358358
),
359359
mcp.WithNumber("sub_issue_id",
360360
mcp.Required(),
361-
mcp.Description("The ID of the sub-issue to remove. Note: This is NOT the same as the issue number."),
361+
mcp.Description("The ID of the sub-issue to remove. ID is not the same as issue number"),
362362
),
363363
),
364364
func(ctx context.Context, request mcp.CallToolRequest) (*mcp.CallToolResult, error) {
@@ -461,7 +461,7 @@ func ReprioritizeSubIssue(getClient GetClientFn, t translations.TranslationHelpe
461461
),
462462
mcp.WithNumber("sub_issue_id",
463463
mcp.Required(),
464-
mcp.Description("The ID of the sub-issue to reprioritize. Note: This is NOT the same as the issue number."),
464+
mcp.Description("The ID of the sub-issue to reprioritize. ID is not the same as issue number"),
465465
),
466466
mcp.WithNumber("after_id",
467467
mcp.Description("The ID of the sub-issue to be prioritized after (either after_id OR before_id should be specified)"),

0 commit comments

Comments
 (0)