import type { WslOpencodeCheck, WslServerRuntime } from "./types" export const wslRuntimeRetryable = (runtime: WslServerRuntime) => runtime.kind === "failed" || runtime.kind === "stopped" export async function enterWslOpencodeStep( distro: string, probe: (distro: string) => Promise, select: (step: "opencode") => void, ) { await probe(distro) select("opencode") } export function wslOpencodeAction(check?: WslOpencodeCheck) { if (!check) return if (!check.resolvedPath) return "Install OpenCode" if (check.matchesDesktop === false) return "Update OpenCode" }