Skip to content

Commit 7e77574

Browse files
Copilotbamurtaugh
andcommitted
Update coding agent prompt title and description for consistency
Co-authored-by: bamurtaugh <25310137+bamurtaugh@users.noreply.github.com>
1 parent 61d8cc2 commit 7e77574

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/github/copilotRemoteAgent.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,8 @@ export class CopilotRemoteAgentManager extends Disposable {
306306
};
307307

308308
let autoPushAndCommit = false;
309-
const message = vscode.l10n.t('Copilot coding agent will continue your work in \'{0}\'.', repoName);
310-
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.');
309+
const message = vscode.l10n.t('Coding agent will continue your work in \'{0}\'.', repoName);
310+
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.');
311311
if (source !== 'prompt' && hasChanges && this.autoCommitAndPushEnabled()) {
312312
// Pending changes modal
313313
const modalResult = await vscode.window.showInformationMessage(
@@ -342,7 +342,7 @@ export class CopilotRemoteAgentManager extends Disposable {
342342
} else {
343343
// No pending changes modal
344344
const modalResult = await vscode.window.showInformationMessage(
345-
source !== 'prompt' ? message : vscode.l10n.t('Copilot coding agent will implement the specification outlined in this prompt file'),
345+
source !== 'prompt' ? message : vscode.l10n.t('Coding agent will implement the specification outlined in this prompt file'),
346346
{
347347
modal: true,
348348
detail: source !== 'prompt' ? detail : undefined

0 commit comments

Comments
 (0)