chore: update validation workflow and scripts for README and manifest versions - #78
Open
birosrichard wants to merge 1 commit into
Open
chore: update validation workflow and scripts for README and manifest versions#78birosrichard wants to merge 1 commit into
birosrichard wants to merge 1 commit into
Conversation
Contributor
|
@claude /code-review |
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.
Extend generate_agents.py to check README and manifest versions
agents/AGENTS.mdis generated andmarketplace.jsonis validated in CI, but two other hand-maintained surfaces had no guard at all, and both had already drifted:gemini-extension.jsonwas on1.0.0, whileplugin.jsonandmarketplace.jsonwere on2.0.0. Fixed here.Skills-Nbadge are updated by hand. Nothing stops a new skill from landing without them.The script already walks these files, so it now checks them too.
Changes
validate_readmecompares the skill names in the## Skillstable againstskills/*/SKILL.mdin both directions, and checks the badge count (URL and alt text). Only names and counts, not the prose: the table copy is hand-written and better than theSKILL.mddescriptions, so it stays human.validate_versions— asserts one shared version acrossplugin.json,gemini-extension.json,marketplace.jsonmetadata, and each per-plugin version inmarketplace.json(those are what users actually install).pathsnow includeREADME.md,plugin.jsonandgemini-extension.json; otherwise, a PR touching only those files would skip validation entirely.This is part of the #75