agentsclimarketplace

Macos sparkle config

Skill a5c-ai/babysitter/library/specializations/desktop-development/skills/macos-sparkle-config

Babysitter enforces obedience on agentic workforces and enables them to manage extremely complex tasks and workflows through deterministic, hallucination-free self-orchestration

Install
npx -y skills add a5c-ai/babysitter --skill macos-sparkle-config

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its author says it does

Copied from the file, not written here

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

SKILL.md

2.0 KB, as published. Nobody here has run it

macos-sparkle-config

Configure Sparkle framework for macOS auto-updates. This skill sets up appcast feeds, delta updates, EdDSA signing, and update UI customization.

Capabilities

  • Integrate Sparkle 2.x framework
  • Generate appcast.xml feeds
  • Configure EdDSA signing for updates
  • Set up delta updates
  • Customize update UI
  • Configure update check intervals
  • Generate release publishing scripts
  • Configure sandboxed app support (XPC)

Input Schema

{
  "type": "object",
  "properties": {
    "projectPath": { "type": "string" },
    "appcastUrl": { "type": "string" },
    "signUpdates": { "type": "boolean", "default": true },
    "deltaUpdates": { "type": "boolean", "default": true },
    "checkInterval": { "type": "number", "default": 86400 }
  },
  "required": ["projectPath", "appcastUrl"]
}

Configuration

// In App Delegate or SwiftUI App
import Sparkle

class AppDelegate: NSObject, NSApplicationDelegate {
    let updaterController = SPUStandardUpdaterController(
        startingUpdater: true,
        updaterDelegate: nil,
        userDriverDelegate: nil
    )
}

// Info.plist
// SUFeedURL: https://yourserver.com/appcast.xml
// SUPublicEDKey: your-public-ed25519-key

Appcast Generation

# Generate appcast
./bin/generate_appcast ./releases/

# Sign update
./bin/sign_update MyApp-1.0.0.zip

Related Skills

  • macos-notarization-workflow
  • auto-update-system process

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.