@thanh01.pmt/curriculum-kit 1.4.47 → 1.4.48

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.
@@ -1465,7 +1465,25 @@ var PlanningNodeSchema = zod.z.object({
1465
1465
  file: zod.z.string(),
1466
1466
  evidence: zod.z.string().default("")
1467
1467
  })).default([]),
1468
- phase_id: zod.z.string().default("")
1468
+ phase_id: zod.z.string().default(""),
1469
+ // P52/T2.1: tangible user-visible outcome projected from the graph step
1470
+ // (checkpoint candidate for session cutting). Empty = not a checkpoint.
1471
+ user_visible_deliverable: zod.z.string().default(""),
1472
+ // P52/T3.1 — depth-reconcile inputs (mirrored from the feed; optional so
1473
+ // raw graphs without variants keep planning unchanged):
1474
+ // • depth_variants: minutes to teach this node at each depth level (ULO ≤
1475
+ // CIO ≤ SIO) — the reconciler's price list for downgrades.
1476
+ // • depth_scaffold_candidates: parallel to scaffold_candidates but acting
1477
+ // on DEPTH (SIO→CIO, CIO→ULO) instead of lesson time.
1478
+ // • is_core: Master-Tree core concept — never downgraded; escalate instead.
1479
+ depth_variants: zod.z.object({ ulo: zod.z.number().int().nonnegative(), cio: zod.z.number().int().nonnegative(), sio: zod.z.number().int().nonnegative() }).optional(),
1480
+ depth_scaffold_candidates: zod.z.array(zod.z.object({
1481
+ from_depth: DepthLevelSchema,
1482
+ to_depth: DepthLevelSchema,
1483
+ minutes_saved: zod.z.number().int().nonnegative(),
1484
+ reason: zod.z.string().default("")
1485
+ })).optional(),
1486
+ is_core: zod.z.boolean().default(false)
1469
1487
  });
1470
1488
  var DependencyEdgeSchema = zod.z.object({
1471
1489
  from: zod.z.string(),