Expand description
Scripted plugin host (script).
Runs user-provided scripts as graph nodes behind the same Plugin trait
as native plugins. Scripts are parsed and validated once at policy-compile
time (in from_config), not per request; script failures surface as
PluginExecutionError exactly like native failures, routing through the
node’s error port.
Modules§
- lua_
runtime - Lua scripting runtime for the
scriptplugin, built on mlua’s Luau VM.
Structs§
- Script
Plugin - Executes a scripted plugin as a graph node.
Enums§
- Script
Runtime 🔒 - Dispatch over the available scripting runtimes (only Lua today; Python is planned but not implemented).