Files
openclaw/extensions/oc-path/index.ts
2026-05-09 01:48:35 -04:00

12 lines
338 B
TypeScript

import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
import { registerOcPathCli } from "./cli-registration.js";
export default definePluginEntry({
id: "oc-path",
name: "OC Path",
description: "Adds the openclaw path CLI for oc:// workspace file addressing.",
register(api) {
registerOcPathCli(api);
},
});