changelog-generator
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"
What this skill does
<!-- Adapted from: awesome-claude-skills/changelog-generator --> # Changelog Generator Transform technical git commits into polished, user-friendly changelogs. ## When to Use - Preparing release notes for a new version - Creating weekly or monthly product update summaries - Documenting changes for customers - Writing changelog entries for app store submissions - Generating update notifications - Maintaining a public changelog/product updates page ## Process ### 1. Scan Git History Analyze commits from a specific time period or between versions: ```bash # 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 ``` ### 2. Categorize Changes 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) | ### 3. Translate Technical โ User-Friendly **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 ``` ### 4. Format Output ```markdown # 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 ``` ## Filter Rules **Include:** - Features (feat:, feature:) - Fixes (fix:, bugfix:) - Performance (perf:) - Security (security:) **Exclude:** - Refactoring (refactor:) - Tests (test:) - CI/CD (ci:, build:) - Chores (chore:) - WIP commits ## Usage Examples ``` 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 ``` ## Tips - Run from your git repository root - Specify date ranges for focused changelogs - Review and adjust before publishing - Keep customer perspective - "what does this mean for them?" - Save output directly to CHANGELOG.md
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.