Files
shockbot/agents/codex.ts
T
Shawn Morreau 71698d3e07 add codex
2025-11-12 17:24:26 -05:00

163 lines
5.4 KiB
TypeScript

import { spawnSync } from "node:child_process";
import { existsSync } from "node:fs";
import { log } from "../utils/cli.ts";
import { type Agent, instructions } from "./shared.ts";
let cachedCliPath: string | undefined;
export const codex: Agent = {
install: async (): Promise<string> => {
if (cachedCliPath) {
log.info(`Using cached Codex CLI at ${cachedCliPath}`);
return cachedCliPath;
}
// Check if codex CLI is already installed globally
try {
const result = spawnSync("which", ["codex"], { encoding: "utf-8" });
if (result.status === 0 && result.stdout) {
const globalCodexPath = result.stdout.trim();
if (globalCodexPath && existsSync(globalCodexPath)) {
cachedCliPath = globalCodexPath;
log.info(`Using global Codex CLI at ${globalCodexPath}`);
return cachedCliPath;
}
}
} catch {
// Codex CLI not found globally, continue with installation
}
// Install Codex CLI globally using npm
log.info(`📦 Installing Codex CLI globally with npm...`);
try {
const installResult = spawnSync("npm", ["install", "-g", "codex"], {
stdio: "inherit",
encoding: "utf-8",
});
if (installResult.status !== 0) {
throw new Error(`npm install failed with status ${installResult.status}`);
}
// Verify installation
const verifyResult = spawnSync("which", ["codex"], { encoding: "utf-8" });
if (verifyResult.status === 0 && verifyResult.stdout) {
const installedPath = verifyResult.stdout.trim();
if (installedPath && existsSync(installedPath)) {
cachedCliPath = installedPath;
log.info(`✓ Codex CLI installed at ${installedPath}`);
return cachedCliPath;
}
}
throw new Error("Codex CLI installation completed but executable not found");
} catch (error) {
const errorMessage = error instanceof Error ? error.message : String(error);
log.error(`Failed to install Codex CLI: ${errorMessage}`);
throw new Error(`Codex CLI installation failed: ${errorMessage}`);
}
},
run: async ({ prompt, mcpServers, apiKey }) => {
process.env.OPENAI_API_KEY = apiKey;
if (!cachedCliPath) {
throw new Error("Codex CLI not installed. Call install() before run().");
}
// Configure MCP servers for Codex (global config is fine - not part of repo)
if (mcpServers && Object.keys(mcpServers).length > 0) {
log.info("Configuring MCP servers for Codex...");
for (const [serverName, serverConfig] of Object.entries(mcpServers)) {
try {
// Only configure stdio servers (Codex CLI supports stdio MCP servers)
// Check if it's a stdio server config (has 'command' property)
if (!("command" in serverConfig)) {
log.warning(`MCP server '${serverName}' is not a stdio server, skipping...`);
continue;
}
// Build command and args
const command = serverConfig.command;
const args = serverConfig.args || [];
const envVars = serverConfig.env || {};
// Build the codex mcp add command with proper argument handling
const addArgs = ["mcp", "add", serverName, "--", command, ...args];
// Add environment variables as --env flags
for (const [key, value] of Object.entries(envVars)) {
addArgs.push("--env", `${key}=${value}`);
}
log.info(`Adding MCP server '${serverName}'...`);
const addResult = spawnSync("codex", addArgs, {
stdio: "inherit",
encoding: "utf-8",
env: {
...process.env,
OPENAI_API_KEY: apiKey,
},
});
if (addResult.status !== 0) {
throw new Error(
`codex mcp add failed: ${addResult.stderr || addResult.stdout || "Unknown error"}`
);
}
log.info(`✓ MCP server '${serverName}' configured`);
} catch (error) {
log.warning(
`Failed to configure MCP server '${serverName}': ${error instanceof Error ? error.message : String(error)}`
);
// Continue with other servers
}
}
}
// Use codex exec command via CLI
const fullPrompt = `${instructions}\n\n****** USER PROMPT ******\n${prompt}`;
log.info("Running Codex via CLI...");
try {
// Execute codex via CLI using child_process
const result = spawnSync("codex", ["exec", fullPrompt], {
encoding: "utf-8",
env: {
...process.env,
OPENAI_API_KEY: apiKey,
},
maxBuffer: 10 * 1024 * 1024, // 10MB buffer
});
if (result.status !== 0) {
const errorMessage = result.stderr || result.stdout || "Codex execution failed";
log.error(`Codex execution failed: ${errorMessage}`);
return {
success: false,
error: errorMessage,
output: result.stdout || "",
};
}
const output = result.stdout || "";
log.box(output, { title: "Codex" });
return {
success: true,
output,
};
} catch (cliError) {
const errorMessage = cliError instanceof Error ? cliError.message : String(cliError);
log.error(`Codex execution failed: ${errorMessage}`);
return {
success: false,
error: errorMessage,
output: "",
};
}
},
};