release-notes
Generate release notes by analyzing git commits and diffs. Use when asked to create release notes, changelog entries, or summarize code changes between versions.
What this skill does
# Release Notes Generator for SaaS Pegasus Generate professional release notes for code changes between git refs. Can be run from any directory. ## Arguments - `$0`: from_ref (e.g., "v1.0", commit SHA, or branch name) - `$1`: to_ref (e.g., "v1.1", "HEAD", or branch name) - `$2`: (optional) path to the git repository to analyze - `$3`: (optional) path to reference release notes file for style matching - `$4`: (optional) output file path (default: prompt user) ## Defaults Users can customize these defaults. If a default is set and the corresponding argument is not provided, use the default without prompting. - `default_repo_path`: (none) - `default_release_notes_path`: (none) ## Workflow 1. **Resolve the repo path**: - If `$2` is provided, use it. - Else if `default_repo_path` is set, use that. - Otherwise, use `AskUserQuestion` to ask the user: "What is the path to the git repository to analyze?" with an option for the current directory (`.`) and an option to enter a custom path. 2. **Resolve the release notes reference file**: - If `$3` is provided, use it. - Else if `default_release_notes_path` is set, use that. - Otherwise, use `AskUserQuestion` to ask: "Is there an existing release notes file to use as a style reference?" with options "No reference file" and "Enter a path". 3. **Read reference notes** (if a reference path was resolved) to match tone and structure. 4. **Run the diff script** to get commit and file change data: ```bash python <skill-dir>/scripts/make_diff.py --from "$0" --to "$1" --repo-dir <resolved_repo_path> ``` 5. **Draft release notes** following the guidelines below. 6. **Output handling**: If `$4` is provided, write to that file. Otherwise, display the notes and ask if user wants to save them. ## Style Guidelines - Format: 1-2 sentences describing the release, followed by a detailed list of changes - Large features can have their own section at the top; otherwise, use a flat list - Use commit messages to understand intent of changes - Highlight substantial changes from diffs that aren't in commit messages - **Never mention cookiecutter** - translate cookiecutter markup changes to human terms - **Ignore commits starting with "invisible:" or "tool:"** - don't mention them or their files - For library upgrades, only mention specific libraries if explicitly called out in commits ## Additional Resources - For formatting examples and style reference, see [examples.md](examples.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.