Manages changelog entries following Keep a Changelog format with CalVer versioning. Analyzes changes and generates appropriate changelog descriptions.
npx claudepluginhub datamaker-kr/synapse-claude-marketplace --plugin platform-dev-team-commonThis skill is limited to using the following tools:
This skill manages changelog entries in CHANGELOG.md following the [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format with [Calendar Versioning](https://calver.org/).
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
This skill manages changelog entries in CHANGELOG.md following the Keep a Changelog format with Calendar Versioning.
This plugin uses Calendar Versioning with format YYYY.Minor.Patch.
Examples:
2026.1.0 - First minor release in 20262026.1.1 - First patch release2026.2.0 - Second minor release in 2026Based on Keep a Changelog:
- [TICKET-ID](JIRA-URL) Description in specified language
Korean Example:
- [SYN-1234](https://jira.example.com/browse/SYN-1234) 사용자 인증 기능 추가
English Example:
- [SYN-1234](https://jira.example.com/browse/SYN-1234) Add user authentication feature
From branch name:
git branch --show-current
# Example: feature/SYN-1234-user-authentication
# Extract: SYN-1234
Pattern: (PROJ-\d+) where PROJ is project prefix
Review commits:
git log --oneline --since="$(git describe --tags --abbrev=0)"
Review changed files:
git diff --name-status $(git describe --tags --abbrev=0)..HEAD
Based on:
Guidelines:
Location: Under ## [Unreleased] in appropriate category
Format:
## [Unreleased] - yyyy-mm-dd
### Added
- [TICKET-ID](JIRA-URL) New feature description
### Changed
- [TICKET-ID](JIRA-URL) Updated feature description
### Fixed
- [TICKET-ID](JIRA-URL) Bug fix description
type: Changelog category (added/changed/fixed/deprecated/removed/security)lang: Description language (korean/english)ticket: Ticket ID (optional, auto-extracted from branch if not provided)This skill is invoked by:
/add-changelog command - Manual changelog entry additionAdd new feature (Korean):
User: /add-changelog --type added
Skill: Analyzes changes → Generates description → Adds to CHANGELOG.md
Result: - [SYN-1234](URL) 사용자 프로필 이미지 업로드 기능 추가
Fix bug (English):
User: /add-changelog --type fixed --lang eng
Skill: Analyzes changes → Generates description → Adds to CHANGELOG.md
Result: - [SYN-1235](URL) Fix profile image upload validation error
CHANGELOG.md format:
# Changelog
## [Unreleased] - yyyy-mm-dd
### Added
### Changed
### Fixed
## [2026.1.0] - 2026-01-15
### Added
- Feature 1
- Feature 2
### Changed
- Change 1