Use when creating "changelog", "release notes", "version updates", generating "CHANGELOG.md", or asking about "git history to changelog", "commit summary", "what changed since last release"
Generates user-friendly changelogs from git commits by categorizing technical changes into feature, improvement, and bug fix sections.
/plugin marketplace add eyadsibai/ltk/plugin install ltk@ltk-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Transform technical git commits into polished, user-friendly changelogs.
Analyze commits from a specific time period or between versions:
# Since last tag
git log $(git describe --tags --abbrev=0)..HEAD --oneline
# Between dates
git log --since="2024-01-01" --until="2024-01-31" --oneline
# Between versions
git log v1.0.0..v2.0.0 --oneline
Group commits into logical categories:
| Category | Emoji | Includes |
|---|---|---|
| New Features | ✨ | New functionality, capabilities |
| Improvements | 🔧 | Enhancements, optimizations |
| Bug Fixes | 🐛 | Resolved issues, corrections |
| Breaking Changes | ⚠️ | API changes, migrations needed |
| Security | 🔒 | Security patches, vulnerability fixes |
| Documentation | 📚 | Docs updates (usually excluded) |
| Internal | 🔨 | Refactoring, tests (usually excluded) |
Bad (developer-speak):
fix: resolve null pointer in UserService#getById
refactor: extract common logic to BaseRepository
Good (user-friendly):
- Fixed an issue where user profiles wouldn't load
- Improved application performance and reliability
# Updates - Week of March 10, 2024
## ✨ New Features
- **Team Workspaces**: Create separate workspaces for different
projects. Invite team members and keep everything organized.
## 🔧 Improvements
- **Faster Sync**: Files now sync 2x faster across devices
- **Better Search**: Search now includes file contents, not just titles
## 🐛 Fixes
- Fixed issue where large images wouldn't upload
- Resolved timezone confusion in scheduled posts
Include:
Exclude:
Create a changelog from commits since last release
Generate changelog for all commits from the past week
Create release notes for version 2.5.0 based on commits since v2.4.0
This skill should be used when the user asks about libraries, frameworks, API references, or needs code examples. Activates for setup questions, code generation involving libraries, or mentions of specific frameworks like React, Vue, Next.js, Prisma, Supabase, etc.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.