mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-25 13:30:45 -07:00
105 lines
2.7 KiB
TypeScript
105 lines
2.7 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' },
|
|
antigravity: { name: 'antigravity', displayName: 'Antigravity' },
|
|
sublimetext: { name: 'sublimetext', displayName: 'Sublime Text' },
|
|
} 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['ANTIGRAVITY_CLI_ALIAS']) {
|
|
return IDE_DEFINITIONS.antigravity;
|
|
}
|
|
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;
|
|
}
|
|
if (process.env['TERM_PROGRAM'] === 'sublime') {
|
|
return IDE_DEFINITIONS.sublimetext;
|
|
}
|
|
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 VS Code and Sublime Text integrations are currently supported.
|
|
if (
|
|
process.env['TERM_PROGRAM'] !== 'vscode' &&
|
|
process.env['TERM_PROGRAM'] !== 'sublime'
|
|
) {
|
|
return undefined;
|
|
}
|
|
|
|
const ide = detectIdeFromEnv();
|
|
return verifyVSCode(ide, ideProcessInfo);
|
|
}
|