Skip to content

AIDK API Reference / aidk-kernel / ExecutionBoundaryConfig

Type Alias: ExecutionBoundaryConfig ​

ts
type ExecutionBoundaryConfig = "always" | "child" | "auto" | false;

Defined in: packages/kernel/src/execution-tracker.ts:15

Execution boundary behavior configuration.

  • 'always': Always create a new root execution (no parentExecutionId)
  • 'child': Always create a new child execution (with parentExecutionId from current context)
  • 'auto': Create only if not already in an execution (default behavior)
  • false: Never create an execution boundary, inherit from parent

Released under the MIT License.