Skip to content

Improve coding agent prompt title and description for consistency and clarity #7275

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/github/copilotRemoteAgent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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('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
const modalResult = await vscode.window.showInformationMessage(
Expand Down Expand Up @@ -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('The coding agent will implement the specification outlined in this prompt file'),
{
modal: true,
detail: source !== 'prompt' ? detail : undefined
Expand Down