mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
73bead1239
* refactor(agents): split exec tool pipeline * chore(agents): keep exec prep type private
14 lines
443 B
TypeScript
14 lines
443 B
TypeScript
/** Public facade for the exec tool factory and default instance. */
|
|
import { createExecTool } from "./bash-tools.exec-run.js";
|
|
|
|
export type { BashSandboxConfig } from "./bash-tools.shared.js";
|
|
export type {
|
|
ExecElevatedDefaults,
|
|
ExecToolDefaults,
|
|
ExecToolDetails,
|
|
} from "./bash-tools.exec-types.js";
|
|
export { createExecTool };
|
|
|
|
/** Default exec tool instance used by agent tool registries. */
|
|
export const execTool = createExecTool();
|