mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-21 15:01:03 +00:00
16 lines
445 B
TypeScript
16 lines
445 B
TypeScript
// Public Lobster plugin helpers.
|
|
// Keep this surface narrow and limited to the Lobster workflow/tool contract.
|
|
|
|
export { definePluginEntry } from "./core.js";
|
|
export {
|
|
applyWindowsSpawnProgramPolicy,
|
|
materializeWindowsSpawnProgram,
|
|
resolveWindowsSpawnProgramCandidate,
|
|
} from "./windows-spawn.js";
|
|
export type {
|
|
AnyAgentTool,
|
|
OpenClawPluginApi,
|
|
OpenClawPluginToolContext,
|
|
OpenClawPluginToolFactory,
|
|
} from "../plugins/types.js";
|