@thanh01.pmt/curriculum-kit 1.4.42 → 1.4.43

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 CHANGED
@@ -25562,10 +25562,11 @@ var LESSON_TEMPLATE_BY_PEDAGOGY = {
25562
25562
  function buildArtifactPrompt(parts, opts) {
25563
25563
  const resolved = resolveArtifactTemplate(parts.templateFile, opts);
25564
25564
  const body = resolved?.content ?? parts.epilogue ?? "";
25565
- const source = resolved ? `
25566
- <!-- P52 template: ${parts.templateFile} \u2190 ${resolved.sourcePath} -->
25567
- ` : "\n<!-- P52 template: NOT FOUND \u2014 inline fallback scaffold -->\n";
25568
- return `${parts.directive}${source}${body}`;
25565
+ return `${parts.directive}
25566
+
25567
+ ===== ARTIFACT TEMPLATE: ${parts.templateFile} ${resolved ? `(loaded from ${resolved.sourcePath})` : "(\u26A0\uFE0F NOT FOUND \u2014 inline fallback scaffold in use)"} =====
25568
+
25569
+ ${body}`;
25569
25570
  }
25570
25571
  var NO_VERBATIM_COPYING = `
25571
25572
  VERBATIM SOURCING RULE: When a section in the template says to extract a table
@@ -25765,6 +25766,10 @@ type: "${artifactType}"
25765
25766
  and respect the template's OWNERSHIP note: each fact lives in exactly ONE
25766
25767
  section \u2014 never restate satellite lists, resources, or assessment content
25767
25768
  across sections, and never embed KX-owned question banks or self-check text.
25769
+ 3. In the Learning Objectives table, carry the Standard ID from the [STANDARDS
25770
+ STATEMENTS] context into the same row as its LO (e.g. "CSTA: 1B-AP-10")
25771
+ when a matching standard exists.
25772
+ 4. Every code sample must be 100% syntax-valid and executable.
25768
25773
  3. Use the exact vocabulary of the canonical knowledge context for every
25769
25774
  concept and term.
25770
25775
  ${NO_VERBATIM_COPYING}`;