sparkle

Integrate, migrate, secure, publish, and troubleshoot Sparkle in macOS apps. Use when working on Sparkle dependency setup (SPM/Carthage/manual), updater wiring (SPUStandardUpdaterController or programmatic setup), Info.plist update keys (SUFeedURL and SUPublicEDKey), appcast/signing workflows, sandboxed updater behavior, or update-check debugging.

6 stars

Best use case

sparkle is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Integrate, migrate, secure, publish, and troubleshoot Sparkle in macOS apps. Use when working on Sparkle dependency setup (SPM/Carthage/manual), updater wiring (SPUStandardUpdaterController or programmatic setup), Info.plist update keys (SUFeedURL and SUPublicEDKey), appcast/signing workflows, sandboxed updater behavior, or update-check debugging.

Teams using sparkle should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/sparkle/SKILL.md --create-dirs "https://raw.githubusercontent.com/roeybiran/dotfiles/main/.agents/skills/sparkle/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/sparkle/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How sparkle Compares

Feature / AgentsparkleStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Integrate, migrate, secure, publish, and troubleshoot Sparkle in macOS apps. Use when working on Sparkle dependency setup (SPM/Carthage/manual), updater wiring (SPUStandardUpdaterController or programmatic setup), Info.plist update keys (SUFeedURL and SUPublicEDKey), appcast/signing workflows, sandboxed updater behavior, or update-check debugging.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Sparkle

Implement Sparkle changes with this sequence so integration, security, and publishing stay
consistent.

## Workflow

1. Confirm the app context:
   - Detect Sparkle integration type: XIB (`SPUStandardUpdaterController`) or programmatic setup.
   - Detect package/install method: SPM, Carthage binary, or manual framework integration.
   - Detect constraints: sandboxed app, existing Sparkle 1 integration, installer package updates.
2. Open the task-matched local docs in `references/` before editing code.
3. Implement only the needed changes for the user request (setup, migration, publishing,
   customization, or debugging).
4. Validate with build/test steps and updater behavior checks.

## Documentation Map

Use the local docs below first. These are copied from the Sparkle documentation repository.

- Start here: `references/index.md`
- Migrate older Sparkle versions: `references/upgrading/index.md`
- Programmatic setup / SwiftUI setup: `references/programmatic-setup/index.md`
- Sandboxing and XPC services: `references/sandboxing/index.md`
- Customization keys and behavior: `references/customization/index.md`
- Publish updates and appcasts: `references/publishing/index.md`
- Delta updates: `references/delta-updates/index.md`
- Package updates: `references/package-updates/index.md`
- Preferences UI: `references/preferences-ui/index.md`
- Custom updater UIs: `references/custom-user-interfaces/index.md`
- ATS requirements: `references/app-transport-security/index.md`
- Security and reliability: `references/security-and-reliability/index.md`
- EdDSA migration: `references/eddsa-migration/index.md`
- Sparkle CLI usage: `references/sparkle-cli/index.md`
- System profiling: `references/system-profiling/index.md`
- Non-app bundle guidance: `references/bundles/index.md`
- Gentle reminders UX: `references/gentle-reminders/index.md`

Common Sparkle commands:

```bash
./bin/generate_keys
./bin/generate_appcast /path/to/updates_folder/
codesign --deep --verify /path/to/MyApp.app
defaults delete com.example.MyApp SULastCheckTime
```

## Required Baseline Checks

Apply these checks when setting up or fixing Sparkle:

- Ensure `SUFeedURL` is present and points to the appcast.
- Ensure `SUPublicEDKey` exists if EdDSA signing is used.
- Ensure update artifacts are served over HTTPS and app transport policy is satisfied.
- Ensure release builds are properly signed/notarized for distribution.
- Ensure Sparkle framework embedding is correct (`Embed & Sign` when applicable).

## Common Implementations

### Dependency Setup

- Prefer Swift Package Manager for new integrations.
- For Carthage, use Sparkle's binary origin, not source-built artifacts.
- For manual integration, verify framework embedding and runpath configuration.

### Updater Wiring

- For XIB/AppKit setup, use `SPUStandardUpdaterController` and optional
  `checkForUpdates:` menu wiring.
- For SwiftUI or custom app entry points, follow programmatic setup docs.
- For upgrades from old integrations, follow migration docs instead of ad hoc rewrites.

