@plasius/learning 0.2.9 → 0.2.11

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
@@ -63,6 +63,7 @@ the exact catalog module that owns its rubric, mission and badges.
63
63
  ```ts
64
64
  import {
65
65
  BEACON_BOT_MISSION_ONE_AUTHORING_V1,
66
+ DANCE_ROVER_MISSION_ONE_AUTHORING_V1,
66
67
  JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1,
67
68
  METEOR_SHIELD_MISSION_ONE_AUTHORING_V1,
68
69
  PADDLE_PULSE_MISSION_ONE_AUTHORING_V1,
@@ -70,6 +71,7 @@ import {
70
71
  RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1,
71
72
  ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1,
72
73
  ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1,
74
+ SERVO_CREATURE_MISSION_ONE_AUTHORING_V1,
73
75
  SKYWING_SPRINT_MISSION_ONE_AUTHORING_V1,
74
76
  STAR_DEFENDER_SQUADRON_MISSION_ONE_AUTHORING_V1,
75
77
  assertValidMissionAuthoringBundle,
@@ -102,6 +104,12 @@ const starDefenderSquadron = JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1.modules.find(
102
104
  const beaconBot = JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1.modules.find(
103
105
  (module) => module.slug === "beacon-bot",
104
106
  );
107
+ const servoCreature = JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1.modules.find(
108
+ (module) => module.slug === "servo-creature",
109
+ );
110
+ const danceRover = JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1.modules.find(
111
+ (module) => module.slug === "dance-rover",
112
+ );
105
113
 
106
114
  if (
107
115
  !roadHopper ||
@@ -112,7 +120,9 @@ if (
112
120
  !rescueCrewCommander ||
113
121
  !pixelTrailChallenge ||
114
122
  !starDefenderSquadron ||
115
- !beaconBot
123
+ !beaconBot ||
124
+ !servoCreature ||
125
+ !danceRover
116
126
  ) {
117
127
  throw new Error("Junior Coder module is missing");
118
128
  }
@@ -153,6 +163,14 @@ assertValidMissionAuthoringBundle(
153
163
  BEACON_BOT_MISSION_ONE_AUTHORING_V1,
154
164
  beaconBot,
155
165
  );
166
+ assertValidMissionAuthoringBundle(
167
+ SERVO_CREATURE_MISSION_ONE_AUTHORING_V1,
168
+ servoCreature,
169
+ );
170
+ assertValidMissionAuthoringBundle(
171
+ DANCE_ROVER_MISSION_ONE_AUTHORING_V1,
172
+ danceRover,
173
+ );
156
174
  ```
157
175
 
158
176
  ## Contract rules
@@ -181,6 +199,12 @@ assertValidMissionAuthoringBundle(
181
199
  - Unverified components cannot claim compatibility or physical completion.
182
200
  Simulator completion remains separate; physical export and its distinct
183
201
  badge require adult acknowledgement and evidence.
202
+ - Servo Creature documents its safe 30–150 degree simulator range while every
203
+ physical servo, regulated supply and common-ground arrangement remains
204
+ pending adult bench verification and unavailable to learner code.
205
+ - Dance Rover documents bounded direction, 0–60 percent simulated speed,
206
+ timing, repeat and emergency-stop calls while every driver, motor, chassis
207
+ and switched power arrangement remains pending adult lifted-wheel testing.
184
208
 
185
209
  See [the foundation design](docs/design/junior-coder-catalog-foundation.md),
186
210
  [the uniform pricing design](docs/design/junior-coder-uniform-pricing.md),
@@ -188,7 +212,9 @@ See [the foundation design](docs/design/junior-coder-catalog-foundation.md),
188
212
  [ADR 0001](docs/adrs/adr-0001-learning-domain-and-catalog-boundary.md), and
189
213
  [ADR 0002](docs/adrs/adr-0002-immutable-module-repricing-and-admin-test-source.md),
190
214
  [ADR 0003](docs/adrs/adr-0003-mission-authoring-manifests-are-additive-and-separated.md),
191
- and [ADR 0004](docs/adrs/adr-0004-robot-mission-hardware-disclosures-are-additive-and-fail-closed.md).
215
+ [ADR 0004](docs/adrs/adr-0004-robot-mission-hardware-disclosures-are-additive-and-fail-closed.md),
216
+ [TDR 0006](docs/tdrs/tdr-0006-servo-creature-safe-movement-and-power-authoring.md),
217
+ and [TDR 0007](docs/tdrs/tdr-0007-dance-rover-fail-safe-movement-and-power-authoring.md).
192
218
 
193
219
  ## Development
194
220