mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 07:20:45 +00:00
20 lines
543 B
TypeScript
20 lines
543 B
TypeScript
import type { OpenClawPluginApi } from "openclaw/plugin-sdk/acpx";
|
|
import { createAcpxPluginConfigSchema } from "./src/config.js";
|
|
import { createAcpxRuntimeService } from "./src/service.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;
|