← スキル一覧に戻る

version-changelog-patterns
by CoderMariusz
MonoPilot - Manufacturing and Purchase Order Management System
⭐ 1🍴 0📅 2026年1月20日
SKILL.md
name: version-changelog-patterns description: When checking if skill content matches current library/framework version. version: 1.0.0 tokens: ~350 confidence: high sources:
- https://semver.org/
- https://keepachangelog.com/ last_validated: 2025-01-10 next_review: 2025-01-24 tags: [versioning, changelog, updates, skills]
When to Use
When checking if skill content matches current library/framework version.
Patterns
Version Check Strategy
# Search for latest version
"[library] latest version 2025"
"[library] npm OR pypi OR crates"
# Find changelog
"[library] changelog OR releases"
"[library] site:github.com releases"
Changelog Locations by Platform
npm packages:
- npmjs.com/package/[name]?activeTab=versions
- github.com/[org]/[repo]/releases
Python:
- pypi.org/project/[name]/#history
- github.com/[org]/[repo]/blob/main/CHANGELOG.md
GitHub:
- /releases (preferred)
- /blob/main/CHANGELOG.md
- /blob/main/HISTORY.md
Breaking Changes Keywords
Search for:
- "BREAKING CHANGE"
- "breaking:"
- "deprecated"
- "removed in [version]"
- "migration guide"
- "upgrade guide"
SemVer Quick Reference
MAJOR.MINOR.PATCH (e.g., 2.1.3)
MAJOR: Breaking changes (APIs removed/changed)
MINOR: New features (backward compatible)
PATCH: Bug fixes only
⚠️ Pre-1.0: Any change can be breaking
⚠️ Check for ^ vs ~ in dependencies
Anti-Patterns
- Assuming patch versions have no impact
- Ignoring peer dependency changes
- Not checking release date (old = risky)
- Skipping alpha/beta/rc notes
Verification Checklist
- Current version identified
- Skill assumes correct version
- No breaking changes since skill creation
- Deprecation warnings checked
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です