fix: lowercase the skill name in skill.md frontmatter - #337
Merged
Merged
Conversation
The Agent Skills spec requires a lowercase name, and the upstream copy in CerebriumAI/cerebrium-skills already reads 'cerebrium'. This brings the docs-hosted copy back in line with it.
Contributor
|
Preview deployment for your docs. Learn more about Mintlify Previews.
|
milo157
approved these changes
Sep 1, 2026
jonoirwinrsa
approved these changes
Sep 1, 2026
Contributor
|
Docs PR opened: #338 Added redirects pointing three deleted pages (changelog, collaborating, Vercel integration) to the introduction; all audited page metadata already passed. Note: failed to automatically merge |
This branch was successfully deployed
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.
What changed
One token, on line 2 of the root
skill.mdfrontmatter:Nothing else in the file is touched — description, body, wrapping, and the
mintlify-proj/versionkeys are all unchanged.Why
The Agent Skills spec requires a lowercase
name, and the current capitalised value makes the published skill fail validation outright.This also realigns the file with its source of truth:
skills/cerebrium/SKILL.mdinCerebriumAI/cerebrium-skillsalready readsname: cerebrium, so the docs-hosted copy had drifted. Every other channel already serves the lowercase name.Evidence
Ran the real validator rather than reading the spec — the file as it stands on
master, then the same file with this change applied:Both reported errors stem from the same casing mismatch, and both clear with this one-token change.
Note for reviewers
skill.mdis vendored fromcerebrium-skillsand is listed in.prettierignore, so it is normally not edited in this repository. This change is the exception that closes existing drift toward upstream rather than creating new drift — upstream already has the lowercase name.Worth a separate follow-up, not addressed here:
CLAUDE.mdand the.prettierignorecomment both describe this file as vendored "byte-for-byte", which is not strictly accurate —skill.mdcarriesmintlify-proj: cerebriumandversion: "1.0"where upstream hasauthorandversion: 0.1.0. That divergence is pre-existing and deliberately left alone here.