Tighten v1.1.0 authority and validation surfaces#10
Open
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
v1.1.0).dist-pinis treated as a derivative bundle, not a source of truth.Description
README.mdand add authority metadata tometa/manifest.json, makingv1.1.0the single current line and classifyingdist-pin/agent-cards/v1.1.0/as a derivative release bundle.checksums-v1.1.0.txt(current) andchecksums-v1.0.0.txt(legacy), removechecksums.txt, and updatescripts/generate-checksums.mjsto support--profile current|legacyand produce/verify scoped checksum files.schemas/v1.1.0/agent.card.schema.jsonand allagents/v1.1.0/*cards to a minimal, binding-only shape (identity, owner, ens, version, status, class, implements,schemas,schemas_mirror,entry,updated_at), removing descriptive/capabilities/meta noise from the current line..well-knownexplicit pointer + frozen snapshot model by changing.well-known/agent.jsoninto thecurrent-pointerand.well-known/agent-cards-v1.1.0.jsoninto thefrozen-snapshot; update descriptor schema to requireroleand optionalsnapshotlink.agents/v1.0.0/*: removed unverifiablepgp_fingerprintclaims, replaced fake IPFS mirror patterns with archival HTTP mirrors where applicable, and addarchival_noteto clearly mark v1.0.0 as archival.package.json(validate:current,validate:legacy,validate:checksums,validate:release) and makenpm run validaterun the current-line validation + checksums only.scripts/validate-cards.mjsto enforce manifest ↔ card exact matching,dist-pinbyte-for-byte parity, discovery pointer ↔ snapshot relationship, and release-time URL/x402checks.Testing
npm installthennpm run validate(which runsvalidate:current+ checksum verification); result:✅all current-line validations passed (discovery, manifest↔cards, dist-pin parity).npm run validate:legacy; result:✅legacy checks passed and placeholders/PGP claims were removed or replaced with archival notes.node scripts/generate-checksums.mjs --profile current --verify(vianpm run validate:checksums); result:✅checksums-v1.1.0.txtmatches current artifacts.npm run validate:release(networked release-time checks); result:❌failed in this environment due to blocked outbound fetches (the validation logic is present and will succeed when run with network access against the published endpoints).Codex Task