スキル一覧に戻る
kubb-labs

changelog

by kubb-labs

changelogは、ソフトウェア開発を効率化するスキルです。開発ワークフロー全体をサポートし、チームの生産性向上とコード品質の改善を実現します。

1,532🍴 129📅 2026年1月23日
GitHubで見るManusで実行

ユースケース

🔗

MCPサーバー連携

Model Context Protocolを活用したAIツール連携。changelogを活用。

コード生成の効率化

ボイラープレートコードを自動生成し、開発時間を短縮。

🔍

コードレビュー支援

PRのコード変更を分析し、改善点を提案。

🔧

リファクタリング提案

コードの品質向上のためのリファクタリング案を提示。

SKILL.md


name: changelog description: Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.

Changelog and Versioning Skill

This skill transforms technical git commits into polished, user-facing changelogs that your customers and users will understand and appreciate.

When to Use

  • Preparing release notes for a new version
  • Documenting changes for the website
  • Creating or editing documentation pages
  • Ensuring consistent writing style across content

What It Does

  1. Scans Git History: Analyzes commits from a specific time period or between versions.
  2. Categorizes Changes: Groups commits into logical categories (features, improvements, bug fixes, breaking changes).
  3. Translates Technical → User-Friendly: Converts developer commits into customer language.
  4. Formats Professionally: Creates clean, structured changelog entries following Kubb conventions.
  5. Filters Noise: Excludes internal commits (refactor, test, etc.).
  6. Follows Best Practices: Applies changelog guidelines and your brand voice.

Kubb uses Changesets for version management and maintains a comprehensive changelog in docs/changelog.md.

Changeset Workflow

Creating a Changeset

For every PR with code changes, create a changeset:

pnpm changeset

Interactive prompts:

  1. Select which packages are affected
  2. Choose version bump type (major / minor / patch)
  3. Write a concise summary of the changes

Version Bump Types

TypeDescription
Major (breaking)Changes that break existing functionality
Minor (feature)New features that don't break existing functionality
Patch (fix)Bug fixes and minor improvements

Changelog Format

The changelog follows a specific structure in docs/changelog.md.

  • Use ## for version headings (not #).
  • Use ### for change type sections with emoji prefixes.
  • Use #### for individual plugin names with links.

Change type:

CategoryDescription
✨ FeaturesNew functionality and enhancements
🐛 Bug FixesBug fixes and corrections
🚀 Breaking ChangesChanges that may require code updates
📦 DependenciesPackage updates and dependency changes

Example:

2.5.0

✨ Features

plugin-ts

Added support for generating union types with the new unionType option.

::: code-group

// Generated separate types
export type PetDog = { type: 'dog'; bark: string }
export type PetCat = { type: 'cat'; meow: string }
export type Pet = PetDog | PetCat

:::

Changelog Style

Documenting Bug Fixes

When fixing bugs that affect user-facing behavior:

  1. Update relevant documentation
  • Fix incorrect examples
  • Clarify ambiguous descriptions
  • Update troubleshooting guide if applicable
  1. Add to changelog (via pnpm changeset)
  • Explain what was broken
  • Show correct usage
  • Link to relevant docs
  1. Consider migration notes
  • If fix changes expected behavior
  • Add to migration guide with before/after examples

Example:

Fixed incorrect enum type output

Issue: enumType: 'asConst' generated invalid TypeScript

Fixed: Now correctly generates:

const petType = {
  Dog: 'dog',
  Cat: 'cat',
} as const
SkillUse For
../documentation/SKILL.mdDocumentation style

Checklist

  • All code changes have corresponding documentation updates
  • Frontmatter is complete and correct
  • Changeset updated via pnpm changeset (for code changes)
  • Changelog added or updated in docs/changelog.md

Resources

スコア

総合スコア

85/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 1000以上

+15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

+5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

レビュー

💬

レビュー機能は近日公開予定です