Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ import { CopilotCliBridgeSpanProcessor } from './copilotCliBridgeSpanProcessor';
import { CopilotCLISession, ICopilotCLISession } from './copilotcliSession';
import { ICopilotCLISkills } from './copilotCLISkills';
import { ICopilotCLIMCPHandler, McpServerMappings, remapCustomAgentTools } from './mcpHandler';
import { INTEGRATION_ID } from '../../../../platform/endpoint/common/licenseAgreement';
Comment thread
rebornix marked this conversation as resolved.


const COPILOT_CLI_WORKSPACE_JSON_FILE_KEY = 'github.copilot.cli.workspaceSessionFile';
Expand Down Expand Up @@ -680,6 +681,7 @@ export class CopilotCLISessionService extends Disposable implements ICopilotCLIS

const allOptions: SessionOptions = {
clientName: 'vscode',
integrationId: INTEGRATION_ID
};
Comment thread
rebornix marked this conversation as resolved.

const workingDirectory = getWorkingDirectory(options.workspace);
Expand Down
Loading