@thanh01.pmt/curriculum-kit 1.0.3 → 1.0.4

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.
@@ -6138,20 +6138,25 @@ function getArtifactSpecializedInvariants(type, req) {
6138
6138
  - Pacing: Target total duration is ${presentationDuration} minutes (~${Math.round(Number(presentationDuration) / Number(slideCount))} mins per slide).
6139
6139
  - Visual Style: "${presentationStyle.toUpperCase()}". Maintain high visual clarity, contrasting accents, and executive polish.
6140
6140
  2. **STRICT CONCISENESS & 6x6 RULE (ABSOLUTELY NO TEXT WALLS)**:
6141
- - A slide is a VISUAL PROJECTION CANVAS, NOT a textbook or lesson plan!
6141
+ - A slide is an INTERACTIVE PROJECTION CANVAS, NOT a textbook or lesson plan!
6142
6142
  - Maximum 4\u20136 bullet points per slide.
6143
6143
  - Maximum 8\u201312 words per bullet point. Forbid dense multi-sentence paragraphs on the slide surface.
6144
6144
  3. **SPEAKER NOTES FOR ALL SPOKEN WORDS (<!-- Presenter Notes: ... -->)**:
6145
- ${includeSpeakerNotes ? "- MANDATORY: Every single slide MUST contain comprehensive presenter notes in `<!-- Presenter Notes: ... -->` at the bottom, giving the teacher the exact verbal talking points, analogies, and pacing tips." : "- Optional brief presenter notes."}
6146
- 4. **CLICK-TO-REVEAL SYSTEM**:
6145
+ ${includeSpeakerNotes ? `- MANDATORY: Every single slide MUST contain structured presenter notes in \`<!-- Presenter Notes: ... -->\` at the bottom:
6146
+ - SCRIPT: 60-90s teacher talk track with intuitive analogies.
6147
+ - COLD CALL / CHECK: Diagnostic question to ask students.
6148
+ - SCAFFOLDING / GOTCHA: How to resolve student misconceptions.
6149
+ - PACING: Recommended minutes for the slide.` : "- Optional brief presenter notes."}
6150
+ 4. **2-COLUMN & CALLOUT CARD LAYOUTS**:
6151
+ - Use \`<div class="columns"><div>...</div><div>...</div></div>\` for comparisons, code vs. mechanics, or side-by-side tasks.
6152
+ - Use \`<div class="card">\`, \`<div class="card highlight">\`, \`<div class="card warning">\`, and \`<div class="card success">\` for scannable chunking.
6153
+ 5. **CLICK-TO-REVEAL SYSTEM**:
6147
6154
  - Use \`<!-- clicks -->\` before bulleted lists (\`<ul>\` or \`<ol>\`) for incremental click-to-reveal.
6148
6155
  - Use \`<!-- click -->\` before answers, code reveals, or key callouts.
6149
- 5. **2-COLUMN / SPLIT LAYOUT**:
6150
- - Use <div class="columns"><div>...</div><div>...</div></div> for side-by-side concept vs. code or problem vs. solution comparisons.
6151
6156
  6. **CONCISE CODE SNIPPETS**:
6152
6157
  - Maximum 6\u201310 lines of clean code per snippet with inline comments. Never paste whole files.
6153
6158
  7. **MERMAID VISUALS**:
6154
- - Use Mermaid flowcharts or sequence diagrams for workflows and control loops.`;
6159
+ - Use Mermaid flowcharts (\`graph TD\` or \`graph LR\`) or sequence diagrams for workflows and control loops.`;
6155
6160
  }
6156
6161
  case "tiered_practice": {
6157
6162
  const techStack = cfg.techStack || (req.hardwarePlatform?.[0] || "Modern Programming Language");