chore: pin learn-content-engine 0.23.0, sync adopted extensions - #19
Merged
Conversation
…tensions learn-content-engine 0.23.0 adds Exercise.explanation (a post-answer "why" field, maxLength 2000) and three new reference extensions, ext:ref-audio-choice, ext:ref-audio-tiles, and ext:ref-speak-and-record. The vendored schema mirror (schema/lesson.schema.json, schema/content-manifest.schema.json, schema/quality-rules.json) is refreshed against the npm tarball for this version via check_schema_drift.py --update; scripts/lce_schema.py came back byte-identical and needed no change. scripts/validate_with_engine.mjs's ADOPTED_EXTENSIONS listed only 4 of the 9 ext: types the app actually supports (ext:al-categorization, ext:al-error-correction, ext:al-reading-comprehension, ext:al-graded-quiz), missing ext:al-dictation, ext:al-image-description, ext:al-speak-and-record, ext:al-audio-choice, and ext:al-audio-tiles. The same gap was just found and fixed in alc-dog-training (PR #21) - it is a genuine, independent bug, not something introduced by this repin. The list now mirrors adaptive-learner's SUPPORTED_EXTENSIONS verbatim. Proof, via this repo's own runner at the new pin: - check_schema_drift.py: mirror in sync with 0.23.0 - validate_with_engine.mjs --self-test: all classes pass - engine-validate: 28 lessons + 4 manifests, 0 errors - lint-warnings: 0 errors, 23 pre-existing W-CARD-UNUSED/W-TILES-DUP warnings (unrelated to this repin) - audit_content.py: no quality issues found - check-stable-ids: 457 == 457, 28 == 28 lessons, 0 retired (unchanged) - check-stable-id-coverage: 3 of 3 sets fully minted, baseline matches Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #18.
learn-content-engine 0.23.0 adds Exercise.explanation (a post-answer
"why" field, maxLength 2000) and three new reference extensions,
ext:ref-audio-choice, ext:ref-audio-tiles, and ext:ref-speak-and-record.
The vendored schema mirror is refreshed against the npm tarball for
this version via check_schema_drift.py --update.
Also found and fixed while here: scripts/validate_with_engine.mjs's
ADOPTED_EXTENSIONS listed only 4 of the 9 ext: types the app actually
supports, missing ext:al-dictation, ext:al-image-description,
ext:al-speak-and-record, ext:al-audio-choice, and ext:al-audio-tiles.
This is the same gap just found and fixed in alc-dog-training (PR #21
there) - a genuine, independent bug, not introduced by this repin. The
list now mirrors adaptive-learner's SUPPORTED_EXTENSIONS verbatim.
Gate results (this repo's own runner at the new pin):