From 61d8cc2878cff89782484ea83d57784423b540d1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 10 Jul 2025 21:07:10 +0000 Subject: [PATCH 1/3] Initial plan From 7e775749ad91ae1be68eec9ab0d50b9a8c9cd8fb Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 10 Jul 2025 21:17:16 +0000 Subject: [PATCH 2/3] Update coding agent prompt title and description for consistency Co-authored-by: bamurtaugh <25310137+bamurtaugh@users.noreply.github.com> --- src/github/copilotRemoteAgent.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/github/copilotRemoteAgent.ts b/src/github/copilotRemoteAgent.ts index e0516411d7..eb648584ab 100644 --- a/src/github/copilotRemoteAgent.ts +++ b/src/github/copilotRemoteAgent.ts @@ -306,8 +306,8 @@ export class CopilotRemoteAgentManager extends Disposable { }; let autoPushAndCommit = false; - const message = vscode.l10n.t('Copilot coding agent will continue your work in \'{0}\'.', repoName); - const detail = vscode.l10n.t('Your current chat session will end, and its context will be used to continue your work in a new pull request.'); + const message = vscode.l10n.t('Coding agent will continue your work in \'{0}\'.', repoName); + const detail = vscode.l10n.t('Your current chat session will end, and its context will be used to continue your work in a new branch and pull request.'); if (source !== 'prompt' && hasChanges && this.autoCommitAndPushEnabled()) { // Pending changes modal const modalResult = await vscode.window.showInformationMessage( @@ -342,7 +342,7 @@ export class CopilotRemoteAgentManager extends Disposable { } else { // No pending changes modal const modalResult = await vscode.window.showInformationMessage( - source !== 'prompt' ? message : vscode.l10n.t('Copilot coding agent will implement the specification outlined in this prompt file'), + source !== 'prompt' ? message : vscode.l10n.t('Coding agent will implement the specification outlined in this prompt file'), { modal: true, detail: source !== 'prompt' ? detail : undefined From 77501bef08a49ea04800a9225cbe1e9c19250024 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 10 Jul 2025 23:12:27 +0000 Subject: [PATCH 3/3] Change "Coding agent" to "The coding agent" in prompts Co-authored-by: bamurtaugh <25310137+bamurtaugh@users.noreply.github.com> --- src/github/copilotRemoteAgent.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/github/copilotRemoteAgent.ts b/src/github/copilotRemoteAgent.ts index eb648584ab..61ec79d98c 100644 --- a/src/github/copilotRemoteAgent.ts +++ b/src/github/copilotRemoteAgent.ts @@ -306,7 +306,7 @@ export class CopilotRemoteAgentManager extends Disposable { }; let autoPushAndCommit = false; - const message = vscode.l10n.t('Coding agent will continue your work in \'{0}\'.', repoName); + const message = vscode.l10n.t('The coding agent will continue your work in \'{0}\'.', repoName); const detail = vscode.l10n.t('Your current chat session will end, and its context will be used to continue your work in a new branch and pull request.'); if (source !== 'prompt' && hasChanges && this.autoCommitAndPushEnabled()) { // Pending changes modal @@ -342,7 +342,7 @@ export class CopilotRemoteAgentManager extends Disposable { } else { // No pending changes modal const modalResult = await vscode.window.showInformationMessage( - source !== 'prompt' ? message : vscode.l10n.t('Coding agent will implement the specification outlined in this prompt file'), + source !== 'prompt' ? message : vscode.l10n.t('The coding agent will implement the specification outlined in this prompt file'), { modal: true, detail: source !== 'prompt' ? detail : undefined