@thanh01.pmt/curriculum-kit 1.0.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.
- package/README.md +22 -0
- package/dist/ai/index.cjs +4980 -0
- package/dist/ai/index.cjs.map +1 -0
- package/dist/ai/index.d.cts +1287 -0
- package/dist/ai/index.d.ts +1287 -0
- package/dist/ai/index.mjs +4924 -0
- package/dist/ai/index.mjs.map +1 -0
- package/dist/index.cjs +15308 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +747 -0
- package/dist/index.d.ts +747 -0
- package/dist/index.mjs +14965 -0
- package/dist/index.mjs.map +1 -0
- package/dist/media/index.cjs +1238 -0
- package/dist/media/index.cjs.map +1 -0
- package/dist/media/index.d.cts +254 -0
- package/dist/media/index.d.ts +254 -0
- package/dist/media/index.mjs +1221 -0
- package/dist/media/index.mjs.map +1 -0
- package/dist/milestoneBundleGenerator-CbXhs1CP.d.ts +62 -0
- package/dist/milestoneBundleGenerator-DrBtHzBO.d.cts +62 -0
- package/dist/pipeline/index.cjs +4894 -0
- package/dist/pipeline/index.cjs.map +1 -0
- package/dist/pipeline/index.d.cts +161 -0
- package/dist/pipeline/index.d.ts +161 -0
- package/dist/pipeline/index.mjs +4869 -0
- package/dist/pipeline/index.mjs.map +1 -0
- package/dist/provider-factory-DH3udYlN.d.cts +25 -0
- package/dist/provider-factory-DH3udYlN.d.ts +25 -0
- package/dist/publishers/index.cjs +575 -0
- package/dist/publishers/index.cjs.map +1 -0
- package/dist/publishers/index.d.cts +85 -0
- package/dist/publishers/index.d.ts +85 -0
- package/dist/publishers/index.mjs +561 -0
- package/dist/publishers/index.mjs.map +1 -0
- package/dist/schemas/index.cjs +1640 -0
- package/dist/schemas/index.cjs.map +1 -0
- package/dist/schemas/index.d.cts +14194 -0
- package/dist/schemas/index.d.ts +14194 -0
- package/dist/schemas/index.mjs +1517 -0
- package/dist/schemas/index.mjs.map +1 -0
- package/dist/standards/index.cjs +910 -0
- package/dist/standards/index.cjs.map +1 -0
- package/dist/standards/index.d.cts +130 -0
- package/dist/standards/index.d.ts +130 -0
- package/dist/standards/index.mjs +890 -0
- package/dist/standards/index.mjs.map +1 -0
- package/dist/standardsCoverageGate-BWAkXY76.d.cts +767 -0
- package/dist/standardsCoverageGate-BWAkXY76.d.ts +767 -0
- package/dist/storage/index.cjs +595 -0
- package/dist/storage/index.cjs.map +1 -0
- package/dist/storage/index.d.cts +77 -0
- package/dist/storage/index.d.ts +77 -0
- package/dist/storage/index.mjs +583 -0
- package/dist/storage/index.mjs.map +1 -0
- package/dist/streamRunner-C7j5LKon.d.cts +60 -0
- package/dist/streamRunner-C7j5LKon.d.ts +60 -0
- package/dist/supabasePublisher-C627qXFT.d.cts +63 -0
- package/dist/supabasePublisher-C627qXFT.d.ts +63 -0
- package/dist/types-BUJGYiep.d.cts +89 -0
- package/dist/types-BUJGYiep.d.ts +89 -0
- package/dist/workflow/index.cjs +5266 -0
- package/dist/workflow/index.cjs.map +1 -0
- package/dist/workflow/index.d.cts +295 -0
- package/dist/workflow/index.d.ts +295 -0
- package/dist/workflow/index.mjs +5216 -0
- package/dist/workflow/index.mjs.map +1 -0
- package/package.json +105 -0
package/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# @thanh01.pmt/curriculum-kit
|
|
2
|
+
|
|
3
|
+
A high-fidelity AI curriculum and pedagogical content generation engine powered by **Vercel AI SDK**, **Zod**, and Bloom-aligned standards.
|
|
4
|
+
|
|
5
|
+
## 🌟 Overview
|
|
6
|
+
`@thanh01.pmt/curriculum-kit` transforms Roadmaps and Learning Paths from the Knowledge Graph (`knowledge-tree`) into rich, multi-modal educational materials:
|
|
7
|
+
- **`LESSON.md`**: Master Lesson Design Plan & Teaching Flow.
|
|
8
|
+
- **`ACT.md`**: Step-by-step hands-on activities with BOM (Hardware, Software, Consumables) and safety warnings.
|
|
9
|
+
- **`CODE`**: Starter code, solution code, and automated test cases.
|
|
10
|
+
- **`WKS.md`**: Scaffolded worksheets following the Gradual Release Model (I Do $\rightarrow$ We Do $\rightarrow$ You Do).
|
|
11
|
+
- **`SLIDE.md`**: 15-slide Marp presentation deck.
|
|
12
|
+
- **`HANDOUT.md`**: Instant-reference student cheat sheets (5-Second Rule).
|
|
13
|
+
- **`GUIDE.md`**: Teacher guides with misconception handling and rubrics.
|
|
14
|
+
- **`QUIZ`**: Bloom-aligned assessment questions consumable by `@thanh01.pmt/interactive-quiz-kit`.
|
|
15
|
+
|
|
16
|
+
## 📁 Architecture & Documentation
|
|
17
|
+
- **Architecture Decision Record:** [`docs/adrs/ADR-0001-curriculum-kit-architecture.md`](./docs/adrs/ADR-0001-curriculum-kit-architecture.md)
|
|
18
|
+
- **Implementation Plan & DoD:** [`docs/plans/implementation-plan-and-dod.md`](./docs/plans/implementation-plan-and-dod.md)
|
|
19
|
+
|
|
20
|
+
## 🌐 Language Policy
|
|
21
|
+
- **100% English Canonical Prompts:** All system instructions and prompt builders are written strictly in English.
|
|
22
|
+
- **Strict Target Output Language:** Every generation flow accepts `language` (`"vi"`, `"en"`, etc.), and the AI strictly outputs pedagogical explanations in the requested language while preserving international technical syntax and keywords.
|