@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.
@@ -5,7 +5,7 @@ import { S as SingleArtifactRequest, a as SingleArtifactResult } from '../gateSe
5
5
  export { b as CurriculumArtifactType, C as CurriculumGateMode, D as DEFAULT_GATE_SETTINGS, G as GateSettings, R as ResolvedGateSettings, g as gateModeFor, p as parseGateSettings, r as resolveGateSettings } from '../gateSettings-JoqERuS1.cjs';
6
6
  import * as workflow from 'workflow';
7
7
  import { z } from 'zod';
8
- import { F as FrameworkPack, C as CoverageGateReport } from '../standardsCoverageGate-49pJq5t8.cjs';
8
+ import { F as FrameworkPack, C as CoverageGateReport } from '../standardsCoverageGate-CLnq0d0s.cjs';
9
9
  import 'ai';
10
10
 
11
11
  interface GenerateMasterLessonStepInput {
@@ -5,7 +5,7 @@ import { S as SingleArtifactRequest, a as SingleArtifactResult } from '../gateSe
5
5
  export { b as CurriculumArtifactType, C as CurriculumGateMode, D as DEFAULT_GATE_SETTINGS, G as GateSettings, R as ResolvedGateSettings, g as gateModeFor, p as parseGateSettings, r as resolveGateSettings } from '../gateSettings-JoqERuS1.js';
6
6
  import * as workflow from 'workflow';
7
7
  import { z } from 'zod';
8
- import { F as FrameworkPack, C as CoverageGateReport } from '../standardsCoverageGate-49pJq5t8.js';
8
+ import { F as FrameworkPack, C as CoverageGateReport } from '../standardsCoverageGate-CLnq0d0s.js';
9
9
  import 'ai';
10
10
 
11
11
  interface GenerateMasterLessonStepInput {
@@ -2726,7 +2726,25 @@ var PlanningNodeSchema = z.object({
2726
2726
  file: z.string(),
2727
2727
  evidence: z.string().default("")
2728
2728
  })).default([]),
2729
- phase_id: z.string().default("")
2729
+ phase_id: z.string().default(""),
2730
+ // P52/T2.1: tangible user-visible outcome projected from the graph step
2731
+ // (checkpoint candidate for session cutting). Empty = not a checkpoint.
2732
+ user_visible_deliverable: z.string().default(""),
2733
+ // P52/T3.1 — depth-reconcile inputs (mirrored from the feed; optional so
2734
+ // raw graphs without variants keep planning unchanged):
2735
+ // • depth_variants: minutes to teach this node at each depth level (ULO ≤
2736
+ // CIO ≤ SIO) — the reconciler's price list for downgrades.
2737
+ // • depth_scaffold_candidates: parallel to scaffold_candidates but acting
2738
+ // on DEPTH (SIO→CIO, CIO→ULO) instead of lesson time.
2739
+ // • is_core: Master-Tree core concept — never downgraded; escalate instead.
2740
+ depth_variants: z.object({ ulo: z.number().int().nonnegative(), cio: z.number().int().nonnegative(), sio: z.number().int().nonnegative() }).optional(),
2741
+ depth_scaffold_candidates: z.array(z.object({
2742
+ from_depth: DepthLevelSchema,
2743
+ to_depth: DepthLevelSchema,
2744
+ minutes_saved: z.number().int().nonnegative(),
2745
+ reason: z.string().default("")
2746
+ })).optional(),
2747
+ is_core: z.boolean().default(false)
2730
2748
  });
2731
2749
  var DependencyEdgeSchema = z.object({
2732
2750
  from: z.string(),