bump-version
This skill should be used when the user asks to "bump AUR version", "update AUR package version", "bump package version", "update PKGBUILD version", "bump to latest version", or mentions version bumping for AUR packages. Handles automatic version detection, checksum updates, and git commit/push to AUR.
What this skill does
Bump an AUR package to a new version with automatic checksum updates and git push to AUR. Target version: $ARGUMENTS ## Workflow 1. **Determine the new version**: - If version argument provided, use it - Otherwise, automatically detect latest version from package source - Confirm auto-detected version with user before proceeding 2. **Update PKGBUILD**: - Set `pkgver` to new version (without 'v' prefix) - Run `updpkgsums` to regenerate checksums 3. **Update metadata**: ```bash makepkg --printsrcinfo > .SRCINFO ``` 4. **Commit and push**: ```bash git add . git commit -m "chore: bump to <version>" git push ``` ## Version Detection by Source Type ### NPM Packages ```bash npm view <package-name> version ``` For scoped packages: ```bash npm view @scope/package version ``` ### GitHub Releases (for -bin packages) ```bash curl -s "https://api.github.com/repos/user/repo/releases/latest" | \ grep '"tag_name":' | sed -E 's/.*"v([^"]+)".*/\1/' ``` ### Go Modules ```bash curl -s "https://proxy.golang.org/module/@v/list" | tail -1 ``` ### Crates.io (Rust) ```bash curl -s "https://crates.io/api/v1/crates/<crate-name>" | jq -r '.crate.newest_version' ``` ### PyPI (Python) ```bash curl -s "https://pypi.org/pypi/<package-name>/json" | jq -r '.info.version' ``` ### Git Repositories (-git packages) For -git packages, the version is dynamically generated by `pkgver()` function. No manual bumping needed - rebuild the package to get the latest commit. ## Parsing PKGBUILD for Source Type To determine how to detect version, read the PKGBUILD and check: 1. **NPM**: Source contains `registry.npmjs.org` 2. **GitHub Releases**: Source contains `github.com` and `-bin` in pkgname 3. **Go**: Source contains proxy.golang.org or go.mod present 4. **Crates.io**: Source contains `crates.io` 5. **PyPI**: Source contains `pypi.org` or `files.pythonhosted.org` 6. **Git (-git)**: pkgname ends with `-git` ## Version Format Always use version number **without** the 'v' prefix: - ✅ `48.2.7` - ❌ `v48.2.7` If upstream uses 'v' prefix in tags, strip it when setting `pkgver`. ## Useful Commands | Command | Purpose | |---------|---------| | `updpkgsums` | Update sha256sums from source files | | `makepkg --printsrcinfo > .SRCINFO` | Regenerate .SRCINFO metadata | | `namcap PKGBUILD` | Verify PKGBUILD after changes | ## Error Handling - **Version not found**: Inform user and ask for manual version input - **Checksum update fails**: Verify source URL is correct and accessible - **Git push fails**: Check AUR SSH credentials and remote configuration
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.