Files
openclaw/extensions/acpx/index.ts
2026-04-04 15:14:51 +09:00

20 lines
573 B
TypeScript

import type { OpenClawPluginApi } from "./runtime-api.js";
import { createAcpxPluginConfigSchema } from "./src/config-schema.js";
const plugin = {
id: "acpx",
name: "ACPX Runtime",
description: "ACP runtime backend powered by the acpx CLI.",
configSchema: () => createAcpxPluginConfigSchema(),
async register(api: OpenClawPluginApi) {
const { createAcpxRuntimeService } = await import("./register.runtime.js");
api.registerService(
createAcpxRuntimeService({
pluginConfig: api.pluginConfig,
}),
);
},
};
export default plugin;