@plasius/learning 0.2.15 → 0.2.17
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 +28 -1
- package/dist/index.cjs +574 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -4
- package/dist/index.d.ts +7 -4
- package/dist/index.js +572 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -297,8 +297,8 @@ interface MissionFunctionReferenceV1 {
|
|
|
297
297
|
example: string;
|
|
298
298
|
}
|
|
299
299
|
/**
|
|
300
|
-
* One learner-safe change proposal.
|
|
301
|
-
* authored artifact and always
|
|
300
|
+
* One learner-safe change proposal. A mission may expose a diff for a single
|
|
301
|
+
* authored artifact and always leaves the final accept/reject decision to the
|
|
302
302
|
* learner. Live AI is an optional adapter concern, never a completion input.
|
|
303
303
|
*/
|
|
304
304
|
interface MissionBoundedSuggestionV1 {
|
|
@@ -510,7 +510,10 @@ declare const METEOR_SHIELD_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
|
510
510
|
declare const VIBE_GAME_REMIX_LAB_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
511
511
|
/** Evidence-led Vibe repair mission; no open prompt or provider is required. */
|
|
512
512
|
declare const VIBE_BUG_DETECTIVE_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
513
|
-
/**
|
|
513
|
+
/** Goal-led Vibe prototype mission; all idea choices and changes are bounded. */
|
|
514
|
+
declare const VIBE_IDEA_STUDIO_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
515
|
+
/** Accessible fictional planner mission with a private bounded persistence simulator. */
|
|
516
|
+
declare const ADVENTURE_MISSION_PLANNER_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
514
517
|
declare const ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
515
518
|
|
|
516
519
|
/** Return every catalog issue without throwing, suitable for authoring tools. */
|
|
@@ -518,4 +521,4 @@ declare function validateLearningPath(path: LearningPathVersionV1): LearningVali
|
|
|
518
521
|
/** Fail fast when a path is not safe to publish or consume. */
|
|
519
522
|
declare function assertValidLearningPath(path: LearningPathVersionV1): void;
|
|
520
523
|
|
|
521
|
-
export { type AssessmentCheckResultV1, type AssessmentCriterionV1, type AssessmentDimensionV1, type AssessmentResultV1, type AssessmentRubricV1, type AttemptEvidenceV1, BEACON_BOT_MISSION_ONE_AUTHORING_V1, type BadgeDefinitionV1, type CommercialStateV1, type CourseMaterialAudienceV1, type CourseMaterialKindV1, type CourseMaterialV1, type CourseMaterialsManifestV1, DANCE_ROVER_MISSION_ONE_AUTHORING_V1, type FacilitatorMissionAuthoringV1, type GuardianAiConsentV1, type HardwareItemV1, type HardwareModeV1, type HardwareRequirementManifestV1, type HardwareVerificationStatusV1, JUNIOR_CODER_MISSION_STAGE_ORDER_V1, JUNIOR_CODER_MODULE_PRICE_V1_1, JUNIOR_CODER_ROBOT_RESCUE_PATH_CURRENT, JUNIOR_CODER_ROBOT_RESCUE_PATH_V1, JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1, type LearnerMissionAuthoringV1, type LearningGoalV1, type LearningModuleVersionV1, type LearningPathVersionV1, type LearningValidationIssueV1, METEOR_SHIELD_MISSION_ONE_AUTHORING_V1, MISSION_AUTHORING_CONTRACT_VERSION_V1, type MissionAccessibilityAlternativeV1, type MissionArtifactKindV1, type MissionArtifactReferenceV1, type MissionAuthoringBundleV1, type MissionAuthoringGoalV1, type MissionAuthoringValidationIssueV1, type MissionBoundedSuggestionV1, type MissionEvidenceKindV1, type MissionEvidenceRequirementV1, type MissionEvidenceRetentionV1, type MissionFunctionParameterV1, type MissionFunctionReferenceV1, type MissionHardwareAcquisitionScopeV1, type MissionHardwareComponentDisclosureV1, type MissionHardwareDisclosureV1, type MissionInteractionModeV1, type MissionInteractionRequirementV1, type MissionPhysicalSafeguardsV1, type MissionReadinessCheckV1, type MissionRewardBindingV1, type MissionSideAdventureV1, type MissionStageCardV1, type MissionStageKindV1, type MissionV1, type ModuleAgentDefinitionV1, type ModuleAgentFeedbackV1, type ModuleAgentRoleV1, type ModuleCategoryV1, type ModuleEntitlementV1, type ModulePricingV1, type ModuleReferencePriceV1, OBSTACLE_EXPLORER_MISSION_ONE_AUTHORING_V1, PADDLE_PULSE_MISSION_ONE_AUTHORING_V1, PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1, type PublishedStaticProjectSnapshotV1, RAINBOW_RESCUE_ROVER_MISSION_ONE_AUTHORING_V1, RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1, ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1, ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1, SERVO_CREATURE_MISSION_ONE_AUTHORING_V1, SKYWING_SPRINT_MISSION_ONE_AUTHORING_V1, STAR_DEFENDER_SQUADRON_MISSION_ONE_AUTHORING_V1, type ScoreBandV1, VIBE_BUG_DETECTIVE_MISSION_ONE_AUTHORING_V1, VIBE_GAME_REMIX_LAB_MISSION_ONE_AUTHORING_V1, assertValidLearningPath, assertValidMissionAuthoringBundle, calculateAssessment, validateAssessmentRubric, validateLearningPath, validateMissionAuthoringBundle };
|
|
524
|
+
export { ADVENTURE_MISSION_PLANNER_MISSION_ONE_AUTHORING_V1, type AssessmentCheckResultV1, type AssessmentCriterionV1, type AssessmentDimensionV1, type AssessmentResultV1, type AssessmentRubricV1, type AttemptEvidenceV1, BEACON_BOT_MISSION_ONE_AUTHORING_V1, type BadgeDefinitionV1, type CommercialStateV1, type CourseMaterialAudienceV1, type CourseMaterialKindV1, type CourseMaterialV1, type CourseMaterialsManifestV1, DANCE_ROVER_MISSION_ONE_AUTHORING_V1, type FacilitatorMissionAuthoringV1, type GuardianAiConsentV1, type HardwareItemV1, type HardwareModeV1, type HardwareRequirementManifestV1, type HardwareVerificationStatusV1, JUNIOR_CODER_MISSION_STAGE_ORDER_V1, JUNIOR_CODER_MODULE_PRICE_V1_1, JUNIOR_CODER_ROBOT_RESCUE_PATH_CURRENT, JUNIOR_CODER_ROBOT_RESCUE_PATH_V1, JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1, type LearnerMissionAuthoringV1, type LearningGoalV1, type LearningModuleVersionV1, type LearningPathVersionV1, type LearningValidationIssueV1, METEOR_SHIELD_MISSION_ONE_AUTHORING_V1, MISSION_AUTHORING_CONTRACT_VERSION_V1, type MissionAccessibilityAlternativeV1, type MissionArtifactKindV1, type MissionArtifactReferenceV1, type MissionAuthoringBundleV1, type MissionAuthoringGoalV1, type MissionAuthoringValidationIssueV1, type MissionBoundedSuggestionV1, type MissionEvidenceKindV1, type MissionEvidenceRequirementV1, type MissionEvidenceRetentionV1, type MissionFunctionParameterV1, type MissionFunctionReferenceV1, type MissionHardwareAcquisitionScopeV1, type MissionHardwareComponentDisclosureV1, type MissionHardwareDisclosureV1, type MissionInteractionModeV1, type MissionInteractionRequirementV1, type MissionPhysicalSafeguardsV1, type MissionReadinessCheckV1, type MissionRewardBindingV1, type MissionSideAdventureV1, type MissionStageCardV1, type MissionStageKindV1, type MissionV1, type ModuleAgentDefinitionV1, type ModuleAgentFeedbackV1, type ModuleAgentRoleV1, type ModuleCategoryV1, type ModuleEntitlementV1, type ModulePricingV1, type ModuleReferencePriceV1, OBSTACLE_EXPLORER_MISSION_ONE_AUTHORING_V1, PADDLE_PULSE_MISSION_ONE_AUTHORING_V1, PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1, type PublishedStaticProjectSnapshotV1, RAINBOW_RESCUE_ROVER_MISSION_ONE_AUTHORING_V1, RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1, ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1, ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1, SERVO_CREATURE_MISSION_ONE_AUTHORING_V1, SKYWING_SPRINT_MISSION_ONE_AUTHORING_V1, STAR_DEFENDER_SQUADRON_MISSION_ONE_AUTHORING_V1, type ScoreBandV1, VIBE_BUG_DETECTIVE_MISSION_ONE_AUTHORING_V1, VIBE_GAME_REMIX_LAB_MISSION_ONE_AUTHORING_V1, VIBE_IDEA_STUDIO_MISSION_ONE_AUTHORING_V1, assertValidLearningPath, assertValidMissionAuthoringBundle, calculateAssessment, validateAssessmentRubric, validateLearningPath, validateMissionAuthoringBundle };
|
package/dist/index.d.ts
CHANGED
|
@@ -297,8 +297,8 @@ interface MissionFunctionReferenceV1 {
|
|
|
297
297
|
example: string;
|
|
298
298
|
}
|
|
299
299
|
/**
|
|
300
|
-
* One learner-safe change proposal.
|
|
301
|
-
* authored artifact and always
|
|
300
|
+
* One learner-safe change proposal. A mission may expose a diff for a single
|
|
301
|
+
* authored artifact and always leaves the final accept/reject decision to the
|
|
302
302
|
* learner. Live AI is an optional adapter concern, never a completion input.
|
|
303
303
|
*/
|
|
304
304
|
interface MissionBoundedSuggestionV1 {
|
|
@@ -510,7 +510,10 @@ declare const METEOR_SHIELD_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
|
510
510
|
declare const VIBE_GAME_REMIX_LAB_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
511
511
|
/** Evidence-led Vibe repair mission; no open prompt or provider is required. */
|
|
512
512
|
declare const VIBE_BUG_DETECTIVE_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
513
|
-
/**
|
|
513
|
+
/** Goal-led Vibe prototype mission; all idea choices and changes are bounded. */
|
|
514
|
+
declare const VIBE_IDEA_STUDIO_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
515
|
+
/** Accessible fictional planner mission with a private bounded persistence simulator. */
|
|
516
|
+
declare const ADVENTURE_MISSION_PLANNER_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
514
517
|
declare const ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1: MissionAuthoringBundleV1;
|
|
515
518
|
|
|
516
519
|
/** Return every catalog issue without throwing, suitable for authoring tools. */
|
|
@@ -518,4 +521,4 @@ declare function validateLearningPath(path: LearningPathVersionV1): LearningVali
|
|
|
518
521
|
/** Fail fast when a path is not safe to publish or consume. */
|
|
519
522
|
declare function assertValidLearningPath(path: LearningPathVersionV1): void;
|
|
520
523
|
|
|
521
|
-
export { type AssessmentCheckResultV1, type AssessmentCriterionV1, type AssessmentDimensionV1, type AssessmentResultV1, type AssessmentRubricV1, type AttemptEvidenceV1, BEACON_BOT_MISSION_ONE_AUTHORING_V1, type BadgeDefinitionV1, type CommercialStateV1, type CourseMaterialAudienceV1, type CourseMaterialKindV1, type CourseMaterialV1, type CourseMaterialsManifestV1, DANCE_ROVER_MISSION_ONE_AUTHORING_V1, type FacilitatorMissionAuthoringV1, type GuardianAiConsentV1, type HardwareItemV1, type HardwareModeV1, type HardwareRequirementManifestV1, type HardwareVerificationStatusV1, JUNIOR_CODER_MISSION_STAGE_ORDER_V1, JUNIOR_CODER_MODULE_PRICE_V1_1, JUNIOR_CODER_ROBOT_RESCUE_PATH_CURRENT, JUNIOR_CODER_ROBOT_RESCUE_PATH_V1, JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1, type LearnerMissionAuthoringV1, type LearningGoalV1, type LearningModuleVersionV1, type LearningPathVersionV1, type LearningValidationIssueV1, METEOR_SHIELD_MISSION_ONE_AUTHORING_V1, MISSION_AUTHORING_CONTRACT_VERSION_V1, type MissionAccessibilityAlternativeV1, type MissionArtifactKindV1, type MissionArtifactReferenceV1, type MissionAuthoringBundleV1, type MissionAuthoringGoalV1, type MissionAuthoringValidationIssueV1, type MissionBoundedSuggestionV1, type MissionEvidenceKindV1, type MissionEvidenceRequirementV1, type MissionEvidenceRetentionV1, type MissionFunctionParameterV1, type MissionFunctionReferenceV1, type MissionHardwareAcquisitionScopeV1, type MissionHardwareComponentDisclosureV1, type MissionHardwareDisclosureV1, type MissionInteractionModeV1, type MissionInteractionRequirementV1, type MissionPhysicalSafeguardsV1, type MissionReadinessCheckV1, type MissionRewardBindingV1, type MissionSideAdventureV1, type MissionStageCardV1, type MissionStageKindV1, type MissionV1, type ModuleAgentDefinitionV1, type ModuleAgentFeedbackV1, type ModuleAgentRoleV1, type ModuleCategoryV1, type ModuleEntitlementV1, type ModulePricingV1, type ModuleReferencePriceV1, OBSTACLE_EXPLORER_MISSION_ONE_AUTHORING_V1, PADDLE_PULSE_MISSION_ONE_AUTHORING_V1, PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1, type PublishedStaticProjectSnapshotV1, RAINBOW_RESCUE_ROVER_MISSION_ONE_AUTHORING_V1, RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1, ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1, ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1, SERVO_CREATURE_MISSION_ONE_AUTHORING_V1, SKYWING_SPRINT_MISSION_ONE_AUTHORING_V1, STAR_DEFENDER_SQUADRON_MISSION_ONE_AUTHORING_V1, type ScoreBandV1, VIBE_BUG_DETECTIVE_MISSION_ONE_AUTHORING_V1, VIBE_GAME_REMIX_LAB_MISSION_ONE_AUTHORING_V1, assertValidLearningPath, assertValidMissionAuthoringBundle, calculateAssessment, validateAssessmentRubric, validateLearningPath, validateMissionAuthoringBundle };
|
|
524
|
+
export { ADVENTURE_MISSION_PLANNER_MISSION_ONE_AUTHORING_V1, type AssessmentCheckResultV1, type AssessmentCriterionV1, type AssessmentDimensionV1, type AssessmentResultV1, type AssessmentRubricV1, type AttemptEvidenceV1, BEACON_BOT_MISSION_ONE_AUTHORING_V1, type BadgeDefinitionV1, type CommercialStateV1, type CourseMaterialAudienceV1, type CourseMaterialKindV1, type CourseMaterialV1, type CourseMaterialsManifestV1, DANCE_ROVER_MISSION_ONE_AUTHORING_V1, type FacilitatorMissionAuthoringV1, type GuardianAiConsentV1, type HardwareItemV1, type HardwareModeV1, type HardwareRequirementManifestV1, type HardwareVerificationStatusV1, JUNIOR_CODER_MISSION_STAGE_ORDER_V1, JUNIOR_CODER_MODULE_PRICE_V1_1, JUNIOR_CODER_ROBOT_RESCUE_PATH_CURRENT, JUNIOR_CODER_ROBOT_RESCUE_PATH_V1, JUNIOR_CODER_ROBOT_RESCUE_PATH_V1_1, type LearnerMissionAuthoringV1, type LearningGoalV1, type LearningModuleVersionV1, type LearningPathVersionV1, type LearningValidationIssueV1, METEOR_SHIELD_MISSION_ONE_AUTHORING_V1, MISSION_AUTHORING_CONTRACT_VERSION_V1, type MissionAccessibilityAlternativeV1, type MissionArtifactKindV1, type MissionArtifactReferenceV1, type MissionAuthoringBundleV1, type MissionAuthoringGoalV1, type MissionAuthoringValidationIssueV1, type MissionBoundedSuggestionV1, type MissionEvidenceKindV1, type MissionEvidenceRequirementV1, type MissionEvidenceRetentionV1, type MissionFunctionParameterV1, type MissionFunctionReferenceV1, type MissionHardwareAcquisitionScopeV1, type MissionHardwareComponentDisclosureV1, type MissionHardwareDisclosureV1, type MissionInteractionModeV1, type MissionInteractionRequirementV1, type MissionPhysicalSafeguardsV1, type MissionReadinessCheckV1, type MissionRewardBindingV1, type MissionSideAdventureV1, type MissionStageCardV1, type MissionStageKindV1, type MissionV1, type ModuleAgentDefinitionV1, type ModuleAgentFeedbackV1, type ModuleAgentRoleV1, type ModuleCategoryV1, type ModuleEntitlementV1, type ModulePricingV1, type ModuleReferencePriceV1, OBSTACLE_EXPLORER_MISSION_ONE_AUTHORING_V1, PADDLE_PULSE_MISSION_ONE_AUTHORING_V1, PIXEL_TRAIL_CHALLENGE_MISSION_ONE_AUTHORING_V1, type PublishedStaticProjectSnapshotV1, RAINBOW_RESCUE_ROVER_MISSION_ONE_AUTHORING_V1, RESCUE_CREW_COMMANDER_MISSION_ONE_AUTHORING_V1, ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1, ROBOT_MAZE_DASH_MISSION_ONE_AUTHORING_V1, SERVO_CREATURE_MISSION_ONE_AUTHORING_V1, SKYWING_SPRINT_MISSION_ONE_AUTHORING_V1, STAR_DEFENDER_SQUADRON_MISSION_ONE_AUTHORING_V1, type ScoreBandV1, VIBE_BUG_DETECTIVE_MISSION_ONE_AUTHORING_V1, VIBE_GAME_REMIX_LAB_MISSION_ONE_AUTHORING_V1, VIBE_IDEA_STUDIO_MISSION_ONE_AUTHORING_V1, assertValidLearningPath, assertValidMissionAuthoringBundle, calculateAssessment, validateAssessmentRubric, validateLearningPath, validateMissionAuthoringBundle };
|
package/dist/index.js
CHANGED
|
@@ -5148,6 +5148,576 @@ var VIBE_BUG_DETECTIVE_MISSION_ONE_AUTHORING_V1 = {
|
|
|
5148
5148
|
]
|
|
5149
5149
|
}
|
|
5150
5150
|
};
|
|
5151
|
+
var VIBE_IDEA_STUDIO_MISSION_ONE_AUTHORING_V1 = {
|
|
5152
|
+
version: MISSION_AUTHORING_CONTRACT_VERSION_V1,
|
|
5153
|
+
moduleId: "junior-coder.vibe-idea-studio",
|
|
5154
|
+
moduleVersion: "1.1.0",
|
|
5155
|
+
missionId: "vibe-idea-studio-mission-1",
|
|
5156
|
+
learner: {
|
|
5157
|
+
estimatedMinutes: 20,
|
|
5158
|
+
stages: [
|
|
5159
|
+
{
|
|
5160
|
+
kind: "learn",
|
|
5161
|
+
instruction: "Read how choosePrototype(), setStarCount() and setSuccessMessage() shape the bounded rescue-card template.",
|
|
5162
|
+
artifactIds: ["vibe-idea-studio-m1-guide"]
|
|
5163
|
+
},
|
|
5164
|
+
{
|
|
5165
|
+
kind: "predict",
|
|
5166
|
+
instruction: "Choose one idea, audience and acceptance test card, then predict what the one-line prototype change will show.",
|
|
5167
|
+
artifactIds: ["vibe-idea-studio-m1-idea-cards"]
|
|
5168
|
+
},
|
|
5169
|
+
{
|
|
5170
|
+
kind: "build",
|
|
5171
|
+
instruction: "Open the supplied template and keep every change inside its documented prototype settings artifact.",
|
|
5172
|
+
artifactIds: ["vibe-idea-studio-m1-code"]
|
|
5173
|
+
},
|
|
5174
|
+
{
|
|
5175
|
+
kind: "run",
|
|
5176
|
+
instruction: "Use the Run action button to preview the current rescue card in the private JavaScript simulator.",
|
|
5177
|
+
artifactIds: ["vibe-idea-studio-m1-code"]
|
|
5178
|
+
},
|
|
5179
|
+
{
|
|
5180
|
+
kind: "assess",
|
|
5181
|
+
instruction: "Run deterministic checks against the selected goal and acceptance test before viewing a suggestion.",
|
|
5182
|
+
artifactIds: []
|
|
5183
|
+
},
|
|
5184
|
+
{
|
|
5185
|
+
kind: "inspect",
|
|
5186
|
+
instruction: "Compare the exact one-line diff with your prediction, chosen goal and failed acceptance-test evidence.",
|
|
5187
|
+
artifactIds: ["vibe-idea-studio-m1-code"]
|
|
5188
|
+
},
|
|
5189
|
+
{
|
|
5190
|
+
kind: "fix",
|
|
5191
|
+
instruction: "Accept or reject the immutable prototype change yourself, then rerun the preview and tests.",
|
|
5192
|
+
artifactIds: ["vibe-idea-studio-m1-code"]
|
|
5193
|
+
},
|
|
5194
|
+
{
|
|
5195
|
+
kind: "explain",
|
|
5196
|
+
instruction: "Explain how the final evidence proves the prototype meets the selected idea, audience and success test.",
|
|
5197
|
+
artifactIds: []
|
|
5198
|
+
},
|
|
5199
|
+
{
|
|
5200
|
+
kind: "reward",
|
|
5201
|
+
instruction: "Collect the evidence-bound badge after the deterministic score reaches 80 and every safety check passes.",
|
|
5202
|
+
artifactIds: []
|
|
5203
|
+
}
|
|
5204
|
+
],
|
|
5205
|
+
readinessChecks: [
|
|
5206
|
+
{
|
|
5207
|
+
id: "vibe-idea-studio-m1-match-test",
|
|
5208
|
+
prompt: "Match the three-star acceptance test to the documented setting that controls star count.",
|
|
5209
|
+
scored: false
|
|
5210
|
+
}
|
|
5211
|
+
],
|
|
5212
|
+
artifacts: [
|
|
5213
|
+
{
|
|
5214
|
+
id: "vibe-idea-studio-m1-code",
|
|
5215
|
+
kind: "starter-code",
|
|
5216
|
+
audience: "learner",
|
|
5217
|
+
solutionBearing: false
|
|
5218
|
+
},
|
|
5219
|
+
{
|
|
5220
|
+
id: "vibe-idea-studio-m1-guide",
|
|
5221
|
+
kind: "starter-assets",
|
|
5222
|
+
audience: "learner",
|
|
5223
|
+
solutionBearing: false
|
|
5224
|
+
},
|
|
5225
|
+
{
|
|
5226
|
+
id: "vibe-idea-studio-m1-idea-cards",
|
|
5227
|
+
kind: "printable",
|
|
5228
|
+
audience: "learner",
|
|
5229
|
+
solutionBearing: false
|
|
5230
|
+
}
|
|
5231
|
+
],
|
|
5232
|
+
goals: [
|
|
5233
|
+
{
|
|
5234
|
+
id: "vibe-idea-studio-m1-starts",
|
|
5235
|
+
statement: "The supplied JavaScript rescue-card template remains structurally valid and starts.",
|
|
5236
|
+
visibility: "visible",
|
|
5237
|
+
criterionIds: ["vibe-idea-studio-build"],
|
|
5238
|
+
completionRequired: true,
|
|
5239
|
+
aiRequired: false
|
|
5240
|
+
},
|
|
5241
|
+
{
|
|
5242
|
+
id: "vibe-idea-studio-m1-prototype-goal",
|
|
5243
|
+
statement: "The prototype is a space rescue card for a friendly robot crew with three stars and a visible success message.",
|
|
5244
|
+
visibility: "visible",
|
|
5245
|
+
criterionIds: [
|
|
5246
|
+
"vibe-idea-studio-goal-one",
|
|
5247
|
+
"vibe-idea-studio-goal-two",
|
|
5248
|
+
"vibe-idea-studio-goal-three"
|
|
5249
|
+
],
|
|
5250
|
+
completionRequired: true,
|
|
5251
|
+
aiRequired: false
|
|
5252
|
+
},
|
|
5253
|
+
{
|
|
5254
|
+
id: "vibe-idea-studio-m1-private-boundary",
|
|
5255
|
+
statement: "The prototype stays inside the selected template, permitted artifact and private sandbox.",
|
|
5256
|
+
visibility: "visible",
|
|
5257
|
+
criterionIds: ["vibe-idea-studio-safety"],
|
|
5258
|
+
completionRequired: true,
|
|
5259
|
+
aiRequired: false
|
|
5260
|
+
}
|
|
5261
|
+
],
|
|
5262
|
+
interactions: [
|
|
5263
|
+
{
|
|
5264
|
+
id: "vibe-idea-studio-m1-idea-cards",
|
|
5265
|
+
description: "Choose one bounded idea, audience and acceptance-test card.",
|
|
5266
|
+
primaryMode: "pointer",
|
|
5267
|
+
alternativeIds: ["vibe-idea-studio-m1-keyboard-cards"]
|
|
5268
|
+
},
|
|
5269
|
+
{
|
|
5270
|
+
id: "vibe-idea-studio-m1-run-control",
|
|
5271
|
+
description: "Start the private rescue-card preview.",
|
|
5272
|
+
primaryMode: "pointer",
|
|
5273
|
+
alternativeIds: ["vibe-idea-studio-m1-keyboard-run"]
|
|
5274
|
+
},
|
|
5275
|
+
{
|
|
5276
|
+
id: "vibe-idea-studio-m1-diff-review",
|
|
5277
|
+
description: "Read the labelled removed and added star-count lines before deciding.",
|
|
5278
|
+
primaryMode: "text",
|
|
5279
|
+
alternativeIds: []
|
|
5280
|
+
},
|
|
5281
|
+
{
|
|
5282
|
+
id: "vibe-idea-studio-m1-accept-control",
|
|
5283
|
+
description: "Approve the exact immutable prototype change.",
|
|
5284
|
+
primaryMode: "pointer",
|
|
5285
|
+
alternativeIds: ["vibe-idea-studio-m1-keyboard-review"]
|
|
5286
|
+
},
|
|
5287
|
+
{
|
|
5288
|
+
id: "vibe-idea-studio-m1-reject-control",
|
|
5289
|
+
description: "Reject the suggestion and preserve the current source.",
|
|
5290
|
+
primaryMode: "pointer",
|
|
5291
|
+
alternativeIds: ["vibe-idea-studio-m1-keyboard-review"]
|
|
5292
|
+
}
|
|
5293
|
+
],
|
|
5294
|
+
accessibilityAlternatives: [
|
|
5295
|
+
{
|
|
5296
|
+
id: "vibe-idea-studio-m1-keyboard-cards",
|
|
5297
|
+
modes: ["keyboard", "text"],
|
|
5298
|
+
equivalentOutcome: true,
|
|
5299
|
+
description: "Use labelled radio-card controls with arrow keys and Space to choose the same bounded goal."
|
|
5300
|
+
},
|
|
5301
|
+
{
|
|
5302
|
+
id: "vibe-idea-studio-m1-keyboard-run",
|
|
5303
|
+
modes: ["keyboard"],
|
|
5304
|
+
equivalentOutcome: true,
|
|
5305
|
+
description: "Press Enter or Space on the play-icon Run button to start the same preview."
|
|
5306
|
+
},
|
|
5307
|
+
{
|
|
5308
|
+
id: "vibe-idea-studio-m1-keyboard-review",
|
|
5309
|
+
modes: ["keyboard", "text", "reduced-motion"],
|
|
5310
|
+
equivalentOutcome: true,
|
|
5311
|
+
description: "Read the labelled diff and acceptance evidence, then focus Accept or Reject and press Enter or Space."
|
|
5312
|
+
}
|
|
5313
|
+
],
|
|
5314
|
+
evidenceRequirements: [
|
|
5315
|
+
{
|
|
5316
|
+
id: "vibe-idea-studio-m1-assessment",
|
|
5317
|
+
goalIds: [
|
|
5318
|
+
"vibe-idea-studio-m1-starts",
|
|
5319
|
+
"vibe-idea-studio-m1-prototype-goal",
|
|
5320
|
+
"vibe-idea-studio-m1-private-boundary"
|
|
5321
|
+
],
|
|
5322
|
+
kind: "assessment-result",
|
|
5323
|
+
retention: "entitlement",
|
|
5324
|
+
containsPersonalData: false
|
|
5325
|
+
},
|
|
5326
|
+
{
|
|
5327
|
+
id: "vibe-idea-studio-m1-explanation",
|
|
5328
|
+
goalIds: ["vibe-idea-studio-m1-prototype-goal"],
|
|
5329
|
+
kind: "learner-explanation",
|
|
5330
|
+
retention: "attempt",
|
|
5331
|
+
containsPersonalData: false
|
|
5332
|
+
}
|
|
5333
|
+
],
|
|
5334
|
+
sideAdventures: [
|
|
5335
|
+
{
|
|
5336
|
+
id: "vibe-idea-studio-m1-test-inventor",
|
|
5337
|
+
prompt: "Write one new bounded audience card and one matching acceptance test without changing the template boundary.",
|
|
5338
|
+
completionRequired: false
|
|
5339
|
+
}
|
|
5340
|
+
],
|
|
5341
|
+
rewardBindings: [
|
|
5342
|
+
{
|
|
5343
|
+
id: "vibe-idea-studio-m1-badge",
|
|
5344
|
+
badgeId: "vibe-idea-studio-mission-complete",
|
|
5345
|
+
goalIds: [
|
|
5346
|
+
"vibe-idea-studio-m1-starts",
|
|
5347
|
+
"vibe-idea-studio-m1-prototype-goal",
|
|
5348
|
+
"vibe-idea-studio-m1-private-boundary"
|
|
5349
|
+
],
|
|
5350
|
+
deterministic: true,
|
|
5351
|
+
random: false,
|
|
5352
|
+
tokenConvertible: false
|
|
5353
|
+
}
|
|
5354
|
+
],
|
|
5355
|
+
functionReference: [
|
|
5356
|
+
{
|
|
5357
|
+
id: "vibe-idea-studio-function-prototype",
|
|
5358
|
+
signature: "choosePrototype(kind)",
|
|
5359
|
+
summary: "Chooses one supplied, age-appropriate interactive prototype template.",
|
|
5360
|
+
parameters: [{ name: "kind", type: "text", description: "Use rescue-card, creature-card or mission-sign." }],
|
|
5361
|
+
effect: "Changes only the labelled template in the private preview.",
|
|
5362
|
+
example: 'choosePrototype("rescue-card");'
|
|
5363
|
+
},
|
|
5364
|
+
{
|
|
5365
|
+
id: "vibe-idea-studio-function-stars",
|
|
5366
|
+
signature: "setStarCount(count)",
|
|
5367
|
+
summary: "Chooses how many decorative success stars appear on the card.",
|
|
5368
|
+
parameters: [{ name: "count", type: "whole number", description: "A bounded count from 1 to 4." }],
|
|
5369
|
+
effect: "Changes only the visible star count in the private preview.",
|
|
5370
|
+
example: "setStarCount(3);"
|
|
5371
|
+
},
|
|
5372
|
+
{
|
|
5373
|
+
id: "vibe-idea-studio-function-message",
|
|
5374
|
+
signature: "setSuccessMessage(message)",
|
|
5375
|
+
summary: "Chooses one supplied child-safe success message.",
|
|
5376
|
+
parameters: [{ name: "message", type: "text", description: "Use Mission ready!, Great teamwork! or Rescue complete!" }],
|
|
5377
|
+
effect: "Changes only the fictional card message and never sends or stores text.",
|
|
5378
|
+
example: 'setSuccessMessage("Mission ready!");'
|
|
5379
|
+
}
|
|
5380
|
+
],
|
|
5381
|
+
boundedSuggestion: {
|
|
5382
|
+
id: "vibe-idea-studio-m1-authored-star-diff",
|
|
5383
|
+
source: "authored-fallback",
|
|
5384
|
+
intent: "Meet the selected acceptance test by showing three stars.",
|
|
5385
|
+
constraints: [
|
|
5386
|
+
"Change exactly one documented star-count setting.",
|
|
5387
|
+
"Preserve the selected prototype and supplied success message.",
|
|
5388
|
+
"Do not add free-form content, network, storage, DOM, account or hardware access."
|
|
5389
|
+
],
|
|
5390
|
+
permittedArtifactId: "vibe-idea-studio-m1-code",
|
|
5391
|
+
originalSnippet: "setStarCount(2);",
|
|
5392
|
+
replacementSnippet: "setStarCount(3);",
|
|
5393
|
+
explanationPrompt: "Did the accepted change satisfy the three-star acceptance test, and which evidence proves it?",
|
|
5394
|
+
aiOptional: false,
|
|
5395
|
+
learnerApprovalRequired: true,
|
|
5396
|
+
alternatives: ["accept", "reject"]
|
|
5397
|
+
}
|
|
5398
|
+
},
|
|
5399
|
+
facilitator: {
|
|
5400
|
+
artifacts: [
|
|
5401
|
+
{
|
|
5402
|
+
id: "vibe-idea-studio-m1-answer-key",
|
|
5403
|
+
kind: "answer-key",
|
|
5404
|
+
audience: "facilitator",
|
|
5405
|
+
solutionBearing: true
|
|
5406
|
+
},
|
|
5407
|
+
{
|
|
5408
|
+
id: "vibe-idea-studio-m1-protected-tests",
|
|
5409
|
+
kind: "protected-test",
|
|
5410
|
+
audience: "facilitator",
|
|
5411
|
+
solutionBearing: true
|
|
5412
|
+
},
|
|
5413
|
+
{
|
|
5414
|
+
id: "vibe-idea-studio-m1-safety-notes",
|
|
5415
|
+
kind: "facilitator-note",
|
|
5416
|
+
audience: "facilitator",
|
|
5417
|
+
solutionBearing: true
|
|
5418
|
+
}
|
|
5419
|
+
],
|
|
5420
|
+
protectedGoals: [
|
|
5421
|
+
{
|
|
5422
|
+
id: "vibe-idea-studio-m1-protected-boundaries",
|
|
5423
|
+
statement: "The sandbox rejects free-form prompts, personal data, disallowed messages, extra statements, network access and changes outside the approved diff.",
|
|
5424
|
+
visibility: "protected",
|
|
5425
|
+
criterionIds: ["vibe-idea-studio-edge-one", "vibe-idea-studio-edge-two"],
|
|
5426
|
+
completionRequired: false,
|
|
5427
|
+
aiRequired: false
|
|
5428
|
+
}
|
|
5429
|
+
],
|
|
5430
|
+
prompts: [
|
|
5431
|
+
"Ask the learner to name the idea, audience and acceptance test before revealing the authored diff.",
|
|
5432
|
+
"Keep choices bound to supplied child-safe cards, the current rubric and permitted artifact; never invite free-form chat.",
|
|
5433
|
+
"A rejection must preserve source, and AI/provider failure must never block deterministic prototype completion."
|
|
5434
|
+
]
|
|
5435
|
+
}
|
|
5436
|
+
};
|
|
5437
|
+
var ADVENTURE_MISSION_PLANNER_MISSION_ONE_AUTHORING_V1 = {
|
|
5438
|
+
version: MISSION_AUTHORING_CONTRACT_VERSION_V1,
|
|
5439
|
+
moduleId: "junior-coder.adventure-mission-planner",
|
|
5440
|
+
moduleVersion: "1.1.0",
|
|
5441
|
+
missionId: "adventure-mission-planner-mission-1",
|
|
5442
|
+
learner: {
|
|
5443
|
+
estimatedMinutes: 20,
|
|
5444
|
+
stages: [
|
|
5445
|
+
{
|
|
5446
|
+
kind: "learn",
|
|
5447
|
+
instruction: "Read how semantic headings, labelled mission fields, arrays, state and the five documented functions build an accessible fictional planner.",
|
|
5448
|
+
artifactIds: ["adventure-mission-planner-m1-guide"]
|
|
5449
|
+
},
|
|
5450
|
+
{
|
|
5451
|
+
kind: "predict",
|
|
5452
|
+
instruction: "Predict what will still be available after the private preview restarts when local save is disabled.",
|
|
5453
|
+
artifactIds: ["adventure-mission-planner-m1-test-card"]
|
|
5454
|
+
},
|
|
5455
|
+
{
|
|
5456
|
+
kind: "build",
|
|
5457
|
+
instruction: "Change only the supplied planner settings and keep the fictional mission free of names, contact details and real locations.",
|
|
5458
|
+
artifactIds: ["adventure-mission-planner-m1-code"]
|
|
5459
|
+
},
|
|
5460
|
+
{
|
|
5461
|
+
kind: "run",
|
|
5462
|
+
instruction: "Use the action-icon Run button to render the semantic private planner preview and its text equivalent.",
|
|
5463
|
+
artifactIds: ["adventure-mission-planner-m1-code"]
|
|
5464
|
+
},
|
|
5465
|
+
{
|
|
5466
|
+
kind: "assess",
|
|
5467
|
+
instruction: "Run deterministic structure, validation, array, state, local-save and accessibility checks.",
|
|
5468
|
+
artifactIds: []
|
|
5469
|
+
},
|
|
5470
|
+
{
|
|
5471
|
+
kind: "inspect",
|
|
5472
|
+
instruction: "Compare the observed restart result with the selected persistence goal and highlighted setting.",
|
|
5473
|
+
artifactIds: ["adventure-mission-planner-m1-code"]
|
|
5474
|
+
},
|
|
5475
|
+
{
|
|
5476
|
+
kind: "fix",
|
|
5477
|
+
instruction: "Review and accept or reject the exact local-save change yourself, then rerun every check.",
|
|
5478
|
+
artifactIds: ["adventure-mission-planner-m1-code"]
|
|
5479
|
+
},
|
|
5480
|
+
{
|
|
5481
|
+
kind: "explain",
|
|
5482
|
+
instruction: "Explain how semantic labels, validation and private local save make the planner easier and safer to use.",
|
|
5483
|
+
artifactIds: []
|
|
5484
|
+
},
|
|
5485
|
+
{
|
|
5486
|
+
kind: "reward",
|
|
5487
|
+
instruction: "Collect the evidence-bound planner badge after the score reaches 80 and every privacy and accessibility check passes.",
|
|
5488
|
+
artifactIds: []
|
|
5489
|
+
}
|
|
5490
|
+
],
|
|
5491
|
+
readinessChecks: [
|
|
5492
|
+
{
|
|
5493
|
+
id: "adventure-mission-planner-m1-label-check",
|
|
5494
|
+
prompt: "Find the visible heading, mission title, day and validation message that a screen reader must also announce.",
|
|
5495
|
+
scored: false
|
|
5496
|
+
}
|
|
5497
|
+
],
|
|
5498
|
+
artifacts: [
|
|
5499
|
+
{
|
|
5500
|
+
id: "adventure-mission-planner-m1-code",
|
|
5501
|
+
kind: "starter-code",
|
|
5502
|
+
audience: "learner",
|
|
5503
|
+
solutionBearing: false
|
|
5504
|
+
},
|
|
5505
|
+
{
|
|
5506
|
+
id: "adventure-mission-planner-m1-guide",
|
|
5507
|
+
kind: "starter-assets",
|
|
5508
|
+
audience: "learner",
|
|
5509
|
+
solutionBearing: false
|
|
5510
|
+
},
|
|
5511
|
+
{
|
|
5512
|
+
id: "adventure-mission-planner-m1-test-card",
|
|
5513
|
+
kind: "sample-data",
|
|
5514
|
+
audience: "learner",
|
|
5515
|
+
solutionBearing: false
|
|
5516
|
+
}
|
|
5517
|
+
],
|
|
5518
|
+
goals: [
|
|
5519
|
+
{
|
|
5520
|
+
id: "adventure-mission-planner-m1-starts",
|
|
5521
|
+
statement: "The semantic planner structure, labelled validation message and fictional mission array are valid and start.",
|
|
5522
|
+
visibility: "visible",
|
|
5523
|
+
criterionIds: ["adventure-mission-planner-build"],
|
|
5524
|
+
completionRequired: true,
|
|
5525
|
+
aiRequired: false
|
|
5526
|
+
},
|
|
5527
|
+
{
|
|
5528
|
+
id: "adventure-mission-planner-m1-behaviour",
|
|
5529
|
+
statement: "The planner state contains the supplied fictional mission and its approved private local save survives a simulated restart.",
|
|
5530
|
+
visibility: "visible",
|
|
5531
|
+
criterionIds: [
|
|
5532
|
+
"adventure-mission-planner-goal-one",
|
|
5533
|
+
"adventure-mission-planner-goal-two",
|
|
5534
|
+
"adventure-mission-planner-goal-three"
|
|
5535
|
+
],
|
|
5536
|
+
completionRequired: true,
|
|
5537
|
+
aiRequired: false
|
|
5538
|
+
},
|
|
5539
|
+
{
|
|
5540
|
+
id: "adventure-mission-planner-m1-accessible-private",
|
|
5541
|
+
statement: "The planner keeps an accessible text summary and uses only private simulated local save with no network or personal data.",
|
|
5542
|
+
visibility: "visible",
|
|
5543
|
+
criterionIds: ["adventure-mission-planner-safety"],
|
|
5544
|
+
completionRequired: true,
|
|
5545
|
+
aiRequired: false
|
|
5546
|
+
}
|
|
5547
|
+
],
|
|
5548
|
+
interactions: [
|
|
5549
|
+
{
|
|
5550
|
+
id: "adventure-mission-planner-m1-editor",
|
|
5551
|
+
description: "Edit the documented planner settings.",
|
|
5552
|
+
primaryMode: "text",
|
|
5553
|
+
alternativeIds: []
|
|
5554
|
+
},
|
|
5555
|
+
{
|
|
5556
|
+
id: "adventure-mission-planner-m1-run",
|
|
5557
|
+
description: "Run the private semantic planner preview.",
|
|
5558
|
+
primaryMode: "pointer",
|
|
5559
|
+
alternativeIds: ["adventure-mission-planner-m1-keyboard-run"]
|
|
5560
|
+
},
|
|
5561
|
+
{
|
|
5562
|
+
id: "adventure-mission-planner-m1-review",
|
|
5563
|
+
description: "Read the labelled removed and added local-save lines and choose Accept or Reject.",
|
|
5564
|
+
primaryMode: "text",
|
|
5565
|
+
alternativeIds: []
|
|
5566
|
+
}
|
|
5567
|
+
],
|
|
5568
|
+
accessibilityAlternatives: [
|
|
5569
|
+
{
|
|
5570
|
+
id: "adventure-mission-planner-m1-keyboard-run",
|
|
5571
|
+
modes: ["keyboard", "text", "reduced-motion"],
|
|
5572
|
+
equivalentOutcome: true,
|
|
5573
|
+
description: "Press Enter or Space on the action-icon button and use the same text planner summary without motion or drag."
|
|
5574
|
+
}
|
|
5575
|
+
],
|
|
5576
|
+
evidenceRequirements: [
|
|
5577
|
+
{
|
|
5578
|
+
id: "adventure-mission-planner-m1-assessment",
|
|
5579
|
+
goalIds: [
|
|
5580
|
+
"adventure-mission-planner-m1-starts",
|
|
5581
|
+
"adventure-mission-planner-m1-behaviour",
|
|
5582
|
+
"adventure-mission-planner-m1-accessible-private"
|
|
5583
|
+
],
|
|
5584
|
+
kind: "assessment-result",
|
|
5585
|
+
retention: "entitlement",
|
|
5586
|
+
containsPersonalData: false
|
|
5587
|
+
},
|
|
5588
|
+
{
|
|
5589
|
+
id: "adventure-mission-planner-m1-explanation",
|
|
5590
|
+
goalIds: ["adventure-mission-planner-m1-accessible-private"],
|
|
5591
|
+
kind: "learner-explanation",
|
|
5592
|
+
retention: "attempt",
|
|
5593
|
+
containsPersonalData: false
|
|
5594
|
+
}
|
|
5595
|
+
],
|
|
5596
|
+
sideAdventures: [
|
|
5597
|
+
{
|
|
5598
|
+
id: "adventure-mission-planner-m1-remix",
|
|
5599
|
+
prompt: "Add one supplied fictional mission and describe the validation and accessible summary it needs.",
|
|
5600
|
+
completionRequired: false
|
|
5601
|
+
}
|
|
5602
|
+
],
|
|
5603
|
+
rewardBindings: [
|
|
5604
|
+
{
|
|
5605
|
+
id: "adventure-mission-planner-m1-badge",
|
|
5606
|
+
badgeId: "adventure-mission-planner-mission-complete",
|
|
5607
|
+
goalIds: [
|
|
5608
|
+
"adventure-mission-planner-m1-starts",
|
|
5609
|
+
"adventure-mission-planner-m1-behaviour",
|
|
5610
|
+
"adventure-mission-planner-m1-accessible-private"
|
|
5611
|
+
],
|
|
5612
|
+
deterministic: true,
|
|
5613
|
+
random: false,
|
|
5614
|
+
tokenConvertible: false
|
|
5615
|
+
}
|
|
5616
|
+
],
|
|
5617
|
+
functionReference: [
|
|
5618
|
+
{
|
|
5619
|
+
id: "adventure-mission-planner-function-heading",
|
|
5620
|
+
signature: "setPlannerHeading(heading)",
|
|
5621
|
+
summary: "Chooses one supplied fictional heading for the semantic planner.",
|
|
5622
|
+
parameters: [{ name: "heading", type: "text", description: "Use Moonbase Missions, Forest Rescue Plans or Ocean Quest Board." }],
|
|
5623
|
+
effect: "Updates the visible and screen-reader planner heading in the private preview.",
|
|
5624
|
+
example: 'setPlannerHeading("Moonbase Missions");'
|
|
5625
|
+
},
|
|
5626
|
+
{
|
|
5627
|
+
id: "adventure-mission-planner-function-mission",
|
|
5628
|
+
signature: "addMission(title, day)",
|
|
5629
|
+
summary: "Adds one supplied fictional mission to the in-memory mission array.",
|
|
5630
|
+
parameters: [
|
|
5631
|
+
{ name: "title", type: "text", description: "Use a supplied fictional mission title." },
|
|
5632
|
+
{ name: "day", type: "text", description: "Use Saturday, Sunday or School holiday." }
|
|
5633
|
+
],
|
|
5634
|
+
effect: "Adds one validated fictional item to private preview state without sending a form.",
|
|
5635
|
+
example: 'addMission("Find the moon crystal", "Saturday");'
|
|
5636
|
+
},
|
|
5637
|
+
{
|
|
5638
|
+
id: "adventure-mission-planner-function-validation",
|
|
5639
|
+
signature: "showValidationMessage(message)",
|
|
5640
|
+
summary: "Chooses one supplied child-readable form validation message.",
|
|
5641
|
+
parameters: [{ name: "message", type: "text", description: "Use Choose a day, Add a mission title or Mission ready!" }],
|
|
5642
|
+
effect: "Shows the message visibly and in the accessible text summary.",
|
|
5643
|
+
example: 'showValidationMessage("Mission ready!");'
|
|
5644
|
+
},
|
|
5645
|
+
{
|
|
5646
|
+
id: "adventure-mission-planner-function-save",
|
|
5647
|
+
signature: "enableLocalSave(enabled)",
|
|
5648
|
+
summary: "Turns the private simulated local-save behaviour on or off.",
|
|
5649
|
+
parameters: [{ name: "enabled", type: "Boolean", description: "Use true or false." }],
|
|
5650
|
+
effect: "Controls only the bounded simulated restart; it never writes Plasius or server storage.",
|
|
5651
|
+
example: "enableLocalSave(true);"
|
|
5652
|
+
},
|
|
5653
|
+
{
|
|
5654
|
+
id: "adventure-mission-planner-function-summary",
|
|
5655
|
+
signature: "setAccessibleSummary(enabled)",
|
|
5656
|
+
summary: "Keeps an equivalent text summary beside the visual planner.",
|
|
5657
|
+
parameters: [{ name: "enabled", type: "Boolean", description: "Use true to keep the equivalent summary." }],
|
|
5658
|
+
effect: "Controls the private preview text equivalent used by assistive technology and reduced-motion routes.",
|
|
5659
|
+
example: "setAccessibleSummary(true);"
|
|
5660
|
+
}
|
|
5661
|
+
],
|
|
5662
|
+
boundedSuggestion: {
|
|
5663
|
+
id: "adventure-mission-planner-m1-local-save-diff",
|
|
5664
|
+
source: "authored-fallback",
|
|
5665
|
+
intent: "Make the fictional mission survive the simulated private restart.",
|
|
5666
|
+
constraints: [
|
|
5667
|
+
"Change exactly one documented local-save setting.",
|
|
5668
|
+
"Preserve the supplied semantic heading, fictional mission, validation and accessible summary.",
|
|
5669
|
+
"Do not add network, external scripts, transmitting forms, trackers, personal data or server storage."
|
|
5670
|
+
],
|
|
5671
|
+
permittedArtifactId: "adventure-mission-planner-m1-code",
|
|
5672
|
+
originalSnippet: "enableLocalSave(false);",
|
|
5673
|
+
replacementSnippet: "enableLocalSave(true);",
|
|
5674
|
+
explanationPrompt: "Did the mission survive the simulated restart, and which accessibility and privacy evidence stayed unchanged?",
|
|
5675
|
+
aiOptional: false,
|
|
5676
|
+
learnerApprovalRequired: true,
|
|
5677
|
+
alternatives: ["accept", "reject"]
|
|
5678
|
+
}
|
|
5679
|
+
},
|
|
5680
|
+
facilitator: {
|
|
5681
|
+
artifacts: [
|
|
5682
|
+
{
|
|
5683
|
+
id: "adventure-mission-planner-m1-answer-key",
|
|
5684
|
+
kind: "answer-key",
|
|
5685
|
+
audience: "facilitator",
|
|
5686
|
+
solutionBearing: true
|
|
5687
|
+
},
|
|
5688
|
+
{
|
|
5689
|
+
id: "adventure-mission-planner-m1-protected-tests",
|
|
5690
|
+
kind: "protected-test",
|
|
5691
|
+
audience: "facilitator",
|
|
5692
|
+
solutionBearing: true
|
|
5693
|
+
},
|
|
5694
|
+
{
|
|
5695
|
+
id: "adventure-mission-planner-m1-safety-notes",
|
|
5696
|
+
kind: "facilitator-note",
|
|
5697
|
+
audience: "facilitator",
|
|
5698
|
+
solutionBearing: true
|
|
5699
|
+
}
|
|
5700
|
+
],
|
|
5701
|
+
protectedGoals: [
|
|
5702
|
+
{
|
|
5703
|
+
id: "adventure-mission-planner-m1-protected-boundary",
|
|
5704
|
+
statement: "The planner rejects arbitrary text, personal data, scripts, network calls, transmitting forms, tracking and persistence outside the bounded simulator.",
|
|
5705
|
+
visibility: "protected",
|
|
5706
|
+
criterionIds: [
|
|
5707
|
+
"adventure-mission-planner-edge-one",
|
|
5708
|
+
"adventure-mission-planner-edge-two"
|
|
5709
|
+
],
|
|
5710
|
+
completionRequired: false,
|
|
5711
|
+
aiRequired: false
|
|
5712
|
+
}
|
|
5713
|
+
],
|
|
5714
|
+
prompts: [
|
|
5715
|
+
"Ask the learner to name the semantic heading, validation message and text-equivalent evidence before discussing local save.",
|
|
5716
|
+
"Use only fictional supplied content; redirect names, contacts and real locations to the safe cards.",
|
|
5717
|
+
"Reject must preserve source, and provider failure must never block the deterministic authored path."
|
|
5718
|
+
]
|
|
5719
|
+
}
|
|
5720
|
+
};
|
|
5151
5721
|
var ROAD_HOPPER_RALLY_MISSION_ONE_AUTHORING_V1 = {
|
|
5152
5722
|
version: MISSION_AUTHORING_CONTRACT_VERSION_V1,
|
|
5153
5723
|
moduleId: "junior-coder.road-hopper-rally",
|
|
@@ -5496,6 +6066,7 @@ function assertValidLearningPath(path) {
|
|
|
5496
6066
|
${summary}`);
|
|
5497
6067
|
}
|
|
5498
6068
|
export {
|
|
6069
|
+
ADVENTURE_MISSION_PLANNER_MISSION_ONE_AUTHORING_V1,
|
|
5499
6070
|
BEACON_BOT_MISSION_ONE_AUTHORING_V1,
|
|
5500
6071
|
DANCE_ROVER_MISSION_ONE_AUTHORING_V1,
|
|
5501
6072
|
JUNIOR_CODER_MISSION_STAGE_ORDER_V1,
|
|
@@ -5517,6 +6088,7 @@ export {
|
|
|
5517
6088
|
STAR_DEFENDER_SQUADRON_MISSION_ONE_AUTHORING_V1,
|
|
5518
6089
|
VIBE_BUG_DETECTIVE_MISSION_ONE_AUTHORING_V1,
|
|
5519
6090
|
VIBE_GAME_REMIX_LAB_MISSION_ONE_AUTHORING_V1,
|
|
6091
|
+
VIBE_IDEA_STUDIO_MISSION_ONE_AUTHORING_V1,
|
|
5520
6092
|
assertValidLearningPath,
|
|
5521
6093
|
assertValidMissionAuthoringBundle,
|
|
5522
6094
|
calculateAssessment,
|