Changelog Automation
Software development skill, available on Zeplik
Changelog Automation is a ready-to-run software development skill on Zeplik. Not for user-facing product docs (use technical-documentation). Ask in plain language and Zeplik applies the skill's method for you inside the conversation, on whichever AI model you prefer.
The Changelog Automation skill loads automatically when your request matches it, or you can invoke it directly by typing /changelog-automation in any chat. It works with attachments, connectors, and any model that supports the task, so you get the same expert method every time without setting anything up.
What the Changelog Automation skill can do
- Convert git logs or PR lists into Keep a Changelog formatted entries
- Classify commits and determine semantic version bumps automatically
- Generate structured release notes with highlights and breaking changes
- Produce automation configs for semantic-release, release-please, or commitlint
Try these prompts on Zeplik
Pick a prompt to open it in the Zeplik app. If you are not signed in yet, your prompt is waiting for you the moment you do.
How the Changelog Automation skill works
/changelog-automation
Automate changelog generation, release notes, and version management following industry standards. The user pastes a git log, list of merged PRs, or their release config; deliver formatted changelog entries, release notes, and automation configs as chat artifacts. For end-user product documentation, use technical-documentation.
When to Use
- Setting up automated changelog generation
- Implementing Conventional Commits
- Creating release note workflows
- Standardizing commit message formats
- Generating GitHub/GitLab release notes
- Managing semantic versioning
Keep a Changelog Format
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [2.1.0] - 2024-01-15
### Added
- Dark mode support with automatic preference sync
### Changed
- Checkout flow is 40% faster
### Fixed
- Race condition in payment processing
### Security
- Updated lodash to patch prototype pollution vulnerability
Categories: Added, Changed, Deprecated, Removed, Fixed, Security.
Conventional Commits
# Feature with scope
feat(auth): add OAuth2 support for Google login
# Bug fix with issue reference
fix(checkout): resolve race condition in payment processing
Closes #123
# Breaking change
feat(api)!: change user endpoint response format
BREAKING CHANGE: The user endpoint now returns `userId` instead of `id`.
Migration guide: Update all API consumers to use the new field name.
# Multiple paragraphs
fix(database): handle connection timeouts gracefully
Previously, connection timeouts would cause the entire request to fail
without retry. This change implements exponential backoff with up to
3 retries before failing.
Fixes #456
Reviewed-by: @alice
Type-to-semver mapping: feat = minor, fix = patch, ! or BREAKING CHANGE: footer = major. Other types (docs, chore, refactor, test, ci) do not bump by default.
Release Notes Structure
When generating release notes from a pasted log or PR list, produce:
## Summary
One or two sentences on the headline changes of this release.
## Highlights
### Dark Mode
Users can now switch to dark mode from settings. The preference is
automatically saved and synced across devices.
### Performance
- Checkout flow is 40% faster
- Reduced bundle size by 15%
## Breaking Changes
None in this release. (Or: list each with a migration step.)
## Upgrade Guide
No special steps required. Standard deployment process applies.
## Known Issues
- Dark mode may flicker on initial load (fix scheduled for v2.1.1)
## Dependencies Updated
| Package | From | To | Reason |
| ------- | ------- | ------- | ------------------------ |
| react | 18.2.0 | 18.3.0 | Performance improvements |
| lodash | 4.17.20 | 4.17.21 | Security patch |
Workflow
- Ask the user for the raw material:
git log --oneline v1.2.0..HEAD, merged PR titles, or their existing CHANGELOG.md. - Classify each change (feature, fix, breaking, security, internal); drop noise commits (merges, formatting).
- Determine the semver bump from the classified changes.
- Deliver the changelog entry and/or release notes as a markdown artifact, plus automation config (semantic-release, release-please, commitlint) if they want it generated on every release.
Best Practices
Do's
- Follow Conventional Commits -- enables automation
- Reference issues -- link commits to tickets
- Use scopes consistently -- define team conventions
- Automate releases -- reduce manual errors
Don'ts
- Don't mix changes -- one logical change per commit
- Don't skip validation -- use commitlint in CI
- Don't hand-edit generated changelogs -- fix the commits or the config
- Don't forget breaking changes -- mark with
!or footer
Detailed Patterns and Worked Examples
Tooling configs (semantic-release, release-please, git-cliff, commitlint/husky) and CI wiring live in references/details.md. Read that file when you need the concrete templates.
Usage
/changelog-automation $ARGUMENTS
How to use the Changelog Automation skill
Sign in to Zeplik
Create a free Zeplik account or sign in. New accounts start with free credits, so you can try the Changelog Automation skill right away.
Describe your software development task
Ask in plain language, or type /changelog-automation to invoke the skill directly. Zeplik recognizes the Changelog Automation skill and applies its method.
Review and refine the result
Zeplik returns a clear, structured answer. Ask follow-ups in the same chat to refine it or take the next step.
Source and credit
- Author
- wshobson
- License
- MIT
Adapted from the open-source wshobson/agents project and tuned to run natively on Zeplik. View source on GitHub.
Frequently asked questions
- What is the Changelog Automation skill?
- Changelog Automation is a ready-to-run software development skill on Zeplik. Not for user-facing product docs (use technical-documentation). Ask in plain language and Zeplik applies the skill's method for you inside the conversation, on whichever AI model you prefer.
- How do I use Changelog Automation on Zeplik?
- Sign in to Zeplik and ask in plain language, or type /changelog-automation in any chat to invoke it directly. The skill applies its method and returns a result you can refine in the same conversation.
- Which AI model does the Changelog Automation skill use?
- Any model you choose. Zeplik works across every model in one chat, so the Changelog Automation skill runs on your preferred model for the task.
- Where does the Changelog Automation skill come from?
- The Changelog Automation skill is adapted from the open-source wshobson/agents project (MIT) and tuned to run natively on Zeplik. The original source is linked on this page.
- How much does the Changelog Automation skill cost?
- Using the skill is free to start. You only spend Zeplik credits when the assistant runs, and new accounts begin with free credits.
Related software development skills
- .NET BackendBuild ASP.NET Core 8+ backends with EF Core: auth, background jobs, production API patterns
- Advanced Git WorkflowsUse for advanced Git surgery: interactive rebase, cherry-pick, bisect, reflog recovery, and history cleanup before merging. Not for parallel worktree workflows (use using-git-worktrees).
- Adversarial Code ReviewHunt for bugs in code the user shares by assuming defects exist and attacking the code through several distinct lenses, then report severity-ranked findings with evidence. Use for "review this", "what could go wrong", "bug hunt", or pre-merge scrutiny of a change. Read-only, it reports problems and does not rewrite the code. Not for style cleanup (use simplify-code) or for writing new code.
- AI Agent FrameworksUse when building multi-agent systems or agent orchestration -- LangChain/LangGraph, agent team design, task coordination, pipelines. Not for authoring a Zeplik skill (use skill-creator).
- Algolia SearchAdd Algolia search: indexing strategies, React InstantSearch, relevance tuning, search-as-you-type
- Android CI/CDAutomate Android CI/CD to Google Play: keystore, GitHub Secrets, multi-stage release workflow for RN, Flutter, native
More on Zeplik
Try Changelog Automation on Zeplik
Every model, one chat. Bring the Changelog Automation skill into your next conversation and let the assistant do the work.