Manages changelog entries for Prowler components following keepachangelog.com format. Trigger: When creating PRs, adding changelog entries, or working with any CHANGELOG.md file in ui/, api/, mcp_server/, or prowler/.
View on GitHubFebruary 2, 2026
Select agents to install to:
npx add-skill https://github.com/majiayu000/claude-skill-registry/blob/3d28154b57193341e6821f787824a944815da51f/skills/prowler-changelog/SKILL.md -a claude-code --skill prowler-changelogInstallation paths:
.claude/skills/prowler-changelog/## Changelog Locations | Component | File | Version Prefix | Current Version | |-----------|------|----------------|-----------------| | UI | `ui/CHANGELOG.md` | None | 1.x.x | | API | `api/CHANGELOG.md` | None | 1.x.x | | MCP Server | `mcp_server/CHANGELOG.md` | None | 0.x.x | | SDK | `prowler/CHANGELOG.md` | None | 5.x.x | ## Format Rules (keepachangelog.com) ### Section Order (ALWAYS this order) ```markdown ## [X.Y.Z] (Prowler vA.B.C) OR (Prowler UNRELEASED) ### Added ### Changed ### Deprecated ### Removed ### Fixed ### Security ``` ### Emoji Prefixes (REQUIRED for ALL components) | Section | Emoji | Usage | |---------|-------|-------| | Added | `### ๐ Added` | New features, checks, endpoints | | Changed | `### ๐ Changed` | Modifications to existing functionality | | Deprecated | `### โ ๏ธ Deprecated` | Features marked for removal | | Removed | `### โ Removed` | Deleted features | | Fixed | `### ๐ Fixed` | Bug fixes | | Security | `### ๐ Security` | Security patches, CVE fixes | ### Entry Format ```markdown ### Added - Existing entry one [(#XXXX)](https://github.com/prowler-cloud/prowler/pull/XXXX) - Existing entry two [(#YYYY)](https://github.com/prowler-cloud/prowler/pull/YYYY) - NEW ENTRY GOES HERE at the BOTTOM [(#ZZZZ)](https://github.com/prowler-cloud/prowler/pull/ZZZZ) ### Changed - Existing change [(#AAAA)](https://github.com/prowler-cloud/prowler/pull/AAAA) - NEW CHANGE ENTRY at BOTTOM [(#BBBB)](https://github.com/prowler-cloud/prowler/pull/BBBB) ``` **Rules:** - **ADD NEW ENTRIES AT THE BOTTOM of each section** (before next section header or `---`) - **Blank line after section header** before first entry - **Blank line between sections** - Be specific: what changed, not why (that's in the PR) - One entry per PR (can link multiple PRs for related changes) - No period at the end - Do NOT start with redundant verbs (section header already provides the action) ### Semantic Versioning Rules Prowler follows [semver.org](https://semver.org/):