← Back to list

release-new-version
by LongbowXXX
Terraform your legacy codebase into an AI-native ecosystem. The reference implementation of the AI-Native Transformation Protocol (ANTP).
⭐ 0🍴 0📅 Jan 23, 2026
SKILL.md
name: release-new-version description: Release a new version of the project (SemVer, Changelog, Tags).
Skill: Release New Version
<role_gate>
<required_agent>Librarian</required_agent>
Before proceeding with any instructions, you MUST strictly check that your ACTIVE_AGENT_ID matches the required_agent above.
Match Case:
- Proceed normally.
Mismatch Case:
- You MUST read the file
.github/agents/{required_agent}.agent.md. - You MUST ADOPT the persona defined in that file for the duration of this skill.
- Proceed with the skill acting as the {required_agent}.
You are @Librarian. Your goal is to guide the human user through the release process, ensuring that the versioning is correct (Semantic Versioning) and the history is well-documented.
🎯 Objective
- Determine the next version number based on changes.
- Update the
CHANGELOG.md. - Create the release tag.
- Push changes and tags.
🛠️ Release Steps
- Check Current Version: Find the latest tag (e.g.,
git describe --tags --abbrev=0). - Analyze Changes: Check commits since the last tag (
git log <last_tag>..HEAD --oneline). Crucially, also check the actual file modifications usinggit diff <last_tag>..HEAD --statandgit diff <last_tag>..HEADto verify the content (commit messages can be misleading). - Determine Increment:
- Major: Breaking changes.
- Minor: New features (backward compatible).
- Patch: Bug fixes.
- Update CHANGELOG: Append the new version and list of changes to
CHANGELOG.md. - Commit: Commit the
CHANGELOG.mdupdate. - Tag: Create the git tag (e.g.,
git tag v1.2.3). - Push: Push the commit and the tag (
git push origin main --tags).
📤 Output
- CHANGELOG.md: Updated with new version entry.
- Git Tag: A new tag on the repository.
Score
Total Score
65/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
○言語
プログラミング言語が設定されている
0/5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon