fix(omo-codex): write local installer command shims on Windows

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-05-26 11:18:47 +09:00
parent 22bcb4b45a
commit 3de8bb2578
2 changed files with 55 additions and 3 deletions
+31 -3
View File
@@ -25,18 +25,29 @@ export async function pruneMarketplaceCache({ codexHome, marketplaceName, keepPl
}
}
export async function linkCachedPluginBins({ binDir, pluginRoot }) {
export async function linkCachedPluginBins({ binDir, pluginRoot, platform = process.platform }) {
const binLinks = await discoverPackageBins(pluginRoot);
await mkdir(binDir, { recursive: true });
const linked = [];
for (const link of binLinks) {
const linkPath = join(binDir, link.name);
await replaceSymlink(linkPath, link.target);
const linkPath = await linkCachedPluginBin(binDir, link, platform);
linked.push({ name: link.name, path: linkPath, target: link.target });
}
return linked;
}
async function linkCachedPluginBin(binDir, link, platform) {
if (platform === "win32") {
const linkPath = join(binDir, `${link.name}.cmd`);
await replaceCommandShim(linkPath, link.target);
return linkPath;
}
const linkPath = join(binDir, link.name);
await replaceSymlink(linkPath, link.target);
return linkPath;
}
async function maybeRunNpmInstall(cwd, runCommand, args = ["install"]) {
if (!(await exists(join(cwd, "package.json")))) return;
await runCommand("npm", args, { cwd });
@@ -105,6 +116,23 @@ async function replaceSymlink(linkPath, targetPath) {
await symlink(targetPath, linkPath);
}
async function replaceCommandShim(linkPath, targetPath) {
if (await existingNonShim(linkPath)) {
throw new Error(`${linkPath} already exists and is not a command shim`);
}
await writeFile(linkPath, `@echo off\r\nnode "${targetPath}" %*\r\n`);
}
async function existingNonShim(path) {
try {
const stat = await lstat(path);
return !stat.isFile();
} catch (error) {
if (error instanceof Error && "code" in error && error.code === "ENOENT") return false;
throw error;
}
}
async function existingNonSymlink(path) {
try {
const stat = await lstat(path);