2026-03-17 23:00:59 -07:00
|
|
|
import { definePluginEntry, type OpenClawPluginApi } from "./runtime-api.js";
|
2026-01-23 00:49:32 +00:00
|
|
|
|
2026-03-17 00:14:01 -07:00
|
|
|
export default definePluginEntry({
|
|
|
|
|
id: "open-prose",
|
|
|
|
|
name: "OpenProse",
|
|
|
|
|
description: "Plugin-shipped prose skills bundle",
|
|
|
|
|
register(_api: OpenClawPluginApi) {
|
|
|
|
|
// OpenProse is delivered via plugin-shipped skills.
|
|
|
|
|
},
|
|
|
|
|
});
|