mirror of https://github.com/openclaw/openclaw.git
11 lines
312 B
TypeScript
11 lines
312 B
TypeScript
import { definePluginEntry, type OpenClawPluginApi } from "./runtime-api.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "open-prose",
|
|
name: "OpenProse",
|
|
description: "Plugin-shipped prose skills bundle",
|
|
register(_api: OpenClawPluginApi) {
|
|
// OpenProse is delivered via plugin-shipped skills.
|
|
},
|
|
});
|