237 lines
8.8 KiB
TypeScript
237 lines
8.8 KiB
TypeScript
import type {
|
|
AdapterEnvironmentCheck,
|
|
AdapterEnvironmentTestContext,
|
|
AdapterEnvironmentTestResult,
|
|
} from "@paperclipai/adapter-utils";
|
|
import {
|
|
asString,
|
|
asStringArray,
|
|
parseObject,
|
|
ensureAbsoluteDirectory,
|
|
ensureCommandResolvable,
|
|
ensurePathInEnv,
|
|
runChildProcess,
|
|
} from "@paperclipai/adapter-utils/server-utils";
|
|
import path from "node:path";
|
|
import { DEFAULT_OPENCODE_LOCAL_MODEL } from "../index.js";
|
|
import { parseOpenCodeJsonl } from "./parse.js";
|
|
|
|
function summarizeStatus(checks: AdapterEnvironmentCheck[]): AdapterEnvironmentTestResult["status"] {
|
|
if (checks.some((check) => check.level === "error")) return "fail";
|
|
if (checks.some((check) => check.level === "warn")) return "warn";
|
|
return "pass";
|
|
}
|
|
|
|
function isNonEmpty(value: unknown): value is string {
|
|
return typeof value === "string" && value.trim().length > 0;
|
|
}
|
|
|
|
function getEffectiveEnvValue(envOverrides: Record<string, string>, key: string): string {
|
|
if (Object.prototype.hasOwnProperty.call(envOverrides, key)) {
|
|
const raw = envOverrides[key];
|
|
return typeof raw === "string" ? raw : "";
|
|
}
|
|
const raw = process.env[key];
|
|
return typeof raw === "string" ? raw : "";
|
|
}
|
|
|
|
function firstNonEmptyLine(text: string): string {
|
|
return (
|
|
text
|
|
.split(/\r?\n/)
|
|
.map((line) => line.trim())
|
|
.find(Boolean) ?? ""
|
|
);
|
|
}
|
|
|
|
function commandLooksLike(command: string, expected: string): boolean {
|
|
const base = path.basename(command).toLowerCase();
|
|
return base === expected || base === `${expected}.cmd` || base === `${expected}.exe`;
|
|
}
|
|
|
|
function summarizeProbeDetail(stdout: string, stderr: string, parsedError: string | null): string | null {
|
|
const raw = parsedError?.trim() || firstNonEmptyLine(stderr) || firstNonEmptyLine(stdout);
|
|
if (!raw) return null;
|
|
const clean = raw.replace(/\s+/g, " ").trim();
|
|
const max = 240;
|
|
return clean.length > max ? `${clean.slice(0, max - 1)}…` : clean;
|
|
}
|
|
|
|
const OPENCODE_AUTH_REQUIRED_RE =
|
|
/(?:not\s+authenticated|authentication\s+required|unauthorized|forbidden|api(?:[_\s-]?key)?(?:\s+is)?\s+required|missing\s+api(?:[_\s-]?key)?|openai[_\s-]?api[_\s-]?key|provider\s+credentials|login\s+required)/i;
|
|
const OPENCODE_MODEL_NOT_FOUND_RE = /ProviderModelNotFoundError|provider\s+model\s+not\s+found/i;
|
|
|
|
export async function testEnvironment(
|
|
ctx: AdapterEnvironmentTestContext,
|
|
): Promise<AdapterEnvironmentTestResult> {
|
|
const checks: AdapterEnvironmentCheck[] = [];
|
|
const config = parseObject(ctx.config);
|
|
const command = asString(config.command, "opencode");
|
|
const cwd = asString(config.cwd, process.cwd());
|
|
|
|
try {
|
|
await ensureAbsoluteDirectory(cwd, { createIfMissing: true });
|
|
checks.push({
|
|
code: "opencode_cwd_valid",
|
|
level: "info",
|
|
message: `Working directory is valid: ${cwd}`,
|
|
});
|
|
} catch (err) {
|
|
checks.push({
|
|
code: "opencode_cwd_invalid",
|
|
level: "error",
|
|
message: err instanceof Error ? err.message : "Invalid working directory",
|
|
detail: cwd,
|
|
});
|
|
}
|
|
|
|
const envConfig = parseObject(config.env);
|
|
const env: Record<string, string> = {};
|
|
for (const [key, value] of Object.entries(envConfig)) {
|
|
if (typeof value === "string") env[key] = value;
|
|
}
|
|
const runtimeEnv = ensurePathInEnv({ ...process.env, ...env });
|
|
try {
|
|
await ensureCommandResolvable(command, cwd, runtimeEnv);
|
|
checks.push({
|
|
code: "opencode_command_resolvable",
|
|
level: "info",
|
|
message: `Command is executable: ${command}`,
|
|
});
|
|
} catch (err) {
|
|
checks.push({
|
|
code: "opencode_command_unresolvable",
|
|
level: "error",
|
|
message: err instanceof Error ? err.message : "Command is not executable",
|
|
detail: command,
|
|
});
|
|
}
|
|
|
|
const configDefinesOpenAiKey = Object.prototype.hasOwnProperty.call(env, "OPENAI_API_KEY");
|
|
const effectiveOpenAiKey = getEffectiveEnvValue(env, "OPENAI_API_KEY");
|
|
if (isNonEmpty(effectiveOpenAiKey)) {
|
|
const source = configDefinesOpenAiKey ? "adapter config env" : "server environment";
|
|
checks.push({
|
|
code: "opencode_openai_api_key_present",
|
|
level: "info",
|
|
message: "OPENAI_API_KEY is set for OpenCode authentication.",
|
|
detail: `Detected in ${source}.`,
|
|
});
|
|
} else {
|
|
checks.push({
|
|
code: "opencode_openai_api_key_missing",
|
|
level: "warn",
|
|
message: "OPENAI_API_KEY is not set. OpenCode runs may fail until authentication is configured.",
|
|
hint: configDefinesOpenAiKey
|
|
? "adapterConfig.env defines OPENAI_API_KEY but it is empty. Set a non-empty value or remove the override."
|
|
: "Set OPENAI_API_KEY in adapter env/shell, or authenticate with `opencode auth login`.",
|
|
});
|
|
}
|
|
|
|
const canRunProbe =
|
|
checks.every((check) => check.code !== "opencode_cwd_invalid" && check.code !== "opencode_command_unresolvable");
|
|
if (canRunProbe) {
|
|
if (!commandLooksLike(command, "opencode")) {
|
|
checks.push({
|
|
code: "opencode_hello_probe_skipped_custom_command",
|
|
level: "info",
|
|
message: "Skipped hello probe because command is not `opencode`.",
|
|
detail: command,
|
|
hint: "Use the `opencode` CLI command to run the automatic installation and auth probe.",
|
|
});
|
|
} else {
|
|
const model = asString(config.model, DEFAULT_OPENCODE_LOCAL_MODEL).trim();
|
|
const variant = asString(config.variant, asString(config.effort, "")).trim();
|
|
const extraArgs = (() => {
|
|
const fromExtraArgs = asStringArray(config.extraArgs);
|
|
if (fromExtraArgs.length > 0) return fromExtraArgs;
|
|
return asStringArray(config.args);
|
|
})();
|
|
|
|
const args = ["run", "--format", "json"];
|
|
if (model) args.push("--model", model);
|
|
if (variant) args.push("--variant", variant);
|
|
if (extraArgs.length > 0) args.push(...extraArgs);
|
|
args.push("Respond with hello.");
|
|
|
|
const probe = await runChildProcess(
|
|
`opencode-envtest-${Date.now()}-${Math.random().toString(16).slice(2)}`,
|
|
command,
|
|
args,
|
|
{
|
|
cwd,
|
|
env,
|
|
timeoutSec: 45,
|
|
graceSec: 5,
|
|
onLog: async () => {},
|
|
},
|
|
);
|
|
const parsed = parseOpenCodeJsonl(probe.stdout);
|
|
const detail = summarizeProbeDetail(probe.stdout, probe.stderr, parsed.errorMessage);
|
|
const authEvidence = `${parsed.errorMessage ?? ""}\n${probe.stdout}\n${probe.stderr}`.trim();
|
|
const modelNotFound = OPENCODE_MODEL_NOT_FOUND_RE.test(authEvidence);
|
|
const modelProvider = (() => {
|
|
const slash = model.indexOf("/");
|
|
if (slash <= 0) return "openai";
|
|
return model.slice(0, slash).toLowerCase();
|
|
})();
|
|
|
|
if (probe.timedOut) {
|
|
checks.push({
|
|
code: "opencode_hello_probe_timed_out",
|
|
level: "warn",
|
|
message: "OpenCode hello probe timed out.",
|
|
hint: "Retry the probe. If this persists, verify `opencode run --format json \"Respond with hello\"` manually.",
|
|
});
|
|
} else if ((probe.exitCode ?? 1) === 0) {
|
|
const summary = parsed.summary.trim();
|
|
const hasHello = /\bhello\b/i.test(summary);
|
|
checks.push({
|
|
code: hasHello ? "opencode_hello_probe_passed" : "opencode_hello_probe_unexpected_output",
|
|
level: hasHello ? "info" : "warn",
|
|
message: hasHello
|
|
? "OpenCode hello probe succeeded."
|
|
: "OpenCode probe ran but did not return `hello` as expected.",
|
|
...(summary ? { detail: summary.replace(/\s+/g, " ").trim().slice(0, 240) } : {}),
|
|
...(hasHello
|
|
? {}
|
|
: {
|
|
hint: "Try `opencode run --format json \"Respond with hello\"` manually to inspect full output.",
|
|
}),
|
|
});
|
|
} else if (modelNotFound) {
|
|
checks.push({
|
|
code: "opencode_hello_probe_model_unavailable",
|
|
level: "warn",
|
|
message: `OpenCode could not run model \`${model}\`.`,
|
|
...(detail ? { detail } : {}),
|
|
hint: `Run \`opencode models ${modelProvider}\` and set adapterConfig.model to one of the available models.`,
|
|
});
|
|
} else if (OPENCODE_AUTH_REQUIRED_RE.test(authEvidence)) {
|
|
checks.push({
|
|
code: "opencode_hello_probe_auth_required",
|
|
level: "warn",
|
|
message: "OpenCode CLI is installed, but authentication is not ready.",
|
|
...(detail ? { detail } : {}),
|
|
hint: "Configure OPENAI_API_KEY in adapter env/shell, then retry the probe.",
|
|
});
|
|
} else {
|
|
checks.push({
|
|
code: "opencode_hello_probe_failed",
|
|
level: "error",
|
|
message: "OpenCode hello probe failed.",
|
|
...(detail ? { detail } : {}),
|
|
hint: "Run `opencode run --format json \"Respond with hello\"` manually in this working directory to debug.",
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
return {
|
|
adapterType: ctx.adapterType,
|
|
status: summarizeStatus(checks),
|
|
checks,
|
|
testedAt: new Date().toISOString(),
|
|
};
|
|
}
|