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

v1.0.0

Über diesen Skill

Geeigneter Einsatz: Ideal for AI agents that need update changelog.md files to reflect changes made in the current git branch. Lokalisierte Zusammenfassung: # 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.

Funktionen

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

# Kernthemen

TiendaNube TiendaNube
[4]
[1]
Aktualisiert: 4/22/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Geeigneter Einsatz: Ideal for AI agents that need update changelog.md files to reflect changes made in the current git branch. Lokalisierte Zusammenfassung: # 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.

Warum diese Fähigkeit verwenden

Empfehlung: 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

Am besten geeignet für

Geeigneter Einsatz: Ideal for AI agents that need update changelog.md files to reflect changes made in the current git branch.

Handlungsfähige Anwendungsfälle for changelogs

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

! Sicherheit & Einschränkungen

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

About The Source

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

Labs-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 und Installationsschritte

These questions and steps mirror the structured data on this page for better search understanding.

? Häufige Fragen

Was ist changelogs?

Geeigneter Einsatz: Ideal for AI agents that need update changelog.md files to reflect changes made in the current git branch. Lokalisierte Zusammenfassung: # 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.

Wie installiere ich changelogs?

Führen Sie den Befehl aus: npx killer-skills add TiendaNube/nimbus-patterns. Er funktioniert mit Cursor, Windsurf, VS Code, Claude Code und mehr als 19 weiteren IDEs.

Wofür kann ich changelogs verwenden?

Wichtige Einsatzbereiche sind: Anwendungsfall: Update CHANGELOG.md files to reflect changes made in the current git branch, Anwendungsfall: When asked to update or write changelogs, Anwendungsfall: When preparing a PR for merge.

Welche IDEs sind mit changelogs kompatibel?

Dieser Skill ist mit 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 kompatibel. Nutzen Sie die Killer-Skills CLI für eine einheitliche Installation.

Gibt es Einschränkungen bei changelogs?

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

So installieren Sie den Skill

  1. 1. Terminal öffnen

    Öffnen Sie Ihr Terminal oder die Kommandozeile im Projektverzeichnis.

  2. 2. Installationsbefehl ausführen

    Führen Sie aus: npx killer-skills add TiendaNube/nimbus-patterns. Die CLI erkennt Ihre IDE oder Ihren Agenten automatisch und richtet den Skill ein.

  3. 3. Skill verwenden

    Der Skill ist jetzt aktiv. Ihr KI-Agent kann changelogs sofort im aktuellen Projekt verwenden.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below is adapted 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 is adapted 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.

Verwandte Fähigkeiten

Looking for an alternative to changelogs or another community skill for your workflow? Explore these related open-source skills.

Alle anzeigen

openclaw-release-maintainer

Logo of openclaw
openclaw

Lokalisierte Zusammenfassung: 🦞 # 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
Künstliche Intelligenz

widget-generator

Logo of f
f

Lokalisierte Zusammenfassung: 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

149.6k
0
Künstliche Intelligenz

flags

Logo of vercel
vercel

Lokalisierte Zusammenfassung: 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
Browser

pr-review

Logo of pytorch
pytorch

Lokalisierte Zusammenfassung: 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
Entwickler