Skip to content

Commit ca456e9

Browse files
authored
Update coding agent settings (#7164)
* update settings (https://github.com/microsoft/vscode-copilot/issues/18605) * add description
1 parent fc7d10b commit ca456e9

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

package.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"command": "githubpr.remoteAgent",
7272
"displayName": "GitHub Coding Agent",
7373
"description": "The GitHub Coding Agent.",
74-
"when": "config.githubPullRequests.codingAgent.enabled && copilotCodingAgentAssignable"
74+
"when": "config.githubPullRequests.codingAgent.enabled && config.githubPullRequests.codingAgent.uiIntegration && copilotCodingAgentAssignable"
7575
}
7676
],
7777
"chatParticipants": [
@@ -496,7 +496,7 @@
496496
},
497497
"githubPullRequests.codingAgent.enabled": {
498498
"type": "boolean",
499-
"default": false,
499+
"default": true,
500500
"markdownDescription": "%githubPullRequests.codingAgent.description%",
501501
"tags": [
502502
"experimental"
@@ -510,6 +510,14 @@
510510
"experimental"
511511
]
512512
},
513+
"githubPullRequests.codingAgent.uiIntegration": {
514+
"type": "boolean",
515+
"default": false,
516+
"markdownDescription": "%githubPullRequests.codingAgent.uiIntegration.description%",
517+
"tags": [
518+
"experimental"
519+
]
520+
},
513521
"githubPullRequests.experimental.notificationsMarkPullRequests": {
514522
"type": "string",
515523
"markdownDescription": "%githubPullRequests.experimental.notificationsMarkPullRequests.description%",

package.nls.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@
2020
"{Locked='](command:workbench.action.setLogLevel)'}"
2121
]
2222
},
23-
"githubPullRequests.codingAgent.description": "Enables integration with the asynchronous GitHub Coding Agent",
24-
"githubPullRequests.codingAgent.autoCommitAndPush.description": "Automatically commit and push changes before initiating a GitHub Coding Agent session",
23+
"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",
2526
"githubPullRequests.remotes.markdownDescription": "List of remotes, by name, to fetch pull requests from.",
2627
"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.",
2728
"githubPullRequests.queries.label.description": "The label to display for the query in the Pull Requests tree",

0 commit comments

Comments
 (0)