mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-25 08:52:12 +00:00
16 lines
477 B
TypeScript
16 lines
477 B
TypeScript
// Private Lobster plugin helpers for bundled extensions.
|
|
// Keep this surface narrow and limited to the Lobster workflow/tool contract.
|
|
|
|
export { definePluginEntry } from "./plugin-entry.js";
|
|
export {
|
|
applyWindowsSpawnProgramPolicy,
|
|
materializeWindowsSpawnProgram,
|
|
resolveWindowsSpawnProgramCandidate,
|
|
} from "./windows-spawn.js";
|
|
export type {
|
|
AnyAgentTool,
|
|
OpenClawPluginApi,
|
|
OpenClawPluginToolContext,
|
|
OpenClawPluginToolFactory,
|
|
} from "../plugins/types.js";
|