mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-12 01:31:08 +00:00
20 lines
553 B
TypeScript
20 lines
553 B
TypeScript
import { createAcpxRuntimeService } from "./register.runtime.js";
|
|
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(),
|
|
register(api: OpenClawPluginApi) {
|
|
api.registerService(
|
|
createAcpxRuntimeService({
|
|
pluginConfig: api.pluginConfig,
|
|
}),
|
|
);
|
|
},
|
|
};
|
|
|
|
export default plugin;
|