@plasius/learning 0.2.8 → 0.2.10

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
@@ -62,6 +62,7 @@ the exact catalog module that owns its rubric, mission and badges.
62
62
 
63
63
  ```ts
64
64
  import {
65
+ BEACON_BOT_MISSION_ONE_AUTHORING_V1,
65
66
  JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1,
66
67
  METEOR_SHIELD_MISSION_ONE_AUTHORING_V1,
67
68
  PADDLE_PULSE_MISSION_ONE_AUTHORING_V1,
@@ -69,6 +70,7 @@ import {
69
70
  RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1,
70
71
  ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1,
71
72
  ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1,
73
+ SERVO_CREATURE_MISSION_ONE_AUTHORING_V1,
72
74
  SKYWING_SPRINT_MISSION_ONE_AUTHORING_V1,
73
75
  STAR_DEFENDER_SQUADRON_MISSION_ONE_AUTHORING_V1,
74
76
  assertValidMissionAuthoringBundle,
@@ -98,6 +100,12 @@ const pixelTrailChallenge = JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1.modules.find(
98
100
  const starDefenderSquadron = JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1.modules.find(
99
101
  (module) => module.slug === "star-defender-squadron",
100
102
  );
103
+ const beaconBot = JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1.modules.find(
104
+ (module) => module.slug === "beacon-bot",
105
+ );
106
+ const servoCreature = JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1.modules.find(
107
+ (module) => module.slug === "servo-creature",
108
+ );
101
109
 
102
110
  if (
103
111
  !roadHopper ||
@@ -107,7 +115,9 @@ if (
107
115
  !meteorShield ||
108
116
  !rescueCrewCommander ||
109
117
  !pixelTrailChallenge ||
110
- !starDefenderSquadron
118
+ !starDefenderSquadron ||
119
+ !beaconBot ||
120
+ !servoCreature
111
121
  ) {
112
122
  throw new Error("Junior Coder module is missing");
113
123
  }
@@ -144,6 +154,14 @@ assertValidMissionAuthoringBundle(
144
154
  STAR_DEFENDER_SQUADRON_MISSION_ONE_AUTHORING_V1,
145
155
  starDefenderSquadron,
146
156
  );
157
+ assertValidMissionAuthoringBundle(
158
+ BEACON_BOT_MISSION_ONE_AUTHORING_V1,
159
+ beaconBot,
160
+ );
161
+ assertValidMissionAuthoringBundle(
162
+ SERVO_CREATURE_MISSION_ONE_AUTHORING_V1,
163
+ servoCreature,
164
+ );
147
165
  ```
148
166
 
149
167
  ## Contract rules
@@ -166,13 +184,24 @@ assertValidMissionAuthoringBundle(
166
184
  - Completion requires a score of at least 80 and every mandatory criterion.
167
185
  - Module agents may explain evidence and propose a bounded next step, but cannot assign scores or rewards.
168
186
  - Physical requirements are disclosed by a versioned manifest before purchase.
187
+ - Robotics authoring distinguishes the complete reusable path kit from the
188
+ module's incremental items. Each component carries verification,
189
+ compatibility-claim and physical-completion status.
190
+ - Unverified components cannot claim compatibility or physical completion.
191
+ Simulator completion remains separate; physical export and its distinct
192
+ badge require adult acknowledgement and evidence.
193
+ - Servo Creature documents its safe 30–150 degree simulator range while every
194
+ physical servo, regulated supply and common-ground arrangement remains
195
+ pending adult bench verification and unavailable to learner code.
169
196
 
170
197
  See [the foundation design](docs/design/junior-coder-catalog-foundation.md),
171
198
  [the uniform pricing design](docs/design/junior-coder-uniform-pricing.md),
172
199
  [the mission authoring design](docs/design/junior-coder-mission-authoring.md),
173
200
  [ADR 0001](docs/adrs/adr-0001-learning-domain-and-catalog-boundary.md), and
174
201
  [ADR 0002](docs/adrs/adr-0002-immutable-module-repricing-and-admin-test-source.md),
175
- and [ADR 0003](docs/adrs/adr-0003-mission-authoring-manifests-are-additive-and-separated.md).
202
+ [ADR 0003](docs/adrs/adr-0003-mission-authoring-manifests-are-additive-and-separated.md),
203
+ [ADR 0004](docs/adrs/adr-0004-robot-mission-hardware-disclosures-are-additive-and-fail-closed.md),
204
+ and [TDR 0006](docs/tdrs/tdr-0006-servo-creature-safe-movement-and-power-authoring.md).
176
205
 
177
206
  ## Development
178
207