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: package.json
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -69,8 +69,8 @@
69
69
{
70
70
"id": "githubCodingAgent",
71
71
"command": "githubpr.remoteAgent",
72
-
"displayName": "GitHub Coding Agent",
73
-
"description": "The GitHub Coding Agent.",
72
+
"displayName": "GitHub Copilot coding agent",
73
+
"description": "Copilot coding agent is a remote, autonomous software development agent. Developers delegate tasks to the agent, which iterates on pull requests based on feedback and reviews.",
"description": "The number of an existing pull request that is connected to the current Coding Agent task. Look in the history for this number. In the chat it may look like 'Coding agent will continue work in #17...'. In this example, return just '17'."
3386
+
"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'."
"githubPullRequests.codingAgent.description": "Enables integration with the asynchronous GitHub Coding Agent. The '#codingAgent' tool will be available in agent mode when this setting is enabled.",
24
-
"githubPullRequests.codingAgent.uiIntegration.description": "Enables UI integration within VS Code to create new Coding Agent sessions.",
25
-
"githubPullRequests.codingAgent.autoCommitAndPush.description": "Allow automatic git operations (commit, push) to be performed when starting a Coding Agent session",
23
+
"githubPullRequests.codingAgent.description": "Enables integration with the asynchronous Copilot coding agent. The '#copilotCodingAgent' tool will be available in agent mode when this setting is enabled.",
24
+
"githubPullRequests.codingAgent.uiIntegration.description": "Enables UI integration within VS Code to create new coding agent sessions.",
25
+
"githubPullRequests.codingAgent.autoCommitAndPush.description": "Allow automatic git operations (commit, push) to be performed when starting a coding agent session",
26
26
"githubPullRequests.remotes.markdownDescription": "List of remotes, by name, to fetch pull requests from.",
27
27
"githubPullRequests.queries.markdownDescription": "Specifies what queries should be used in the GitHub Pull Requests tree. All queries are made against **the currently opened repos**. Each query object has a `label` that will be shown in the tree and a search `query` using [GitHub search syntax](https://help.github.com/en/articles/understanding-the-search-syntax). The following variables can be used: \n - `${user}` will resolve to the currently logged in user \n - `${owner}` will resolve to the owner of the current repository, ex. `microsoft` in `microsoft/vscode` \n - `${repository}` will resolve to the repository name, ex. `vscode` in `microsoft/vscode` \n - `${today-Nd}`, where `N` is the number of days ago, will resolve to a date, ex. `2025-01-04`. \n\n By default these queries define the categories \"Waiting For My Review\", \"Assigned To Me\" and \"Created By Me\". If you want to preserve these, make sure they are still in the array when you modify the setting.",
28
28
"githubPullRequests.queries.label.description": "The label to display for the query in the Pull Requests tree",
@@ -379,6 +379,6 @@
379
379
"languageModelTools.github-pull-request_renderIssues.displayName": "Render issue items in a markdown table",
"languageModelTools.github-pull-request_activePullRequest.description": "Get information about the active GitHub pull request. This information includes: comments, files changed, pull request title + description, pull request state, and pull request status checks/CI.",
"languageModelTools.github-pull-request_copilot-coding-agent.userDescription": "Completes the provided task using an asynchronous coding agent. Use when the user wants copilot continue completing a task in the background or asynchronously. Launch an autonomous GitHub Copilot agent to work on coding tasks in the background. The agent will create a new branch, implement the requested changes, and open a pull request with the completed work."
Copy file name to clipboardExpand all lines: src/lm/tools/copilotRemoteAgentTool.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ export class CopilotRemoteAgentTool implements vscode.LanguageModelTool<CopilotR
30
30
// Check if the coding agent is available (enabled and assignable)
31
31
constisAvailable=awaitthis.manager.isAvailable();
32
32
if(!isAvailable){
33
-
thrownewError(vscode.l10n.t('GitHub Coding Agent is not available for this repository. Make sure the agent is enabled and assignable to this repository.'));
33
+
thrownewError(vscode.l10n.t('Copilot coding agent is not available for this repository. Make sure the agent is enabled and assignable to this repository.'));
0 commit comments