Updates CHANGELOG.md with commits since the last entry
Scanned 6/1/2026
Install via CLI
openskills install berkcangumusisik/claude-code-practices---
name: changelog
description: Updates CHANGELOG.md with commits since the last entry
user-invocable: true
allowed-tools: Bash(git *) Read Edit
effort: low
---
## Update CHANGELOG.md
1. Find the last version in CHANGELOG.md:
```bash
head -50 CHANGELOG.md 2>/dev/null || echo "No changelog yet"
git tag --sort=-creatordate | head -1
```
2. Get commits since last tag:
```bash
git log $(git describe --tags --abbrev=0 2>/dev/null || git rev-list --max-parents=0 HEAD)..HEAD --oneline --no-merges
```
3. Prepend a new section to CHANGELOG.md following [Keep a Changelog](https://keepachangelog.com) format:
```markdown
## [Unreleased] - YYYY-MM-DD
### Added
### Changed
### Fixed
### Removed
### Security
```
Only include non-empty sections. Group commits intelligently.
Rewrite raw commit messages into human-readable changelog entries.
No comments yet. Be the first to comment!
Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...