jpskill.com
📦 その他 コミュニティ

semantic-versioning

Implement semantic versioning (SemVer) with automated release management. Use conventional commits, semantic-release, and version bumping strategies.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o semantic-versioning.zip https://jpskill.com/download/21528.zip && unzip -o semantic-versioning.zip && rm semantic-versioning.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/21528.zip -OutFile "$d\semantic-versioning.zip"; Expand-Archive "$d\semantic-versioning.zip" -DestinationPath $d -Force; ri "$d\semantic-versioning.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して semantic-versioning.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → semantic-versioning フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
7

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

セマンティックバージョニング

目次

概要

リリース重要度と整合した一貫性のあるバージョン番号付けを維持するために、セマンティックバージョニングのプラクティスを確立し、自動化されたバージョン管理とリリースノート生成を可能にします。

使用場面

  • パッケージおよびライブラリのリリース
  • APIバージョニング
  • バージョンアップの自動化
  • リリースノートの生成
  • 破壊的変更の追跡
  • 依存関係管理
  • チェンジログ管理

クイックスタート

最小限の動作例:

# package.json
{
  "name": "my-awesome-package",
  "version": "1.2.3",
  "description": "An awesome package",
  "main": "dist/index.js",
  "repository": { "type": "git", "url": "https://github.com/org/repo.git" },
  "scripts": { "release": "semantic-release" },
  "devDependencies":
    {
      "semantic-release": "^21.0.0",
      "@semantic-release/changelog": "^6.0.0",
      "@semantic-release/git": "^10.0.0",
      "@semantic-release/github": "^9.0.0",
      "conventional-changelog-cli": "^3.0.0",
    },
}

リファレンスガイド

references/ ディレクトリ内の詳細な実装:

ガイド 内容
Semantic Versioning Configuration セマンティックバージョニングの設定
Conventional Commits Format Conventional Commits フォーマット
Semantic Release Configuration Semantic Release の設定
Version Bumping Script バージョンアップスクリプト
Changelog Generation チェンジログの生成

ベストプラクティス

✅ 実施すべきこと

  • 厳密な MAJOR.MINOR.PATCH フォーマットに従う
  • Conventional Commits を使用する
  • バージョンアップを自動化する
  • チェンジログを自動生成する
  • Git でリリースをタグ付けする
  • 破壊的変更を文書化する
  • テスト用にプレリリースバージョンを使用する

❌ 実施すべきでないこと

  • バージョンを不規則に手動で更新する
  • 破壊的変更の文書化を省略する
  • 任意のバージョン番号付けを使用する
  • パッチリリースで複数の機能を混在させる
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Semantic Versioning

Table of Contents

Overview

Establish semantic versioning practices to maintain consistent version numbering aligned with release significance, enabling automated version management and release notes generation.

When to Use

  • Package and library releases
  • API versioning
  • Version bumping automation
  • Release note generation
  • Breaking change tracking
  • Dependency management
  • Changelog management

Quick Start

Minimal working example:

# package.json
{
  "name": "my-awesome-package",
  "version": "1.2.3",
  "description": "An awesome package",
  "main": "dist/index.js",
  "repository": { "type": "git", "url": "https://github.com/org/repo.git" },
  "scripts": { "release": "semantic-release" },
  "devDependencies":
    {
      "semantic-release": "^21.0.0",
      "@semantic-release/changelog": "^6.0.0",
      "@semantic-release/git": "^10.0.0",
      "@semantic-release/github": "^9.0.0",
      "conventional-changelog-cli": "^3.0.0",
    },
}

Reference Guides

Detailed implementations in the references/ directory:

Guide Contents
Semantic Versioning Configuration Semantic Versioning Configuration
Conventional Commits Format Conventional Commits Format
Semantic Release Configuration Semantic Release Configuration
Version Bumping Script Version Bumping Script
Changelog Generation Changelog Generation

Best Practices

✅ DO

  • Follow strict MAJOR.MINOR.PATCH format
  • Use conventional commits
  • Automate version bumping
  • Generate changelogs automatically
  • Tag releases in git
  • Document breaking changes
  • Use prerelease versions for testing

❌ DON'T

  • Manually bump versions inconsistently
  • Skip breaking change documentation
  • Use arbitrary version numbering
  • Mix features in patch releases

同梱ファイル

※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。