This repository was archived by the owner on May 24, 2026. It is now read-only.
Clarify release integrity boundaries#8
Merged
GsCommand merged 2 commits intoMar 19, 2026
Conversation
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Motivation
$schemareference that implied an external authoritative validation step which is not enforced.Description
schemas/v1.1.0/,examples/v1.1.0/, andmanifest.jsonand documenting that decision inREADME.md,SPEC.md,POLICY.md,SECURITY_PROVENANCE.md, andONBOARDING.md.$schemafield frommanifest.jsonand tightenedscripts/validate-all.mjsto assert the absence of a$schemafield and to checkmanifestfields such ascurrent_indexandchecksums_filedirectly.scripts/generate-checksums.mjsto parameterize the current version, assert that only the intended machine-artifact files are collected, and fail if unexpected targets are found, and regeneratedchecksums.txt.GOVERNANCE.md,POLICY.md,COMPLIANCE.md,SECURITY.md, andONBOARDING.mdso each meta document signals whether it is repo-wide, current-line general, or active-line specific.Testing
npm run generate:checksumsand the script successfully wrote the new checksum ledger for the current-line machine artifacts.npm run validate(which runsvalidate:schemasandvalidate:examples) and it passed with the strengthened manifest checks.npm run validate:examplesseparately and it passed for all verbs.sha256sum -c checksums.txtand all entries checked OK.Codex Task