بنقرة واحدة
changelog
Update the changelog for a new release
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Update the changelog for a new release
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Query and modify databases (PostgreSQL, MySQL/MariaDB, SQLite). Use when the user asks to inspect, query, or write to a database, or when you need to understand a database schema.
Use when asked to find a project, work on a project, start a feature, fix a bug, or make changes to a repo.
Retrieve up-to-date documentation for libraries and frameworks via the Context7 API. Use when looking up docs for any library, finding code examples, verifying API usage, or getting current info that may have changed since training.
Deep codebase analysis with extended thinking — use for complex tasks that may lead to implementation
Interact with local Chrome browser session (only on explicit user approval after being asked to inspect, debug, or interact with a page open in Chrome)
Create git commits using Conventional Commits format
| name | changelog |
| description | Update the changelog for a new release |
| argument-hint | <version> |
Update the repository changelog with changes between the last release and the current version. The caller provides the version number being released. If CHANGELOG.md does not exist, use CHANGELOG instead.
If no baseline version is provided, use the most recent git tag. You can find it with git describe --tags --abbrev=0.
Use the following commands to gather commit information:
# Get the baseline version (if not provided)
git describe --tags --abbrev=0
# Get all commits since the baseline version
git log <baseline-version>..HEAD
Read the existing changelog file (CHANGELOG.md, or CHANGELOG if missing) and add a new versioned section for the release. Use the version provided by the caller and today's date. Add the section at the top, below any existing header, in the same style as the existing changelog.
If no changelog file exists, create CHANGELOG.md using this template:
# 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/).
## [<version>] - YYYY-MM-DD
### Added
- First entry here
[<version>]: https://github.com/OWNER/REPO/releases/tag/v<version>
For existing changelogs, add the new version section below the header:
## [<version>] - YYYY-MM-DD
Categorize entries under Keep a Changelog headings. Only include categories that have entries:
Add a comparison link at the bottom of the file for the new version:
[<version>]: https://github.com/OWNER/REPO/compare/v<previous>...v<version>
If there is an existing "Unreleased" section, move its content into the new versioned section and leave "Unreleased" empty or remove it.
#NUMBER) when available, but not raw commit hashes* or -) for individual changes`foo.cleanup`)## [1.2.0] - 2026-01-04
### Added
- Right-click context menu with quit option
- Animated processing indicators to floating record bar
### Changed
- Improved menu bar with icons and cleaner structure
### Fixed
- Remove ellipsis from menu bar item titles
## [1.1.0] - 2026-01-01
### Added
- Compact floating record bar with waveform visualization
- Landing page with GitHub Pages deployment
### Changed
- Use native macOS Settings scene with streamlined UI
[1.2.0]: https://github.com/eddmann/project/compare/v1.1.0...v1.2.0
[1.1.0]: https://github.com/eddmann/project/compare/v1.0.0...v1.1.0
Good:
Fixed an issue with the TypeScript SDK which caused an incorrect config for CJS.Added support for claim timeout extension on checkpoint writes.Improved error reporting when task claim expires.Bad:
Fixed bug (too vague)Updated dependencies (insignificant unless it fixes a security issue)Refactored internal code structure (internal change, not user-facing)Fixed typo in comment (insignificant)main