Skip to content

Documentation / @agentick/kernel / ExecutionBoundaryConfig

Type Alias: ExecutionBoundaryConfig ​

ExecutionBoundaryConfig = "always" | "child" | "auto" | false

Defined in: kernel/src/execution-tracker.ts:20

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 ISC License.