docs: enforce release validation in CI; update README, CHANGELOG, SECURITY, ONBOARDING#22
Merged
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 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.
Motivation
x402://protocol explicit and non-assertive, so readers know this repo interoperates with x402-related payment context but does not define x402 itself.Description
.github/workflows/validate.ymlto explicitly name the release step asValidate release reproducibility and external bindingsso CI runsnpm run validate:releaseas an additional required step alongside current-line and checksum validation.README.mdwording to reference the external x402 protocol spec and to state this repository may interoperate with x402-related payment context but does not define x402.CHANGELOG.mdwith a factual, release-grade summary describing the transition fromv1.0.0tov1.1.0, what was removed, structural changes, legacy status, and migration implications.SECURITY.mdto add a concrete reporting address (security@commandlayer.org), an explicit disclosure process, target response times, and a clearer in-scope/out-of-scope definition tied to repository validation/release surfaces.ONBOARDING.mdto markscripts/archive/as historical-only and to point contributors to the supported root scripts and package commands (npm run validate,npm run validate:release,npm run generate:dist-pin,node scripts/generate-checksums.mjs, and the current validators underscripts/).Testing
npm run validatelocally and it completed successfully (cards + checksums verification).npm run validate:releaselocally and it failed on external upstream schema URL resolution (fetch failed), which is the expected enforced failure mode for release validation when upstream tagged schema URLs or mirrors are unavailable and confirms CI will fail in that case.node scripts/generate-checksums.mjs --verify(invoked byvalidate) succeeded andchecksums.txtmatches repository contents.Codex Task