Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

changelogschangelogs 命令行

Agent Skill

changelogs 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

367

周安装

15

GitHub Stars

27

下载量

118
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:changelogs(changelogs 命令行)
来源仓库:https://github.com/tiendanube/nimbus-design-system
仓库路径:skills/changelogs
安装命令:
npx skills add https://github.com/tiendanube/nimbus-design-system --skill changelogs
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/tiendanube/nimbus-design-system --skill changelogs

简介

changelogs 命令行工具分析当前分支相对于主线的变更,更新对应包的 CHANGELOG.md 文件。

  • 适用于多包项目(monorepo)中各子模块的独立版本管理。
  • 自动识别受影响包与变更类型,生成符合规范的日志条目。
  • 需先确定 base branch 并列出差异,再执行更新操作。
  • changelogs 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

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:

# Get the base branch (usually master or main)
git log --oneline -1 origin/master

# List all commits in current branch not in master
git log origin/master..HEAD --oneline

# Show changed files with their packages
git diff origin/master --name-only

Step 2: Identify Affected Packages

Determine which packages were modified by checking changed file paths:

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

*CRITICAL* After ANY change to a specific component, it's critical to reflect the same change in packages/react/CHANGELOG.md. If this is ommited, the change will only apply to the specific package and not to the general @nimbus-ds/components bundle, generating an inconsistency.

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:

## YYYY-MM-DD `version`

#### <emoji> <category>

- <Summary of the change>. ([#PR](https://github.com/TiendaNube/nimbus-design-system/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.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.46%
按下载量换算44

Claude

31.02%
按下载量换算37

Cursor

19.18%
按下载量换算23

Gemini CLI

10.11%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills