feat: expand skill validation to cover full Agent Skills spec#15
Merged
Conversation
Replace the description-only check with comprehensive validation per the agentskills.io specification: - name: required, max 64 chars, lowercase+hyphens only, no leading/ trailing/consecutive hyphens, must match directory name - description: required, non-empty, max 1024 chars - compatibility: max 500 chars if present - SKILL.md must exist in each skill directory - body over 500 lines triggers a warning
- Upgrade actions/checkout v4 → v6 - Replace extractions/setup-just with direct install (its dependency setup-crate is stuck on Node 20) - Upgrade action-semantic-pull-request v5 → v6
just isn't pre-installed on ubuntu-latest, so keep setup-just action and opt into Node 24 to suppress deprecation warnings.
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.
Summary
validate-skill-descriptions.shwithvalidate-skills.shcovering the full Agent Skills specname(required, max 64 chars, lowercase+hyphens, no leading/trailing/consecutive hyphens, must match directory),description(required, max 1024 chars),compatibility(max 500 chars if present), SKILL.md existence, body length warning at 500+ linesTest plan