@quolu/lattice 0.63.8 → 0.63.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quolu/lattice",
3
- "version": "0.63.8",
3
+ "version": "0.63.9",
4
4
  "description": "Schedulability compiler for multi-agent development: observe real code boundaries, refactor the conflicting seam, recompile the plan for parallel execution",
5
5
  "author": {
6
6
  "name": "Quo / クオ at kitepon.dev",
@@ -128,7 +128,7 @@ function validateEdges(value, schema) {
128
128
  const basic = exactRecord(edge, ['from', 'to']);
129
129
  const refsValid = nodeRef(edge?.from) && nodeRef(edge?.to);
130
130
  const crossPlan = refsValid && isCrossPlanEdge(edge);
131
- const withReason = [TODO_EXTRACTION_SCHEMA_V3, TODO_EXTRACTION_SCHEMA_V4].includes(schema) && crossPlan
131
+ const withReason = [TODO_EXTRACTION_SCHEMA_V3, TODO_EXTRACTION_SCHEMA_V4].includes(schema)
132
132
  && exactRecord(edge, ['from', 'to', 'reason'])
133
133
  && boundedText(edge.reason);
134
134
  return (basic || withReason) && refsValid