@thanh01.pmt/curriculum-kit 1.2.1 → 1.3.0

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.
@@ -1,8 +1,8 @@
1
1
  import { MilestoneInput, LessonPlan, CurriculumQualityReport, ActivityLab, CodeLab, SelfLab, DiagnosticQuiz, SlideDeck, Handout, Worksheet, TeacherGuide, Extension, ProjectRoadmap } from '../schemas/index.cjs';
2
2
  import { M as ModelResolutionOptions } from '../provider-factory-DxzOVEmh.cjs';
3
3
  import { G as GitPublishOptions, a as GitPublishResult, S as SupabasePublishOptions, b as SupabasePublishResult } from '../supabasePublisher-C627qXFT.cjs';
4
- import { S as SingleArtifactRequest, a as SingleArtifactResult } from '../gateSettings-Buk_MSML.cjs';
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-Buk_MSML.cjs';
4
+ import { S as SingleArtifactRequest, a as SingleArtifactResult } from '../gateSettings-L3FR2-MO.cjs';
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-L3FR2-MO.cjs';
6
6
  import * as workflow from 'workflow';
7
7
  import { z } from 'zod';
8
8
  import { F as FrameworkPack, C as CoverageGateReport } from '../standardsCoverageGate-CsUNzv6C.cjs';
@@ -1,8 +1,8 @@
1
1
  import { MilestoneInput, LessonPlan, CurriculumQualityReport, ActivityLab, CodeLab, SelfLab, DiagnosticQuiz, SlideDeck, Handout, Worksheet, TeacherGuide, Extension, ProjectRoadmap } from '../schemas/index.js';
2
2
  import { M as ModelResolutionOptions } from '../provider-factory-DxzOVEmh.js';
3
3
  import { G as GitPublishOptions, a as GitPublishResult, S as SupabasePublishOptions, b as SupabasePublishResult } from '../supabasePublisher-C627qXFT.js';
4
- import { S as SingleArtifactRequest, a as SingleArtifactResult } from '../gateSettings-Buk_MSML.js';
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-Buk_MSML.js';
4
+ import { S as SingleArtifactRequest, a as SingleArtifactResult } from '../gateSettings-L3FR2-MO.js';
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-L3FR2-MO.js';
6
6
  import * as workflow from 'workflow';
7
7
  import { z } from 'zod';
8
8
  import { F as FrameworkPack, C as CoverageGateReport } from '../standardsCoverageGate-CsUNzv6C.js';
@@ -7016,6 +7016,24 @@ function getArtifactSpecializedInvariants(type, req) {
7016
7016
  const studentCount = req.studentCount || "25";
7017
7017
  switch (type) {
7018
7018
  case "slide": {
7019
+ if (req.slidesEngine === "html") {
7020
+ return `
7021
+ ### \u{1F3AC} INTERACTIVE HTML SLIDE ENGINE CONTRACT:
7022
+ You generate structured slide decks for the LearnWell HTML Slide Presentation Engine.
7023
+ Output a single valid JSON object matching: { "title": "...", "theme": "ocean", "slides": [{ "layoutId": "hero-cover", "slots": { ... }, "notes": "..." }] }
7024
+
7025
+ Layout Presets available:
7026
+ - hero-cover (title, subtitle, presenter, date, tag)
7027
+ - two-column-split (col1Title, col1Items[], col2Title, col2Items[])
7028
+ - code-explainer (filename, language, code, highlightLines, annotations[])
7029
+ - metrics-3-card (card1Title, card1Val, card1Desc, ...)
7030
+ - process-flow (steps: [{ label, desc, status }])
7031
+ - quiz-checkpoint (question, options[], answerIdx, explanation)
7032
+ - tiered-practice-3cards (foundation, standard, challenge cards)
7033
+ - takeaways-summary (takeaways: bullet points)
7034
+
7035
+ Mandatory Presenter Notes on every slide with Talk Track, Cold-Call, and Scaffolding Tip.`;
7036
+ }
7019
7037
  const slideCount = cfg.slideCount || 10;
7020
7038
  const presentationStyle = cfg.presentationStyle || "modern";
7021
7039
  const presentationDuration = cfg.presentationDuration || 45;