mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
94 lines
2.4 KiB
TypeScript
94 lines
2.4 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
export const IDE_DEFINITIONS = {
|
|
devin: { name: 'devin', displayName: 'Devin' },
|
|
replit: { name: 'replit', displayName: 'Replit' },
|
|
cursor: { name: 'cursor', displayName: 'Cursor' },
|
|
cloudshell: { name: 'cloudshell', displayName: 'Cloud Shell' },
|
|
codespaces: { name: 'codespaces', displayName: 'GitHub Codespaces' },
|
|
firebasestudio: { name: 'firebasestudio', displayName: 'Firebase Studio' },
|
|
trae: { name: 'trae', displayName: 'Trae' },
|
|
vscode: { name: 'vscode', displayName: 'VS Code' },
|
|
vscodefork: { name: 'vscodefork', displayName: 'IDE' },
|
|
} as const;
|
|
|
|
export interface IdeInfo {
|
|
name: string;
|
|
displayName: string;
|
|
}
|
|
|
|
export function isCloudShell(): boolean {
|
|
return !!(process.env['EDITOR_IN_CLOUD_SHELL'] || process.env['CLOUD_SHELL']);
|
|
}
|
|
|
|
export function detectIdeFromEnv(): IdeInfo {
|
|
if (process.env['__COG_BASHRC_SOURCED']) {
|
|
return IDE_DEFINITIONS.devin;
|
|
}
|
|
if (process.env['REPLIT_USER']) {
|
|
return IDE_DEFINITIONS.replit;
|
|
}
|
|
if (process.env['CURSOR_TRACE_ID']) {
|
|
return IDE_DEFINITIONS.cursor;
|
|
}
|
|
if (process.env['CODESPACES']) {
|
|
return IDE_DEFINITIONS.codespaces;
|
|
}
|
|
if (isCloudShell()) {
|
|
return IDE_DEFINITIONS.cloudshell;
|
|
}
|
|
if (process.env['TERM_PRODUCT'] === 'Trae') {
|
|
return IDE_DEFINITIONS.trae;
|
|
}
|
|
if (process.env['MONOSPACE_ENV']) {
|
|
return IDE_DEFINITIONS.firebasestudio;
|
|
}
|
|
return IDE_DEFINITIONS.vscode;
|
|
}
|
|
|
|
function verifyVSCode(
|
|
ide: IdeInfo,
|
|
ideProcessInfo: {
|
|
pid: number;
|
|
command: string;
|
|
},
|
|
): IdeInfo {
|
|
if (ide.name !== IDE_DEFINITIONS.vscode.name) {
|
|
return ide;
|
|
}
|
|
if (
|
|
ideProcessInfo.command &&
|
|
ideProcessInfo.command.toLowerCase().includes('code')
|
|
) {
|
|
return IDE_DEFINITIONS.vscode;
|
|
}
|
|
return IDE_DEFINITIONS.vscodefork;
|
|
}
|
|
|
|
export function detectIde(
|
|
ideProcessInfo: {
|
|
pid: number;
|
|
command: string;
|
|
},
|
|
ideInfoFromFile?: { name?: string; displayName?: string },
|
|
): IdeInfo | undefined {
|
|
if (ideInfoFromFile?.name && ideInfoFromFile.displayName) {
|
|
return {
|
|
name: ideInfoFromFile.name,
|
|
displayName: ideInfoFromFile.displayName,
|
|
};
|
|
}
|
|
|
|
// Only VSCode-based integrations are currently supported.
|
|
if (process.env['TERM_PROGRAM'] !== 'vscode') {
|
|
return undefined;
|
|
}
|
|
|
|
const ide = detectIdeFromEnv();
|
|
return verifyVSCode(ide, ideProcessInfo);
|
|
}
|