buroventures-harald-code
Version:
Harald Code - AI-powered coding assistant CLI
54 lines • 1.94 kB
JavaScript
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import fs from 'fs/promises';
import * as os from 'os';
import path from 'path';
// Individual warning checks
const homeDirectoryCheck = {
id: 'home-directory',
check: async (workspaceRoot) => {
try {
const [workspaceRealPath, homeRealPath] = await Promise.all([
fs.realpath(workspaceRoot),
fs.realpath(os.homedir()),
]);
if (workspaceRealPath === homeRealPath) {
return 'You are running Qwen Code in your home directory. It is recommended to run in a project-specific directory.';
}
return null;
}
catch (_err) {
return 'Could not verify the current directory due to a file system error.';
}
},
};
const rootDirectoryCheck = {
id: 'root-directory',
check: async (workspaceRoot) => {
try {
const workspaceRealPath = await fs.realpath(workspaceRoot);
const errorMessage = 'Warning: You are running Qwen Code in the root directory. Your entire folder structure will be used for context. It is strongly recommended to run in a project-specific directory.';
// Check for Unix root directory
if (path.dirname(workspaceRealPath) === workspaceRealPath) {
return errorMessage;
}
return null;
}
catch (_err) {
return 'Could not verify the current directory due to a file system error.';
}
},
};
// All warning checks
const WARNING_CHECKS = [
homeDirectoryCheck,
rootDirectoryCheck,
];
export async function getUserStartupWarnings(workspaceRoot) {
const results = await Promise.all(WARNING_CHECKS.map((check) => check.check(workspaceRoot)));
return results.filter((msg) => msg !== null);
}
//# sourceMappingURL=userStartupWarnings.js.map