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
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3380,6 +3380,10 @@
3380
3380
"body": {
3381
3381
"type": "string",
3382
3382
"description": "The body/description of the issue. Populate from chat context."
3383
+
},
3384
+
"existingPullRequest": {
3385
+
"type": "number",
3386
+
"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'."
? vscode.l10n.t('The coding agent will continue work on "**{0}**" in a new branch on "**{1}/{2}**". Any uncommitted changes will be **automatically pushed**.',title,targetRepo.owner,targetRepo.repo)
43
-
: vscode.l10n.t('The coding agent will start working on "**{0}**"',title),
42
+
message: existingPullRequest
43
+
? vscode.l10n.t('The coding agent will incorporate your feedback on existing pull request **#{0}**.',existingPullRequest)
44
+
: (targetRepo&&autoPushEnabled
45
+
? vscode.l10n.t('The coding agent will continue work on "**{0}**" in a new branch on "**{1}/{2}**". Any uncommitted changes will be **automatically pushed**.',title,targetRepo.owner,targetRepo.repo)
46
+
: vscode.l10n.t('The coding agent will start working on "**{0}**"',title)),
44
47
title: vscode.l10n.t('Start coding agent?'),
45
48
}
46
49
};
@@ -52,12 +55,27 @@ export class CopilotRemoteAgentTool implements vscode.LanguageModelTool<CopilotR
0 commit comments