update-changelog
Read this skill before updating changelogs
What this skill does
Update the repository changelog with changes between the last release and the current version (`main`) that are not yet incorporated. If `CHANGELOG.md` does not exist, use `CHANGELOG` instead. ## Step-by-Step Process ### 1. Determine baseline version If no baseline version is provided, use the most recent git tag. You can find it with `git describe --tags --abbrev=0`. ### 2. Find the commits from git Use the following commands to gather commit information: ```bash # Get the baseline version (if not provided) git describe --tags --abbrev=0 # Get all commits since the baseline version git log <baseline-version>..HEAD ``` ### 3. Update the changelog Read the existing changelog file (`CHANGELOG.md`, or `CHANGELOG` if missing) and check if there are changes not yet incorporated, then add them. Always add them to the "Unreleased" section only. If there is none yet, add it at the top in the same style as the existing changelog (for example, `## Unreleased` vs `## [Unreleased]`). ## Ground Rules When Writing Changelogs ### Content Guidelines * Focus on **notable changes** that affect users (features, fixes, breaking changes) * Mention pull requests (`#NUMBER`) when available, but not raw commit hashes * Ignore insignificant changes (typo fixes, internal refactoring, minor documentation updates) * Group related changes together when appropriate * Order entries by importance: breaking changes first, then features, then fixes ### Style Guidelines * Use valid markdown syntax * Start each entry with a past-tense verb or descriptive phrase * Keep entries concise but descriptive enough to understand the change * Use bullet points (`*` or `-`) for individual changes * Format code references with backticks (e.g., `` `foo.cleanup` ``) ### Example Format ```markdown ## 2.13.0 * Added multi-key support to the `|sort` filter. #827 * Fix `not undefined` with strict undefined behavior. #838 * Added support for free threading Python. #841 ## 2.12.0 * Item or attribute lookup will no longer swallow all errors in Python. #814 * Added `|zip` filter. #818 * Fix `break_on_hyphens` for the `|wordwrap` filter. #823 * Prefer error message from `unknown_method_callback`. #824 * Ignore `.jinja` and `.jinja2` as extensions in auto escape. #832 ``` ### Good vs. Bad Examples **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) ## Notes * If the current changelog already has an "Unreleased" section with content, append to it rather than replacing it * Preserve the existing changelog style and formatting (headings, bullet style, ordering, and spacing) * If the repo uses a different default branch name, treat that as the "current version" instead of `main` * When in doubt about whether a change is significant, err on the side of including it
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.