$ cat node-template.py
M
Macro
// A composite node that encapsulates a workspace as a reusable building block. Configure inputs and outputs via the wizard.
Control
Utility
template.py
1import json2import sys345def main():6 """Macro node stub — execution is handled by the macro executor."""7 print(json.dumps({8 "error": "Macro nodes are executed by the macro executor, not directly. "9 "Please configure the macro using the wizard.",10 }), file=sys.stderr)11 sys.exit(1)121314if __name__ == "__main__":15 main()$ git log --oneline
v1.0.1
HEAD
2026-05-07v1.0.02026-04-09