Resolved 7 conflicts and reconciled local patches with upstream's evolved API: - packages/core/src/plugin-loader.ts: dropped local createContextFor()/buildContext() in favor of upstream's createRouteContext() which provides the same TaskStore- override capability our patch added. - packages/dashboard/src/routes.ts: removed local manual plugin-route mounter (upstream's createPluginRouter handles this with richer response support); kept registerPluginExemptPath loop so external webhook plugins (telemetry- watcher, Grafana/Sentry) still bypass daemon-token auth. Removed obsolete resolveHeartbeatMonitorFor (replaced by upstream's resolveHeartbeatMonitor). - packages/dashboard/src/routes/register-agent-runtime-routes.ts: ported 4 call sites to upstream's isHeartbeatMonitorForProject + resolveHeartbeatMonitor dual-fallback pattern (multi-project monitor resolution). - packages/cli/package.json: combined upstream's pi-ai 0.73.0 + dockerode bumps with our cross-spawn dep for vendored pi-claude-cli. - pnpm-workspace.yaml: kept telemetry-watcher entry alongside upstream's new plugin entries (droid-runtime, cursor-runtime, agent-browser, whatsapp-chat, roadmap, even-realities-glasses, even-cards, reports). - packages/dashboard/app/components/SetupWizardModal.css: kept z-index:110 fix (wizard stacks above ModelOnboardingModal) and added upstream's overflow-y/overscroll-behavior on .setup-wizard-overlay. - pnpm-lock.yaml: took upstream verbatim; pnpm install regenerated to include cross-spawn. Typechecks: @fusion/core and @fusion/dashboard pass cleanly.
64 lines
3.0 KiB
JavaScript
64 lines
3.0 KiB
JavaScript
/**
|
|
* OpenClaw Runtime Plugin
|
|
*
|
|
* Drives the local `openclaw` CLI as a subprocess (via
|
|
* `openclaw --no-color agent --local --json`). No daemon required.
|
|
*/
|
|
import { definePlugin } from "@fusion/plugin-sdk";
|
|
import { OpenClawRuntimeAdapter } from "./runtime-adapter.js";
|
|
import { resolveCliConfig } from "./pi-module.js";
|
|
import { probeOpenClawBinary } from "./probe.js";
|
|
const OPENCLAW_RUNTIME_ID = "openclaw";
|
|
const OPENCLAW_RUNTIME_VERSION = "0.2.0";
|
|
const openclawRuntimeMetadata = {
|
|
runtimeId: OPENCLAW_RUNTIME_ID,
|
|
name: "OpenClaw Runtime",
|
|
description: "Drives the local `openclaw` CLI (openclaw/openclaw)",
|
|
version: OPENCLAW_RUNTIME_VERSION,
|
|
};
|
|
const openclawRuntimeFactory = async (ctx) => {
|
|
return new OpenClawRuntimeAdapter(ctx?.settings);
|
|
};
|
|
const plugin = definePlugin({
|
|
manifest: {
|
|
id: "fusion-plugin-openclaw-runtime",
|
|
name: "OpenClaw Runtime Plugin",
|
|
version: OPENCLAW_RUNTIME_VERSION,
|
|
description: "Drives the local `openclaw` CLI for Fusion agents — embedded `--local` mode by default; gateway optional.",
|
|
author: "Fusion Team",
|
|
homepage: "https://docs.openclaw.ai/",
|
|
runtime: openclawRuntimeMetadata,
|
|
},
|
|
state: "installed",
|
|
hooks: {
|
|
onLoad: async (ctx) => {
|
|
const config = resolveCliConfig(ctx.settings);
|
|
const probe = await probeOpenClawBinary({ binaryPath: config.binaryPath });
|
|
ctx.logger.info(probe.available
|
|
? `OpenClaw Runtime Plugin loaded — binary=${config.binaryPath}${probe.version ? ` (${probe.version})` : ""}`
|
|
: `OpenClaw Runtime Plugin loaded but binary not detected: ${probe.reason ?? "unknown"}`);
|
|
ctx.emitEvent("openclaw-runtime:loaded", {
|
|
runtimeId: OPENCLAW_RUNTIME_ID,
|
|
version: OPENCLAW_RUNTIME_VERSION,
|
|
binaryAvailable: probe.available,
|
|
binaryPath: probe.binaryPath ?? config.binaryPath,
|
|
});
|
|
},
|
|
onUnload: () => {
|
|
// No persistent state to clean up — each prompt spawns a fresh subprocess.
|
|
},
|
|
},
|
|
runtime: {
|
|
metadata: openclawRuntimeMetadata,
|
|
factory: openclawRuntimeFactory,
|
|
},
|
|
});
|
|
export default plugin;
|
|
// ── Public exports ────────────────────────────────────────────────────────────
|
|
export { openclawRuntimeMetadata, openclawRuntimeFactory, OPENCLAW_RUNTIME_ID };
|
|
export { OpenClawRuntimeAdapter } from "./runtime-adapter.js";
|
|
export { resolveCliConfig, buildOpenClawArgs, createCliSession, promptCli, describeCliModel, extractStderrError, configureOpenClawMcpServer, } from "./pi-module.js";
|
|
export { toolsToMcpToolDefs, writeOpenClawMcpBridgeFiles, } from "./mcp-config.js";
|
|
// Probe re-export for the dashboard's runtime-provider-probes façade.
|
|
export { probeOpenClawBinary } from "./probe.js";
|
|
//# sourceMappingURL=index.js.map
|