Conversation
🔍 Skill Validator Results3 resource(s) checked | ✅ All checks passed Full output |
There was a problem hiding this comment.
Pull request overview
Adds explicit authorship attribution to two existing skills so the author is credited both in the skills’ frontmatter and in the rendered markdown content.
Changes:
- Added
author/author_urlfields to the YAML frontmatter for two skills. - Added an “Author” section at the end of each SKILL.md with name + GitHub link.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| skills/premium-frontend-ui/SKILL.md | Adds author attribution in frontmatter and a footer “Author” section. |
| skills/gsap-framer-scroll-animation/SKILL.md | Adds author attribution in frontmatter and a footer “Author” section. |
| author: 'Utkarsh Patrikar' | ||
| author_url: 'https://github.com/utkarsh232005' |
There was a problem hiding this comment.
Most skills in this repo place attribution/extra fields under a metadata: map (e.g., skills/autoresearch/SKILL.md:6-8, skills/azure-pricing/SKILL.md:5-7). To stay consistent (and avoid introducing new top-level keys that other tooling might not expect), consider moving author/author_url under metadata: (or using an existing key like metadata.github).
| author: 'Utkarsh Patrikar' | |
| author_url: 'https://github.com/utkarsh232005' | |
| metadata: | |
| author: 'Utkarsh Patrikar' | |
| author_url: 'https://github.com/utkarsh232005' |
| author: 'Utkarsh Patrikar' | ||
| author_url: 'https://github.com/utkarsh232005' |
There was a problem hiding this comment.
Repo convention for skills is to keep attribution and other optional fields inside a metadata: block (e.g., skills/autoresearch/SKILL.md:6-8, skills/quality-playbook/SKILL.md:5-9). Consider nesting author/author_url under metadata: (or using an existing key like metadata.github) for consistency and to reduce the chance of future frontmatter schema/validation issues.
| author: 'Utkarsh Patrikar' | |
| author_url: 'https://github.com/utkarsh232005' | |
| metadata: | |
| author: 'Utkarsh Patrikar' | |
| author_url: 'https://github.com/utkarsh232005' |
Pull Request Checklist
npm startand verified thatREADME.mdis up to date.stagedbranch for this pull request.Description
Added authorship credits (name and GitHub profile link) to the YAML frontmatter and markdown content of two existing GitHub Copilot skills to properly attribute the work:
premium-frontend-uigsap-framer-scroll-animationType of Contribution
Additional Notes
These changes ensure the author is visibly credited at both the metadata layer (YAML frontmatter) and in the UI layer (document footer) across both skills.
By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.