forked from HAL9000/cleveragents-core
6a4b617517
Relates to #5427 The spec previously documented the subgraph node config field as actor_path inside the config block. The implementation (schema.py) uses actor_ref as a top-level field on NodeDefinition, not inside config. This commit aligns the spec with the implementation: - Renames actor_path -> actor_ref - Clarifies that actor_ref is a top-level field, NOT inside config - Adds actor_ref, lsp_binding, and tool_sources to the Node Definition table - Updates the node type-specific config table to note subgraph uses no config Note: The compiler (compiler.py) still has a bug reading node.config.get('actor_ref') instead of node.actor_ref. That is a separate implementation fix tracked in #5427.