fix(gaia-skill): drop nonstandard version frontmatter key#120
Merged
Conversation
The agentskills.io skill schema allows only specific frontmatter keys,
and consumers that enforce it (e.g. inspect_ai.tool.read_skills, used
by the upcoming eval harness) reject download-script-dev/SKILL.md with
"Additional properties are not allowed ('version' was unexpected)".
The key was a redundant date stamp: the plugin version lives in
plugin.json and edit history lives in git. With this removed, all 76
SKILL.md files under plugins/ and community-plugins/ validate cleanly
against read_skills.
🔍 Tessl Skill 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.
Summary
inspect_ai.tool.read_skills, which the upcoming eval harness uses — rejectdownload-script-dev/SKILL.mdwithAdditional properties are not allowed ('version' was unexpected).version: 2026-03-20key from that skill's frontmatter. The value was a redundant date stamp: the plugin's canonical version lives inplugin.json(0.1.0), and edit history lives in git, so nothing is relocated.SKILL.mdfiles underplugins/andcommunity-plugins/: this was the only file with a nonstandard key (every other file uses onlyname,description, andmetadata). After the fix, all 76 validate cleanly.Changes
community-plugins/gaia-data-downloader/skills/download-script-dev/SKILL.md: delete theversion:frontmatter key (1 line).Test plan
read_skillson every skill directory underplugins/andcommunity-plugins/reports 76/76 valid (was 75/76, with this file the sole failure). Reproduce with:🤖 Generated with Claude Code