@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.
- package/dist/index.cjs +32 -21
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +32 -21
- package/dist/index.mjs.map +1 -1
- package/dist/workflow/index.cjs +11 -6
- package/dist/workflow/index.cjs.map +1 -1
- package/dist/workflow/index.mjs +11 -6
- package/dist/workflow/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/workflow/index.mjs
CHANGED
|
@@ -6111,20 +6111,25 @@ function getArtifactSpecializedInvariants(type, req) {
|
|
|
6111
6111
|
- Pacing: Target total duration is ${presentationDuration} minutes (~${Math.round(Number(presentationDuration) / Number(slideCount))} mins per slide).
|
|
6112
6112
|
- Visual Style: "${presentationStyle.toUpperCase()}". Maintain high visual clarity, contrasting accents, and executive polish.
|
|
6113
6113
|
2. **STRICT CONCISENESS & 6x6 RULE (ABSOLUTELY NO TEXT WALLS)**:
|
|
6114
|
-
- A slide is
|
|
6114
|
+
- A slide is an INTERACTIVE PROJECTION CANVAS, NOT a textbook or lesson plan!
|
|
6115
6115
|
- Maximum 4\u20136 bullet points per slide.
|
|
6116
6116
|
- Maximum 8\u201312 words per bullet point. Forbid dense multi-sentence paragraphs on the slide surface.
|
|
6117
6117
|
3. **SPEAKER NOTES FOR ALL SPOKEN WORDS (<!-- Presenter Notes: ... -->)**:
|
|
6118
|
-
${includeSpeakerNotes ?
|
|
6119
|
-
|
|
6118
|
+
${includeSpeakerNotes ? `- MANDATORY: Every single slide MUST contain structured presenter notes in \`<!-- Presenter Notes: ... -->\` at the bottom:
|
|
6119
|
+
- SCRIPT: 60-90s teacher talk track with intuitive analogies.
|
|
6120
|
+
- COLD CALL / CHECK: Diagnostic question to ask students.
|
|
6121
|
+
- SCAFFOLDING / GOTCHA: How to resolve student misconceptions.
|
|
6122
|
+
- PACING: Recommended minutes for the slide.` : "- Optional brief presenter notes."}
|
|
6123
|
+
4. **2-COLUMN & CALLOUT CARD LAYOUTS**:
|
|
6124
|
+
- Use \`<div class="columns"><div>...</div><div>...</div></div>\` for comparisons, code vs. mechanics, or side-by-side tasks.
|
|
6125
|
+
- Use \`<div class="card">\`, \`<div class="card highlight">\`, \`<div class="card warning">\`, and \`<div class="card success">\` for scannable chunking.
|
|
6126
|
+
5. **CLICK-TO-REVEAL SYSTEM**:
|
|
6120
6127
|
- Use \`<!-- clicks -->\` before bulleted lists (\`<ul>\` or \`<ol>\`) for incremental click-to-reveal.
|
|
6121
6128
|
- Use \`<!-- click -->\` before answers, code reveals, or key callouts.
|
|
6122
|
-
5. **2-COLUMN / SPLIT LAYOUT**:
|
|
6123
|
-
- Use <div class="columns"><div>...</div><div>...</div></div> for side-by-side concept vs. code or problem vs. solution comparisons.
|
|
6124
6129
|
6. **CONCISE CODE SNIPPETS**:
|
|
6125
6130
|
- Maximum 6\u201310 lines of clean code per snippet with inline comments. Never paste whole files.
|
|
6126
6131
|
7. **MERMAID VISUALS**:
|
|
6127
|
-
- Use Mermaid flowcharts or sequence diagrams for workflows and control loops.`;
|
|
6132
|
+
- Use Mermaid flowcharts (\`graph TD\` or \`graph LR\`) or sequence diagrams for workflows and control loops.`;
|
|
6128
6133
|
}
|
|
6129
6134
|
case "tiered_practice": {
|
|
6130
6135
|
const techStack = cfg.techStack || (req.hardwarePlatform?.[0] || "Modern Programming Language");
|