ワンクリックで
changelog
Generate Changelog from Commits
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Generate Changelog from Commits
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Intelligent CI failure diagnosis and guided remediation for GitHub Actions, GitLab CI, and local builds
Pre-execution mapping of codebases, document collections, or problem spaces. Runs BEFORE any Gorgon workflow to give all agents shared situational awareness
Investigative methodology for analyzing document collections — provenance analysis, anomaly detection, redaction detection, and cross-document validation
Resolves entity ambiguity across document corpora — fuzzy name matching, alias detection, identity consolidation, and confidence-scored entity merging
Packages project state into structured context documents for agent sessions, human pickup, or Quorum IntentNodes
Teaches agents how to publish well-structured intents for Convergent's intent graph — schema, quality criteria, and authoring patterns
| name | changelog |
| description | Generate Changelog from Commits |
| lifecycle | experimental |
Generate or update CHANGELOG.md from conventional commits.
/changelog # Generate from last tag to HEAD
/changelog v1.0.0..v1.1.0 # Specific range
/changelog --init # Create new CHANGELOG.md
/changelog --unreleased # Add unreleased section
| Prefix | Category | Description |
|---|---|---|
feat: | Added | New features |
fix: | Fixed | Bug fixes |
docs: | Documentation | Doc changes only |
refactor: | Changed | Code refactoring |
perf: | Changed | Performance improvements |
test: | Other | Test additions/changes |
chore: | Other | Maintenance tasks |
breaking: | Breaking | Breaking changes |
security: | Security | Security fixes |
# 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]
## [1.2.0] - 2024-01-15
### Added
- New feature X for better Y (#123)
- Support for Z configuration
### Fixed
- Bug where A caused B (#456)
- Crash on startup with invalid config
### Changed
- Improved performance of data loading
- Refactored authentication module
### Security
- Updated dependency with CVE fix
## [1.1.0] - 2024-01-01
...
# Get commits since last tag
git log $(git describe --tags --abbrev=0)..HEAD --oneline
# Get commits between tags
git log v1.0.0..v1.1.0 --pretty=format:"%s"
# Get latest tag
git describe --tags --abbrev=0
# Get all tags sorted by version
git tag --sort=-v:refname
When /changelog is invoked: