From changelog-manager
This skill should be used when the user asks to "configure changelog", "set changelog languages", "changelog settings", "setup changelog manager", "add a language to release notes", "change release notes language", "update changelog config", or "set platforms for release notes".
How this skill is triggered — by the user, by Claude, or both
Slash command
/changelog-manager:changelog-configThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create or update the changelog manager settings file at `.claude/changelog-manager.local.md`. This file controls which languages are used for release notes and which platforms are targeted.
Create or update the changelog manager settings file at .claude/changelog-manager.local.md. This file controls which languages are used for release notes and which platforms are targeted.
<project-root>/.claude/changelog-manager.local.md
This file is gitignored by the plugin's .gitignore (.claude/*.local.md pattern). Do not commit it.
---
languages:
- code: en
name: English
- code: id
name: Indonesian
platforms:
- playstore
- appstore
- web
---
| Field | Required | Description |
|---|---|---|
languages | Yes | Ordered list of language blocks |
languages[].code | Yes | ISO 639-1 code (e.g. en, id, fr, ja, ko) |
languages[].name | Yes | Human-readable name shown in output headings |
platforms | Yes | List of target platforms |
| Value | Output File | Char Limit |
|---|---|---|
playstore | RELEASE_NOTES_PLAYSTORE | 500 / lang |
appstore | RELEASE_NOTES_APPSTORE | 4,000 / lang |
web | RELEASE_NOTES | No limit |
Check if .claude/changelog-manager.local.md exists. If it does, read and display current settings to the user before making changes.
If the user's request already specifies languages and platforms, use them directly. Otherwise ask:
Write the file with YAML frontmatter only (no markdown body required):
---
languages:
- code: en
name: English
- code: id
name: Indonesian
platforms:
- playstore
- appstore
---
Confirm:
en) is included, it is listed first — the script validates English items against CHANGELOG.md and skips validation for all other languagesShow the final settings and remind the user:
generate-changelog before generate-release-notes to ensure CHANGELOG.md is currentUse the following as a reference when the user specifies a language by name rather than code:
| Code | Language |
|---|---|
en | English |
id | Indonesian |
fr | French |
de | German |
ja | Japanese |
ko | Korean |
zh | Chinese (Simplified) |
es | Spanish |
pt | Portuguese |
ar | Arabic |
hi | Hindi |
tr | Turkish |
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
npx claudepluginhub sembraniteam/claude-plugins --plugin changelog-manager