docs(skill): contributor avatars + origin/main sync in release-version - #82
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the release-version skill documentation to make the release workflow safer (by starting from an up-to-date origin/main) and to improve the presentation of contributor credits in the generated release notes.
Changes:
- Adds an explicit “start from
origin/main” sync block (fetch/checkout/pull + clean-tree check) before the release procedure. - Updates the “Contributors” section guidance to use clickable GitHub avatars when usernames are known.
- Adds a prerequisite noting the repo must be on
mainand synced withorigin/main.
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
|
|
||
| ## Procedure | ||
|
|
||
| > **Start from `origin/main`:** the version bump and tag land on `main`, so a stale or non-`main` branch would tag the wrong commit. Before anything else, sync: |
GOODBOY008
force-pushed
the
docs/release-version-skill
branch
from
August 8, 2026 16:12
043760d to
b1f6cd5
Compare
This was referenced Aug 11, 2026
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
Updates the
release-versionskill (.github/skills/release-version/SKILL.md) with three improvements:1. GitHub "What's Changed" release-note format
The CHANGELOG/release body now follows the GitHub auto-generated notes format (as requested):
Breaking Changes 🛠/New Features 🎉/Bug Fixes 🐛/Documentation 📚/Performance Improvements 🚀/Other Changestype(scope): subject by @username in #PR, resolving the username and PR number via theghAPI (with fallbacks when unknown)**Full Changelog**compare link2. Contributor avatars
The
### Contributorssection renders each known contributor's GitHub avatar (https://github.com/<username>.png?size=40) as a clickable link, instead of plain text.3. Start from
origin/mainThe procedure now opens by syncing to
origin/main—git fetch origin,git checkout main,git pull --ff-only origin main, clean-working-tree check — so the version bump and tag never land on a stale or non-maincommit.Verification
.claude/skills/release-version/SKILL.mdis a hardlink to the canonical file, so the change propagates to what Claude Code loads.🤖 Generated with Claude Code