@plasius/learning 0.3.0 → 0.4.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 +16 -0
- package/dist/chunk-OXWMIHYI.js +6076 -0
- package/dist/chunk-OXWMIHYI.js.map +1 -0
- package/dist/course-authoring-DImvrK5r.d.cts +514 -0
- package/dist/course-authoring-DImvrK5r.d.ts +514 -0
- package/dist/courses/robot-maze-dash.cjs +355 -0
- package/dist/courses/robot-maze-dash.cjs.map +1 -0
- package/dist/courses/robot-maze-dash.d.cts +6 -0
- package/dist/courses/robot-maze-dash.d.ts +6 -0
- package/dist/courses/robot-maze-dash.js +196 -0
- package/dist/courses/robot-maze-dash.js.map +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -504
- package/dist/index.d.ts +3 -504
- package/dist/index.js +44 -6048
- package/dist/index.js.map +1 -1
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -44,6 +44,22 @@ export remain available unchanged.
|
|
|
44
44
|
|
|
45
45
|
## Complete course and account-save contracts
|
|
46
46
|
|
|
47
|
+
Complete learner curricula are separate lazy entry points. Import
|
|
48
|
+
`{ course, practice }` from `@plasius/learning/courses/robot-maze-dash` for the
|
|
49
|
+
Robot Maze `2.0.0` course: six distinct missions, 54 guided activities, a bounded
|
|
50
|
+
visual starter project, function references, formative concept checks, debugging
|
|
51
|
+
guidance and extensions. Formative answers are learner-safe teaching material;
|
|
52
|
+
they are not protected runtime assessments or completion authority. Hosts verify
|
|
53
|
+
responses, run protected checks and persist evidence independently.
|
|
54
|
+
The root exports `CoursePracticeQuestion` as a type without importing lesson data.
|
|
55
|
+
|
|
56
|
+
The runtime is supplied separately by `@plasius/learning-runtime`; this package
|
|
57
|
+
does not execute the project or declare host readiness. The seventeen-course
|
|
58
|
+
programme remains in development. This additive content does not alter immutable
|
|
59
|
+
catalogue/pricing records or enable a public host rollout. New hosts compose
|
|
60
|
+
their existing access controls with an independently disabled complete-course
|
|
61
|
+
flag and must validate the full learner journey before enabling it.
|
|
62
|
+
|
|
47
63
|
`LearningCourseV1` defines six missions with nine activities each, editable project
|
|
48
64
|
files, learner guidance and a capstone assessment identifier. Use
|
|
49
65
|
`validateLearningCourse` or `parseLearningCourse` for publication and loading.
|