### Signing and Appcast Publishing

- Generate signing keys with Sparkle tools once per product identity.
- Add public key to app `Info.plist` (`SUPublicEDKey`).
- Generate/update appcast using `generate_appcast` from Sparkle tools.
- Upload archives, appcast, and generated delta files together.

### Testing and Debugging

- Test updates from a genuinely older build.
- Clear `SULastCheckTime` when forcing immediate check cycles in local testing.
- Inspect updater logs in Console.app when behavior differs from expectations.
- Keep `.dSYM` files for symbolication and updater-related crash diagnosis.

## Output Expectations

When completing a Sparkle task, report:

1. What changed in project files (dependency, plist keys, updater wiring, signing/publishing flow).
2. What docs path was used for decisions.
3. What was verified (build, archive generation, appcast generation, update check behavior).

Related Skills

note

6
from roeybiran/dotfiles

Update AGENTS.md instructions from user notes. Use when a user asks to add, revise, remove, or reorganize project operating instructions in AGENTS.md. Default to the current project's AGENTS.md, and only target global AGENTS.md when the user explicitly asks for global scope.

gsap

6
from roeybiran/dotfiles

GSAP animations for JARVIS HUD transitions and effects

create-macos-app

6
from roeybiran/dotfiles

Blueprint for setting up a new macOS Xcode project the right way. Use this skill whenever the user asks to create a macOS app, set up a new macOS Xcode project, or bootstrap a macOS application. Covers project creation, scheme configuration, code-level bootstrapping, menu bar setup, build configurations, and linting tooling.

apple-dev

6
from roeybiran/dotfiles

Apple development guidelines for Swift packages (SPM), Xcode projects, Swift Testing framework, and The Composable Architecture (TCA). Load this skill whenever working in an Xcode project (xcodeproj/xcworkspace), a Swift package (Package.swift), writing or fixing Swift tests (Swift Testing, @Test, @Suite,

macos-sparkle-config

509
from a5c-ai/babysitter

Configure Sparkle framework for macOS auto-updates with appcast, delta updates, and code signing

generate-sparkle-appcast

242
from aiskillstore/marketplace

Generate Mos Sparkle appcast.xml from the latest build zip and recent git changes (since a given commit), then sync to docs/ for publishing.

generate-sparkle-appcast

25
from ComeOnOliver/skillshub

Generate Mos Sparkle appcast.xml from the latest build zip and recent git changes (since a given commit), then sync to docs/ for publishing.

using-sparklend-adapter

14
from WayfinderFoundation/wayfinder-paths-sdk

How to use the SparkLend adapter for the functionality implemented in this repo (market reads, user state, supply/withdraw, borrow/repay, collateral, rewards, and native-token flows).

sparkle-vpn

7
from Demerzels-lab/elsamultiskillagent

Control Sparkle VPN - start and stop VPN connections using Mihomo core directly.

workspace-surface-audit

144923
from affaan-m/everything-claude-code

Audit the active repo, MCP servers, plugins, connectors, env surfaces, and harness setup, then recommend the highest-value ECC-native skills, hooks, agents, and operator workflows. Use when the user wants help setting up Claude Code or understanding what capabilities are actually available in their environment.

DevelopmentClaude

ui-demo

144923
from affaan-m/everything-claude-code

Record polished UI demo videos using Playwright. Use when the user asks to create a demo, walkthrough, screen recording, or tutorial video of a web application. Produces WebM videos with visible cursor, natural pacing, and professional feel.

Developer ToolsClaude

token-budget-advisor

144923
from affaan-m/everything-claude-code

Offers the user an informed choice about how much response depth to consume before answering. Use this skill when the user explicitly wants to control response length, depth, or token budget. TRIGGER when: "token budget", "token count", "token usage", "token limit", "response length", "answer depth", "short version", "brief answer", "detailed answer", "exhaustive answer", "respuesta corta vs larga", "cuántos tokens", "ahorrar tokens", "responde al 50%", "dame la versión corta", "quiero controlar cuánto usas", or clear variants where the user is explicitly asking to control answer size or depth. DO NOT TRIGGER when: user has already specified a level in the current session (maintain it), the request is clearly a one-word answer, or "token" refers to auth/session/payment tokens rather than response size.

Productivity & Content CreationClaude