changelogs — for Claude Code changelogs, nimbus-patterns, community, for Claude Code, ide skills, directory, → Update, CHANGELOG.md, 🛠 Breaking changes, 🎉 New features

v1.0.0

关于此技能

适用场景: Ideal for AI agents that need update changelog.md files to reflect changes made in the current git branch. 本地化技能摘要: # Changelogs Skill Update CHANGELOG.md files to reflect changes made in the current git branch. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

功能特性

Update CHANGELOG.md files to reflect changes made in the current git branch.
When asked to update or write changelogs
When preparing a PR for merge
When documenting recent changes before release
Step 1: Analyze Branch Changes

# 核心主题

TiendaNube TiendaNube
[4]
[1]
更新于: 4/22/2026

技能概览

先看适用场景、限制条件和安装路径,再决定是否继续深入。

适用场景: Ideal for AI agents that need update changelog.md files to reflect changes made in the current git branch. 本地化技能摘要: # Changelogs Skill Update CHANGELOG.md files to reflect changes made in the current git branch. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

核心价值

推荐说明: changelogs helps agents update changelog.md files to reflect changes made in the current git branch. Changelogs Skill Update CHANGELOG.md files to reflect changes made in the current git branch. This AI agent

适用 Agent 类型

适用场景: Ideal for AI agents that need update changelog.md files to reflect changes made in the current git branch.

赋予的主要能力 · changelogs

适用任务: Applying Update CHANGELOG.md files to reflect changes made in the current git branch
适用任务: Applying When asked to update or write changelogs
适用任务: Applying When preparing a PR for merge

! 使用限制与门槛

  • 限制说明: git diff origin/master --name-only
  • 限制说明: Avoid code details : No mention of specific functions, variables, or files
  • 限制说明: Updated Button to support icon-only variant.

关于来源内容

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

changelogs 是什么?

适用场景: Ideal for AI agents that need update changelog.md files to reflect changes made in the current git branch. 本地化技能摘要: # Changelogs Skill Update CHANGELOG.md files to reflect changes made in the current git branch. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

如何安装 changelogs?

运行命令:npx killer-skills add TiendaNube/nimbus-patterns/changelogs。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

changelogs 适用于哪些场景?

典型场景包括:适用任务: Applying Update CHANGELOG.md files to reflect changes made in the current git branch、适用任务: Applying When asked to update or write changelogs、适用任务: Applying When preparing a PR for merge。

changelogs 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

changelogs 有哪些限制?

限制说明: git diff origin/master --name-only;限制说明: Avoid code details : No mention of specific functions, variables, or files;限制说明: Updated Button to support icon-only variant.。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add TiendaNube/nimbus-patterns/changelogs。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    changelogs 已启用,可立即在当前项目中调用。

! 来源说明

此页面仍可作为安装与查阅参考。继续使用前,请结合上方适用场景、限制条件和上游仓库说明一起判断。

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

changelogs

# Changelogs Skill Update CHANGELOG.md files to reflect changes made in the current git branch. This AI agent skill supports Claude Code, Cursor, and Windsurf

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

Changelogs Skill

Update CHANGELOG.md files to reflect changes made in the current git branch.

When to Use

  • When asked to update or write changelogs
  • When preparing a PR for merge
  • When documenting recent changes before release

Instructions

Step 1: Analyze Branch Changes

Run these git commands to understand what changed:

bash
1# Get the base branch (usually master or main) 2git log --oneline -1 origin/master 3 4# List all commits in current branch not in master 5git log origin/master..HEAD --oneline 6 7# Show changed files with their packages 8git diff origin/master --name-only

Step 2: Identify Affected Packages

Determine which packages were modified by checking changed file paths:

  • packages/react/**/<Component>/* → Update packages/react/src/atomic/<Component>/CHANGELOG.md and react directory CHANGELOG.md
  • packages/core/webpack/* → Update packages/core/webpack/CHANGELOG.md
  • Any root monorepo configuration change → Also update the root CHANGELOG.md

Step 3: Classify the Change

Determine the change type based on commit messages and diff:

TypeCategoryVersion Bump
Breaking API changes🛠 Breaking changesMajor (x.0.0)
New props, components, features🎉 New featuresMinor (0.x.0)
Bug fixes, corrections🐛 Bug fixesPatch (0.0.x)
Dependency updates📚 3rd party library updatesPatch
Refactors, docs, tooling💡 OthersPatch

Step 4: Write the Entry

Format:

markdown
1## YYYY-MM-DD `version` 2 3#### <emoji> <category> 4 5- <Summary of the change>. ([#PR](https://github.com/TiendaNube/nimbus-patterns/pull/PR) by [@contributor](https://github.com/contributor))

Writing Guidelines:

  1. Be concise: One sentence summarizing the user-facing impact
  2. Focus on "what": Describe the outcome, not implementation details
  3. Use past tense: "Added", "Fixed", "Updated", not "Add", "Fix", "Update"
  4. Avoid code details: No mention of specific functions, variables, or files

Good examples:

  • Added disabled state styling to Input component.
  • Fixed focus ring not appearing on keyboard navigation.
  • Updated Button to support icon-only variant.

Bad examples:

  • Update Input.tsx to add handleFocus callback and modify CSS classes.
  • Fixes bug in line 45 of nimbus-input.css.ts where outline was missing.

Step 5: Ask for Missing Information

If any of the following is unknown, ask the user:

  1. PR number: Required for the entry link
  2. GitHub username: Required for contributor attribution
  3. Version number: If not clear from existing changelog

Step 6: Update the Files

  1. Read the existing CHANGELOG.md for the affected package(s)
  2. Determine the next version based on current version + change type
  3. Insert the new entry at the TOP, below the # Changelog header
  4. Use today's date in YYYY-MM-DD format
  5. Update package-specific CHANGELOG.md file, and only update the root CHANGELOG.md file if the change is related to the root monorepo.

Reference

Full formatting rules are defined in .cursor/rules/changelogs.mdc.

相关技能

寻找 changelogs 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

本地化技能摘要: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
AI

widget-generator

Logo of f
f

本地化技能摘要: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf

149.6k
0
AI

flags

Logo of vercel
vercel

本地化技能摘要: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

本地化技能摘要: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
开发者工具