@plasius/learning 0.2.12 → 0.2.14

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 CHANGED
@@ -69,12 +69,14 @@ import {
69
69
  OBSTACLE_EXPLORER_MISSION_ONE_AUTHORING_V1,
70
70
  PADDLE_PULSE_MISSION_ONE_AUTHORING_V1,
71
71
  PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1,
72
+ RAINBOW_RESCUE_ROVER_MISSION_ONE_AUTHORING_V1,
72
73
  RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1,
73
74
  ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1,
74
75
  ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1,
75
76
  SERVO_CREATURE_MISSION_ONE_AUTHORING_V1,
76
77
  SKYWING_SPRINT_MISSION_ONE_AUTHORING_V1,
77
78
  STAR_DEFENDER_SQUADRON_MISSION_ONE_AUTHORING_V1,
79
+ VIBE_GAME_REMIX_LAB_MISSION_ONE_AUTHORING_V1,
78
80
  assertValidMissionAuthoringBundle,
79
81
  } from "@plasius/learning";
80
82
 
@@ -114,6 +116,12 @@ const danceRover = JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1.modules.find(
114
116
  const obstacleExplorer = JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1.modules.find(
115
117
  (module) => module.slug === "obstacle-explorer",
116
118
  );
119
+ const rainbowRescueRover = JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1.modules.find(
120
+ (module) => module.slug === "rainbow-rescue-rover",
121
+ );
122
+ const vibeGameRemixLab = JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1.modules.find(
123
+ (module) => module.slug === "vibe-game-remix-lab",
124
+ );
117
125
 
118
126
  if (
119
127
  !roadHopper ||
@@ -127,7 +135,9 @@ if (
127
135
  !beaconBot ||
128
136
  !servoCreature ||
129
137
  !danceRover ||
130
- !obstacleExplorer
138
+ !obstacleExplorer ||
139
+ !rainbowRescueRover ||
140
+ !vibeGameRemixLab
131
141
  ) {
132
142
  throw new Error("Junior Coder module is missing");
133
143
  }
@@ -180,6 +190,14 @@ assertValidMissionAuthoringBundle(
180
190
  OBSTACLE_EXPLORER_MISSION_ONE_AUTHORING_V1,
181
191
  obstacleExplorer,
182
192
  );
193
+ assertValidMissionAuthoringBundle(
194
+ RAINBOW_RESCUE_ROVER_MISSION_ONE_AUTHORING_V1,
195
+ rainbowRescueRover,
196
+ );
197
+ assertValidMissionAuthoringBundle(
198
+ VIBE_GAME_REMIX_LAB_MISSION_ONE_AUTHORING_V1,
199
+ vibeGameRemixLab,
200
+ );
183
201
  ```
184
202
 
185
203
  ## Contract rules
@@ -217,6 +235,15 @@ assertValidMissionAuthoringBundle(
217
235
  - Obstacle Explorer documents bounded simulated IR readings, Boolean route
218
236
  decisions, recovery attempts, watchdog timing and fail-safe stop while every
219
237
  rover and sensor remains pending adult calibration and lifted-wheel testing.
238
+ - Rainbow Rescue Rover documents simulated colour, target-zone, serial-command,
239
+ heartbeat and fail-safe-stop planning while Camera Module 3 frames stay on
240
+ the family Raspberry Pi. The website receives no frames, opens no camera or
241
+ serial port, never activates motors, and every physical component remains
242
+ pending adult bench verification.
243
+ - Vibe Game Remix Lab exposes one authored, evidence-bound diff against one
244
+ permitted learner artifact. The learner predicts, reviews and explicitly
245
+ accepts or rejects it; rejection preserves source, deterministic completion
246
+ never needs AI, and open chat or automatic edits are outside the contract.
220
247
 
221
248
  See [the foundation design](docs/design/junior-coder-catalog-foundation.md),
222
249
  [the uniform pricing design](docs/design/junior-coder-uniform-pricing.md),
@@ -228,6 +255,7 @@ See [the foundation design](docs/design/junior-coder-catalog-foundation.md),
228
255
  [TDR 0006](docs/tdrs/tdr-0006-servo-creature-safe-movement-and-power-authoring.md),
229
256
  [TDR 0007](docs/tdrs/tdr-0007-dance-rover-fail-safe-movement-and-power-authoring.md),
230
257
  and [TDR 0008](docs/tdrs/tdr-0008-obstacle-explorer-sensing-watchdog-and-fail-safe-authoring.md).
258
+ See also [TDR 0010](docs/tdrs/tdr-0010-vibe-game-remix-bounded-suggestion-authoring.md).
231
259
 
232
260
  ## Development
233
261