2026-03-13 11:53:56 -05:00
|
|
|
import fs from "node:fs/promises";
|
|
|
|
|
import os from "node:os";
|
|
|
|
|
import path from "node:path";
|
|
|
|
|
import type { AdapterExecutionContext } from "@paperclipai/adapter-utils";
|
|
|
|
|
|
|
|
|
|
const TRUTHY_ENV_RE = /^(1|true|yes|on)$/i;
|
|
|
|
|
const COPIED_SHARED_FILES = ["config.json", "config.toml", "instructions.md"] as const;
|
|
|
|
|
const SYMLINKED_SHARED_FILES = ["auth.json"] as const;
|
2026-03-20 14:44:27 -05:00
|
|
|
const DEFAULT_PAPERCLIP_INSTANCE_ID = "default";
|
2026-03-13 11:53:56 -05:00
|
|
|
|
|
|
|
|
function nonEmpty(value: string | undefined): string | null {
|
|
|
|
|
return typeof value === "string" && value.trim().length > 0 ? value.trim() : null;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-13 14:53:30 -05:00
|
|
|
export async function pathExists(candidate: string): Promise<boolean> {
|
2026-03-13 11:53:56 -05:00
|
|
|
return fs.access(candidate).then(() => true).catch(() => false);
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-20 14:44:27 -05:00
|
|
|
export function resolveSharedCodexHomeDir(
|
2026-03-18 14:38:39 -05:00
|
|
|
env: NodeJS.ProcessEnv = process.env,
|
|
|
|
|
): string {
|
2026-03-13 11:53:56 -05:00
|
|
|
const fromEnv = nonEmpty(env.CODEX_HOME);
|
2026-03-20 14:44:27 -05:00
|
|
|
return fromEnv ? path.resolve(fromEnv) : path.join(os.homedir(), ".codex");
|
2026-03-13 11:53:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function isWorktreeMode(env: NodeJS.ProcessEnv): boolean {
|
|
|
|
|
return TRUTHY_ENV_RE.test(env.PAPERCLIP_IN_WORKTREE ?? "");
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-20 14:44:27 -05:00
|
|
|
export function resolveManagedCodexHomeDir(
|
2026-03-18 14:38:39 -05:00
|
|
|
env: NodeJS.ProcessEnv,
|
|
|
|
|
companyId?: string,
|
2026-03-20 14:44:27 -05:00
|
|
|
): string {
|
|
|
|
|
const paperclipHome = nonEmpty(env.PAPERCLIP_HOME) ?? path.resolve(os.homedir(), ".paperclip");
|
|
|
|
|
const instanceId = nonEmpty(env.PAPERCLIP_INSTANCE_ID) ?? DEFAULT_PAPERCLIP_INSTANCE_ID;
|
2026-03-18 14:38:39 -05:00
|
|
|
return companyId
|
2026-03-20 14:44:27 -05:00
|
|
|
? path.resolve(paperclipHome, "instances", instanceId, "companies", companyId, "codex-home")
|
|
|
|
|
: path.resolve(paperclipHome, "instances", instanceId, "codex-home");
|
2026-03-13 11:53:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function ensureParentDir(target: string): Promise<void> {
|
|
|
|
|
await fs.mkdir(path.dirname(target), { recursive: true });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function ensureSymlink(target: string, source: string): Promise<void> {
|
|
|
|
|
const existing = await fs.lstat(target).catch(() => null);
|
|
|
|
|
if (!existing) {
|
|
|
|
|
await ensureParentDir(target);
|
|
|
|
|
await fs.symlink(source, target);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!existing.isSymbolicLink()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const linkedPath = await fs.readlink(target).catch(() => null);
|
|
|
|
|
if (!linkedPath) return;
|
|
|
|
|
|
|
|
|
|
const resolvedLinkedPath = path.resolve(path.dirname(target), linkedPath);
|
|
|
|
|
if (resolvedLinkedPath === source) return;
|
|
|
|
|
|
|
|
|
|
await fs.unlink(target);
|
|
|
|
|
await fs.symlink(source, target);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function ensureCopiedFile(target: string, source: string): Promise<void> {
|
|
|
|
|
const existing = await fs.lstat(target).catch(() => null);
|
|
|
|
|
if (existing) return;
|
|
|
|
|
await ensureParentDir(target);
|
|
|
|
|
await fs.copyFile(source, target);
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-05 08:00:27 -07:00
|
|
|
/**
|
|
|
|
|
* Writes an `auth.json` containing only `OPENAI_API_KEY` so the codex CLI can
|
|
|
|
|
* authenticate via API key. Overwrites any existing file or symlink at that
|
|
|
|
|
* path. Required because the codex CLI (>= 0.122) ignores the `OPENAI_API_KEY`
|
|
|
|
|
* environment variable and only reads credentials from `$CODEX_HOME/auth.json`.
|
|
|
|
|
*/
|
|
|
|
|
export async function writeApiKeyAuthJson(home: string, apiKey: string): Promise<void> {
|
|
|
|
|
await fs.mkdir(home, { recursive: true });
|
|
|
|
|
const target = path.join(home, "auth.json");
|
|
|
|
|
await fs.rm(target, { force: true });
|
|
|
|
|
await fs.writeFile(target, JSON.stringify({ OPENAI_API_KEY: apiKey }), { mode: 0o600 });
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-20 14:44:27 -05:00
|
|
|
export async function prepareManagedCodexHome(
|
2026-03-13 11:53:56 -05:00
|
|
|
env: NodeJS.ProcessEnv,
|
|
|
|
|
onLog: AdapterExecutionContext["onLog"],
|
2026-03-18 14:38:39 -05:00
|
|
|
companyId?: string,
|
2026-05-05 08:00:27 -07:00
|
|
|
options: { apiKey?: string | null } = {},
|
2026-03-20 14:44:27 -05:00
|
|
|
): Promise<string> {
|
|
|
|
|
const targetHome = resolveManagedCodexHomeDir(env, companyId);
|
2026-05-05 08:00:27 -07:00
|
|
|
const apiKey = nonEmpty(options.apiKey ?? undefined);
|
2026-03-13 11:53:56 -05:00
|
|
|
|
2026-03-20 14:44:27 -05:00
|
|
|
const sourceHome = resolveSharedCodexHomeDir(env);
|
2026-05-05 08:00:27 -07:00
|
|
|
const seedFromShared = path.resolve(sourceHome) !== path.resolve(targetHome);
|
2026-03-13 11:53:56 -05:00
|
|
|
|
|
|
|
|
await fs.mkdir(targetHome, { recursive: true });
|
|
|
|
|
|
2026-05-05 08:00:27 -07:00
|
|
|
// If a previous run wrote an apikey-mode auth.json (regular file) and this
|
|
|
|
|
// run has no apiKey, remove it so the chatgpt-mode symlink can be restored.
|
|
|
|
|
// Without this cleanup, ensureSymlink bails on a non-symlink and Codex keeps
|
|
|
|
|
// authenticating with the stale key after it is removed from configuration.
|
|
|
|
|
if (!apiKey && seedFromShared) {
|
|
|
|
|
const authPath = path.join(targetHome, "auth.json");
|
|
|
|
|
const existing = await fs.lstat(authPath).catch(() => null);
|
|
|
|
|
if (existing && !existing.isSymbolicLink()) {
|
|
|
|
|
await fs.rm(authPath, { force: true });
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (seedFromShared) {
|
|
|
|
|
for (const name of SYMLINKED_SHARED_FILES) {
|
|
|
|
|
const source = path.join(sourceHome, name);
|
|
|
|
|
if (!(await pathExists(source))) continue;
|
|
|
|
|
await ensureSymlink(path.join(targetHome, name), source);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (const name of COPIED_SHARED_FILES) {
|
|
|
|
|
const source = path.join(sourceHome, name);
|
|
|
|
|
if (!(await pathExists(source))) continue;
|
|
|
|
|
await ensureCopiedFile(path.join(targetHome, name), source);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
await onLog(
|
|
|
|
|
"stdout",
|
|
|
|
|
`[paperclip] Using ${isWorktreeMode(env) ? "worktree-isolated" : "Paperclip-managed"} Codex home "${targetHome}" (seeded from "${sourceHome}").\n`,
|
|
|
|
|
);
|
2026-03-13 11:53:56 -05:00
|
|
|
}
|
|
|
|
|
|
2026-05-05 08:00:27 -07:00
|
|
|
if (apiKey) {
|
|
|
|
|
await writeApiKeyAuthJson(targetHome, apiKey);
|
|
|
|
|
await onLog(
|
|
|
|
|
"stdout",
|
|
|
|
|
`[paperclip] Wrote API-key auth.json into Codex home "${targetHome}" from configured OPENAI_API_KEY.\n`,
|
|
|
|
|
);
|
2026-03-13 11:53:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return targetHome;
|
|
|
|
|
}
|