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 2 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('Coding agent will continue your work in \'{0}\'.', repoName);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this (and the instance below) should be The coding agent, but open to feedback

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated both instances to use "The coding agent" for better grammar and consistency. Changes are in commit 77501be.

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('Coding agent will implement the specification outlined in this prompt file'),
{
modal: true,
detail: source !== 'prompt' ? detail : undefined
Expand Down