|
3723 | 3723 | } |
3724 | 3724 | ], |
3725 | 3725 | "languageModelTools": [ |
3726 | | - { |
3727 | | - "name": "github-pull-request_copilot-coding-agent", |
3728 | | - "displayName": "%languageModelTools.github-pull-request_copilot-coding-agent.displayName%", |
3729 | | - "modelDescription": "Completes the provided task using an asynchronous coding agent. Use when the user wants copilot continue completing a task in the background or asynchronously. IMPORTANT: Use this tool LAST/FINAL when users mention '#github-pull-request_copilot-coding-agent' in their query. This indicates they want the task/job implemented by the remote coding agent after all other analysis, planning, and preparation is complete. Call this tool at the END to hand off the fully-scoped task to the asynchronous GitHub Copilot coding agent. The agent will create a new branch, implement the changes, and open a pull request. Always use this tool as the final step when the hashtag is mentioned, after completing any other necessary tools or analysis first.", |
3730 | | - "when": "config.githubPullRequests.codingAgent.enabled", |
3731 | | - "icon": "$(send-to-remote-agent)", |
3732 | | - "canBeReferencedInPrompt": true, |
3733 | | - "toolReferenceName": "copilotCodingAgent", |
3734 | | - "userDescription": "%languageModelTools.github-pull-request_copilot-coding-agent.userDescription%", |
3735 | | - "inputSchema": { |
3736 | | - "type": "object", |
3737 | | - "required": [ |
3738 | | - "title", |
3739 | | - "body" |
3740 | | - ], |
3741 | | - "properties": { |
3742 | | - "title": { |
3743 | | - "type": "string", |
3744 | | - "description": "The title of the issue. Populate from chat context." |
3745 | | - }, |
3746 | | - "body": { |
3747 | | - "type": "string", |
3748 | | - "description": "The body/description of the issue. Populate from chat context." |
3749 | | - }, |
3750 | | - "existingPullRequest": { |
3751 | | - "type": "number", |
3752 | | - "description": "The number of an existing pull request related to the current coding agent task. Look in the chat history for this number. In the chat it may look like 'Coding agent will continue work in #17...'. In this example, you should return '17'." |
3753 | | - } |
3754 | | - } |
3755 | | - } |
3756 | | - }, |
3757 | 3726 | { |
3758 | 3727 | "name": "github-pull-request_issue_fetch", |
3759 | 3728 | "tags": [ |
|
4299 | 4268 | ], |
4300 | 4269 | "toolReferenceName": "openPullRequest", |
4301 | 4270 | "displayName": "%languageModelTools.github-pull-request_openPullRequest.displayName%", |
4302 | | - "modelDescription": "Get comprehensive information about the GitHub pull request (PR) which is currently visible, but not necessarily checked out. This includes the PR title, full description, list of changed files, review comments, PR state, and status checks/CI results. For PRs created by Copilot, it also includes the session logs which indicate the development process and decisions made by the coding agent. When asked about the currently open pull request, do this first! Use this tool for any request related to \"pull request details,\" \"what changed,\" \"PR status,\" or similar queries even if the user does not explicitly mention \"pull request.\" When asked to use this tool, ALWAYS use it.", |
| 4271 | + "modelDescription": "Get comprehensive information about the GitHub pull request (PR) which is currently visible, but not necessarily checked out. This is the pull request that the user is currently viewing. This includes the PR title, full description, list of changed files, review comments, PR state, and status checks/CI results. For PRs created by Copilot, it also includes the session logs which indicate the development process and decisions made by the coding agent. When asked about the currently open pull request, do this first! Use this tool for any request related to \"pull request details,\" \"what changed,\" \"PR status,\" or similar queries even if the user does not explicitly mention \"pull request.\" When asked to use this tool, ALWAYS use it.", |
4303 | 4272 | "icon": "$(git-pull-request)", |
4304 | 4273 | "canBeReferencedInPrompt": true, |
4305 | 4274 | "userDescription": "%languageModelTools.github-pull-request_openPullRequest.description%", |
|
0 commit comments