mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 00:00:46 +00:00
19 lines
497 B
TypeScript
19 lines
497 B
TypeScript
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
|
|
export default definePluginEntry({
|
|
id: "canvas",
|
|
name: "Canvas",
|
|
description: "Experimental Canvas control and A2UI rendering surfaces for paired nodes.",
|
|
register(api) {
|
|
api.registerNodeCliFeature(() => {}, {
|
|
descriptors: [
|
|
{
|
|
name: "canvas",
|
|
description: "Capture or render canvas content from a paired node",
|
|
hasSubcommands: true,
|
|
},
|
|
],
|
|
});
|
|
},
|
|
});
|