The bundled node database (built from n8n-nodes-base 2.30.3) contains nodes-base.evaluation but not nodes-base.evaluationTrigger, even though dist/nodes/Evaluation/EvaluationTrigger/EvaluationTrigger.node.ee.js exists in the package and is registered in its package.json nodes list. The sibling Evaluation node (also an .ee.js file) loads fine, so this is specific to the trigger — likely a loader/parser failure during rebuild rather than blanket ee-file skipping.
Impact: agents can't discover or configure the Evaluation Trigger through search_nodes/get_node, which blocks building evaluation workflows — directly relevant now that #935 ships n8n_evaluations for reading evaluation test runs.
To reproduce: sqlite3 data/nodes.db "SELECT node_type FROM nodes WHERE node_type LIKE '%valuation%';" → returns only nodes-base.evaluation.
Next step: run the rebuild with debug logging and check why the EvaluationTrigger class fails to load/parse.
Conceived by Romuald Członkowski - www.aiadvisors.pl/en
The bundled node database (built from n8n-nodes-base 2.30.3) contains
nodes-base.evaluationbut notnodes-base.evaluationTrigger, even thoughdist/nodes/Evaluation/EvaluationTrigger/EvaluationTrigger.node.ee.jsexists in the package and is registered in its package.json nodes list. The siblingEvaluationnode (also an.ee.jsfile) loads fine, so this is specific to the trigger — likely a loader/parser failure during rebuild rather than blanket ee-file skipping.Impact: agents can't discover or configure the Evaluation Trigger through
search_nodes/get_node, which blocks building evaluation workflows — directly relevant now that #935 shipsn8n_evaluationsfor reading evaluation test runs.To reproduce:
sqlite3 data/nodes.db "SELECT node_type FROM nodes WHERE node_type LIKE '%valuation%';"→ returns onlynodes-base.evaluation.Next step: run the rebuild with debug logging and check why the EvaluationTrigger class fails to load/parse.
Conceived by Romuald Członkowski - www.aiadvisors.pl/en