Install
1
Install the plugin$
npx claudepluginhub microsoft/skills --plugin deep-wikiWant just this command?
Then install: npx claudepluginhub u/[userId]/[slug]
Description
Generate a structured changelog from recent git commits, categorized by change type
Command Content
Deep Wiki: Changelog Generation
Analyze the git commit history of this repository and generate a structured changelog.
Source Repository Resolution (MUST DO FIRST)
Before generating any changelog, resolve the source repository context:
- Check for git remote: Run
git remote get-url origin - Ask the user: "Is this a local-only repository, or do you have a source repository URL?"
- Remote URL โ store as
REPO_URL, link commit hashes:[abc1234](REPO_URL/commit/abc1234) - Local โ use plain commit hashes
- Remote URL โ store as
- Do NOT proceed until resolved
Process
- Examine recent git commits (messages, dates, authors)
- Group by date: daily for last 7 days, aggregated weekly for older
- Classify each commit into categories
- Generate concise, user-facing descriptions using project terminology from README
Categories
| Emoji | Category | Signal Keywords |
|---|---|---|
| ๐ | New Features | feat, add, new, implement, introduce |
| ๐ | Bug Fixes | fix, bug, patch, resolve, hotfix |
| ๐ | Refactoring | refactor, restructure, reorganize, clean |
| ๐ | Documentation | docs, readme, comment, jsdoc, docstring |
| ๐ง | Configuration | config, env, setting, ci, build |
| ๐ฆ | Dependencies | deps, upgrade, bump, package, lock |
| โ ๏ธ | Breaking Changes | breaking, BREAKING, migrate, deprecate |
Output
For each time period, output:
## [Date or Date Range]
**[Summary Title]**
[1-2 sentence overview]
### ๐ New Features
- [Change description]
### ๐ Bug Fixes
- [Change description]
### โ ๏ธ Breaking Changes
- [Change description with migration notes]
Focus on user-facing changes. Merge related commits. Highlight breaking changes prominently.
$ARGUMENTS
Stats
Stars1786
Forks192
Last CommitFeb 13, 2026