- Add fusion-plugin-openclaw-runtime workspace package with manifest, runtime metadata, and deferred placeholder factory - Add unit tests for OpenClaw plugin behavior and PluginRunner runtime discovery compatibility - Document OpenClaw runtime installation and runtimeHint usage in README, getting-started, and settings reference docs - Include built dist artifacts for the new plugin and update workspace/lockfile entries
14 lines
652 B
TypeScript
14 lines
652 B
TypeScript
/**
|
|
* OpenClaw Runtime Plugin
|
|
*
|
|
* Registers an experimental OpenClaw runtime with Fusion's plugin runtime
|
|
* discovery pipeline. Runtime execution behavior is intentionally deferred.
|
|
*/
|
|
import type { FusionPlugin, PluginRuntimeFactory, PluginRuntimeManifestMetadata } from "@fusion/plugin-sdk";
|
|
declare const OPENCLAW_RUNTIME_ID = "openclaw";
|
|
declare const openclawRuntimeMetadata: PluginRuntimeManifestMetadata;
|
|
declare const openclawRuntimeFactory: PluginRuntimeFactory;
|
|
declare const plugin: FusionPlugin;
|
|
export default plugin;
|
|
export { openclawRuntimeMetadata, openclawRuntimeFactory, OPENCLAW_RUNTIME_ID };
|
|
//# sourceMappingURL=index.d.ts.map
|