changelog-generator
# Changelog Generator Skill
What this skill does
# Changelog Generator Skill
**Quick Reference** - Parse conventional commits and generate categorized changelog
## Mission
Generate changelog from conventional commits with categorization (Features, Bug Fixes, Breaking Changes, Performance, Documentation) and formatted output for release notes.
## Core Capabilities
- **Conventional Commit Parsing**: Extract type, scope, description, breaking changes
- **Change Categorization**: Group by type (feat, fix, perf, docs, refactor, test, chore)
- **Breaking Change Detection**: Identify BREAKING CHANGE footer and ! syntax
- **Semantic Version Integration**: Suggest version bump based on change types
- **Multi-Format Output**: Markdown, JSON, plain text formats
## Quick Start
```javascript
const { ChangelogGenerator } = require('./scripts/generate-changelog.js');
const generator = new ChangelogGenerator({
fromTag: 'v2.0.0',
toTag: 'HEAD',
format: 'markdown'
});
const changelog = await generator.generate();
console.log(changelog);
```
## Conventional Commit Format
```
<type>(<scope>): <description>
[optional body]
[optional footer(s)]
```
**Supported Types**:
- `feat`: New feature → **Features** section
- `fix`: Bug fix → **Bug Fixes** section
- `perf`: Performance improvement → **Performance** section
- `docs`: Documentation → **Documentation** section
- `style`: Code style (no logic change)
- `refactor`: Code refactoring
- `test`: Test additions/updates
- `chore`: Build/tooling changes
**Breaking Changes**:
- `BREAKING CHANGE:` footer → **Breaking Changes** section
- `!` after type/scope → **Breaking Changes** section
## Category Priority
1. **Breaking Changes** (highest impact)
2. **Features** (new functionality)
3. **Bug Fixes** (fixes)
4. **Performance** (optimizations)
5. **Documentation** (docs updates)
## Example Output
```markdown
## [2.1.0] - 2025-11-05
### Breaking Changes
- **auth**: Remove deprecated OAuth 1.0 support (c4f3b2a)
### Features
- **api**: Add rate limiting with Redis backend (a1b2c3d)
- **ui**: Implement dark mode toggle (e5f6g7h)
### Bug Fixes
- **database**: Fix connection pool exhaustion (i8j9k0l)
- **auth**: Resolve JWT token expiration edge case (m1n2o3p)
### Performance
- **api**: Optimize query performance with database indexes (q4r5s6t)
```
## Pass/Fail Criteria
**Pass**: Changelog generated with all changes categorized
- ✅ All conventional commits parsed correctly
- ✅ Changes grouped by category (breaking, features, fixes, etc.)
- ✅ Commit hashes included for traceability
- ✅ Execution time <60 seconds
**Fail**: Parsing or generation errors
- ❌ Non-conventional commits cannot be parsed
- ❌ Category detection fails
- ❌ Output format invalid
- ❌ Execution time exceeds 60 seconds
## Configuration
```yaml
# skills/changelog-generator/templates/changelog-config.yaml
fromTag: v2.0.0
toTag: HEAD
format: markdown # or 'json', 'plain'
categories:
- breaking
- features
- fixes
- performance
- documentation
excludeTypes:
- style
- test
- chore
includeCommitHash: true
```
## Performance Target
**Target**: <60 seconds for 1000 commits
- Git log parsing: <20s
- Commit analysis: <20s
- Markdown generation: <20s
## Need More Detail?
**Load**: `skills/changelog-generator/REFERENCE.md` (~15KB)
- Advanced parsing patterns
- Custom category configuration
- Multi-repository support
- Integration examples
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.