Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3491,7 +3491,7 @@
},
{
"command": "github.copilot.cloud.sessions.refresh",
"when": "view == workbench.view.chat.sessions.copilot-cloud-agent",
"when": "view == workbench.view.chat.sessions.copilot-swe-agent",
"group": "navigation@1"
}
],
Expand Down Expand Up @@ -3776,7 +3776,7 @@
},
{
"command": "github.copilot.cloud.sessions.openInBrowser",
"when": "chatSessionType == copilot-cloud-agent",
"when": "chatSessionType == copilot-swe-agent",
"group": "context"
}
]
Expand Down Expand Up @@ -4163,8 +4163,8 @@
}
},
{
"type": "copilot-cloud-agent",
"name": "copilot-cloud-agent",
"type": "copilot-swe-agent",
"name": "copilot-swe-agent",
"displayName": "GitHub Copilot Cloud Agent",
"icon": "$(cloud)",
"welcomeTitle": "GitHub Copilot Cloud Agent",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const AGENTS_OPTION_GROUP_ID = 'agents';
const DEFAULT_AGENT_ID = '___vscode_default___';

export class CopilotChatSessionsProvider extends Disposable implements vscode.ChatSessionContentProvider, vscode.ChatSessionItemProvider {
public static readonly TYPE = 'copilot-cloud-agent';
public static readonly TYPE = 'copilot-swe-agent';
private readonly DELEGATE_MODAL_DETAILS = vscode.l10n.t('The agent will work asynchronously to create a pull request with your requested changes.');
private readonly COPILOT = 'GitHub Copilot Cloud Agent';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class ChatSessionsUriHandler implements CustomUriHandler {
const prId = params.get('id');
if (type?.startsWith('copilot') && prId) {
// For now we hardcode it to this type, eventually the full type should come in the URI
return this._openGitHubSession('copilot-cloud-agent', prId);
return this._openGitHubSession('copilot-swe-agent', prId);
}
}
}
Expand Down