Skip to content

clankloop.core

Core execution primitives.

This package contains the runtime graph engine (:mod:clankloop.core.graph) and the environment/templating system (:mod:clankloop.core.env).

clankloop.core.graph

Execution graph engine — tasks, conditions, actions, and graph execution.

The execution graph (:class:ExecutionGraph) is the core runtime structure. It holds a set of named :class:Execution tasks, their branching logic (conditions and actions), and a shared environment (:class:~clankloop.core.env.Object). The graph walks tasks sequentially, evaluating conditions after each execution to determine the next task, set variables, or abort.