Generate a structured changelog from git history — use when asked to create a changelog, release notes, or summarize what changed between versions/tags/branches.
From devkitnpx claudepluginhub 5uck1ess/devkitThis skill uses the workspace's default tool permissions.
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.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Generate a structured changelog from git commits between two refs.
# Find the range
FROM=${from:-$(git describe --tags --abbrev=0 2>/dev/null || git rev-list --max-parents=0 HEAD)}
TO=${to:-HEAD}
git log ${FROM}..${TO} --oneline --no-merges
Analyze each commit and categorize:
feat:, add:, new files)fix:, bug:, patch:)perf:, benchmark improvements)refactor:, chore:)docs:, README, comments)test:)## Changelog: {from} → {to}
### Features
- Added JWT authentication middleware (#42)
- New `/api/health` endpoint
### Fixes
- Fixed race condition in cache invalidation (#38)
- Corrected timezone handling in date parser
### Performance
- Optimized database queries — 2x faster list endpoints
### Breaking Changes
- Removed deprecated `/api/v1/users` endpoint — use `/api/v2/users`
### Other
- Updated dependencies
- Added CI pipeline for ARM builds
/devkit:changelog
/devkit:changelog --from v1.2.0 --to v1.3.0
/devkit:changelog --from main --to feature/auth