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
+67Lines changed: 67 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -288,6 +288,7 @@ The following sets of tools are available (all are on by default):
288
288
|`issues`| GitHub Issues related tools |
289
289
|`notifications`| GitHub Notifications related tools |
290
290
|`orgs`| GitHub Organization related tools |
291
+
|`projects`| GitHub Projects related tools |
291
292
|`pull_requests`| GitHub Pull Request related tools |
292
293
|`repos`| GitHub Repository related tools |
293
294
|`secret_protection`| Secret protection related tools, such as GitHub Secret Scanning |
@@ -655,6 +656,61 @@ The following sets of tools are available (all are on by default):
655
656
656
657
<details>
657
658
659
+
<summary>Projects</summary>
660
+
661
+
-**add_project_item** - Add project item
662
+
-`item_id`: The numeric ID of the issue or pull request to add to the project. (number, required)
663
+
-`item_type`: The item's type, either issue or pull_request. (string, required)
664
+
-`owner`: If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive. (string, required)
665
+
-`owner_type`: Owner type (string, required)
666
+
-`project_number`: The project's number. (number, required)
667
+
668
+
-**delete_project_item** - Delete project item
669
+
-`item_id`: The internal project item ID to delete from the project (not the issue or pull request ID). (number, required)
670
+
-`owner`: If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive. (string, required)
671
+
-`owner_type`: Owner type (string, required)
672
+
-`project_number`: The project's number. (number, required)
673
+
674
+
-**get_project** - Get project
675
+
-`owner`: If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive. (string, required)
676
+
-`owner_type`: Owner type (string, required)
677
+
-`project_number`: The project's number (number, required)
678
+
679
+
-**get_project_field** - Get project field
680
+
-`field_id`: The field's id. (number, required)
681
+
-`owner`: If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive. (string, required)
682
+
-`owner_type`: Owner type (string, required)
683
+
-`project_number`: The project's number. (number, required)
684
+
685
+
-**get_project_item** - Get project item
686
+
-`item_id`: The item's ID. (number, required)
687
+
-`owner`: If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive. (string, required)
688
+
-`owner_type`: Owner type (string, required)
689
+
-`project_number`: The project's number. (number, required)
690
+
691
+
-**list_project_fields** - List project fields
692
+
-`owner`: If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive. (string, required)
693
+
-`owner_type`: Owner type (string, required)
694
+
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
695
+
-`project_number`: The project's number. (number, required)
696
+
697
+
-**list_project_items** - List project items
698
+
-`owner`: If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive. (string, required)
699
+
-`owner_type`: Owner type (string, required)
700
+
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
701
+
-`project_number`: The project's number. (number, required)
702
+
-`query`: Search query to filter items (string, optional)
703
+
704
+
-**list_projects** - List projects
705
+
-`owner`: If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive. (string, required)
706
+
-`owner_type`: Owner type (string, required)
707
+
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
708
+
-`query`: Filter projects by a search query (matches title and description) (string, optional)
709
+
710
+
</details>
711
+
712
+
<details>
713
+
658
714
<summary>Pull Requests</summary>
659
715
660
716
-**add_comment_to_pending_review** - Add review comment to the requester's latest pending pull request review
@@ -1002,6 +1058,17 @@ The following sets of tools are available (all are on by default):
1002
1058
1003
1059
</details>
1004
1060
1061
+
<details>
1062
+
1063
+
<summary>Copilot Spaces</summary>
1064
+
1065
+
-**get_copilot_space** - Get Copilot Space
1066
+
-`owner`: The owner of the space. (string, required)
1067
+
-`name`: The name of the space. (string, required)
1068
+
1069
+
-**list_copilot_spaces** - List Copilot Spaces
1070
+
</details>
1071
+
1005
1072
#### Specifying Toolsets
1006
1073
1007
1074
To specify toolsets you want available to the LLM, you can pass an allow-list in two ways:
0 commit comments