@thanh01.pmt/curriculum-kit 1.4.34 → 1.4.36

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.
Files changed (36) hide show
  1. package/LICENSE +21 -0
  2. package/dist/ai/index.cjs +57 -1
  3. package/dist/ai/index.cjs.map +1 -1
  4. package/dist/ai/index.d.cts +2 -2
  5. package/dist/ai/index.d.ts +2 -2
  6. package/dist/ai/index.mjs +57 -1
  7. package/dist/ai/index.mjs.map +1 -1
  8. package/dist/{gateSettings-DabOqP6_.d.cts → gateSettings-oo5tCUS_.d.cts} +18 -0
  9. package/dist/{gateSettings-DabOqP6_.d.ts → gateSettings-oo5tCUS_.d.ts} +18 -0
  10. package/dist/index.cjs +764 -70
  11. package/dist/index.cjs.map +1 -1
  12. package/dist/index.d.cts +234 -74
  13. package/dist/index.d.ts +234 -74
  14. package/dist/index.mjs +748 -71
  15. package/dist/index.mjs.map +1 -1
  16. package/dist/pipeline/index.cjs +57 -1
  17. package/dist/pipeline/index.cjs.map +1 -1
  18. package/dist/pipeline/index.mjs +57 -1
  19. package/dist/pipeline/index.mjs.map +1 -1
  20. package/dist/schemas/index.cjs +63 -1
  21. package/dist/schemas/index.cjs.map +1 -1
  22. package/dist/schemas/index.d.cts +436 -33
  23. package/dist/schemas/index.d.ts +436 -33
  24. package/dist/schemas/index.mjs +58 -2
  25. package/dist/schemas/index.mjs.map +1 -1
  26. package/dist/standards/index.d.cts +2 -2
  27. package/dist/standards/index.d.ts +2 -2
  28. package/dist/workflow/index.cjs +84 -2
  29. package/dist/workflow/index.cjs.map +1 -1
  30. package/dist/workflow/index.d.cts +3 -3
  31. package/dist/workflow/index.d.ts +3 -3
  32. package/dist/workflow/index.mjs +84 -2
  33. package/dist/workflow/index.mjs.map +1 -1
  34. package/package.json +22 -23
  35. package/dist/{standardsCoverageGate-DR5YTtlt.d.cts → standardsCoverageGate-49pJq5t8.d.cts} +6 -6
  36. package/dist/{standardsCoverageGate-DR5YTtlt.d.ts → standardsCoverageGate-49pJq5t8.d.ts} +6 -6
@@ -28,6 +28,12 @@ interface HorizonSessionSnapshot {
28
28
  node_id: string;
29
29
  depth: 'ulo' | 'cio' | 'sio';
30
30
  }>;
31
+ zpd_status?: {
32
+ verdict: 'OK' | 'TOO_MANY_NEW' | 'NO_ZPD_BRIDGE';
33
+ new_concept_count?: number;
34
+ known_concept_count?: number;
35
+ issues?: string[];
36
+ };
31
37
  }
32
38
  interface CurriculumHorizon {
33
39
  targetLessonId: string;
@@ -35,6 +41,18 @@ interface CurriculumHorizon {
35
41
  totalLessons: number;
36
42
  targetTitle: string;
37
43
  targetKeywords: string[];
44
+ zpdStatus?: {
45
+ verdict: 'OK' | 'TOO_MANY_NEW' | 'NO_ZPD_BRIDGE';
46
+ new_concept_count?: number;
47
+ known_concept_count?: number;
48
+ issues?: string[];
49
+ };
50
+ spiralProgression?: Array<{
51
+ concept_code: string;
52
+ encounter_index: number;
53
+ bloom_cap: string;
54
+ depth: string;
55
+ }>;
38
56
  /**
39
57
  * TIER 2: Compact Mastery Set (L_1 .. L_{N-3})
40
58
  * Flat deduplicated keyword and concept sets without per-lesson overhead.
@@ -28,6 +28,12 @@ interface HorizonSessionSnapshot {
28
28
  node_id: string;
29
29
  depth: 'ulo' | 'cio' | 'sio';
30
30
  }>;
31
+ zpd_status?: {
32
+ verdict: 'OK' | 'TOO_MANY_NEW' | 'NO_ZPD_BRIDGE';
33
+ new_concept_count?: number;
34
+ known_concept_count?: number;
35
+ issues?: string[];
36
+ };
31
37
  }
32
38
  interface CurriculumHorizon {
33
39
  targetLessonId: string;
@@ -35,6 +41,18 @@ interface CurriculumHorizon {
35
41
  totalLessons: number;
36
42
  targetTitle: string;
37
43
  targetKeywords: string[];
44
+ zpdStatus?: {
45
+ verdict: 'OK' | 'TOO_MANY_NEW' | 'NO_ZPD_BRIDGE';
46
+ new_concept_count?: number;
47
+ known_concept_count?: number;
48
+ issues?: string[];
49
+ };
50
+ spiralProgression?: Array<{
51
+ concept_code: string;
52
+ encounter_index: number;
53
+ bloom_cap: string;
54
+ depth: string;
55
+ }>;
38
56
  /**
39
57
  * TIER 2: Compact Mastery Set (L_1 .. L_{N-3})
40
58
  * Flat deduplicated keyword and concept sets without per-lesson overhead.