Claude Code Plugins

Community-maintained marketplace

Feedback

version-changelog-patterns

@CoderMariusz/MonoPilot
1
0

When checking if skill content matches current library/framework version.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

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 Fri Jan 10 2025 00:00:00 GMT+0000 (Coordinated Universal Time)
next_review Fri Jan 24 2025 00:00:00 GMT+0000 (Coordinated Universal Time)
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