Files
openclaw/extensions/oc-path/cli-metadata.ts
2026-06-04 22:07:59 -04:00

13 lines
390 B
TypeScript

// OC Path module implements cli metadata behavior.
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);
},
});