Agent skill · Workflow & Productivity

macos-notarization-workflow

Automate Apple notarization with xcrun notarytool for macOS application distribution

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill macos-notarization-workflow --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Allowed tools: ReadWriteEditBashGlobGrep
Path: library/specializations/desktop-development/skills/macos-notarization-workflow/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# macos-notarization-workflow Automate Apple notarization workflow using xcrun notarytool for macOS applications. This skill handles the complete notarization process including submission, status checking, and stapling. ## Capabilities - Submit apps for notarization via notarytool - Monitor notarization status - Staple notarization ticket to app - Handle notarization errors - Generate CI/CD notarization scripts - Configure App Store Connect API keys - Validate apps before submission - Generate notarization reports ## Input Schema ```json { "type": "object", "properties": { "projectPath": { "type": "string", "description": "Path to the project" }, "appPath": { "type": "string", "description": "Path to the signed app bundle or DMG" }, "authMethod": { "enum": ["app-store-connect-api", "apple-id", "keychain"], "default": "app-store-connect-api" }, "credentials": { "type": "object", "properties": { "keyId": { "type": "string" }, "issuerId": { "type": "string" }, "keyPath": { "type": "string" }, "appleId": { "type": "string" }, "teamId": { "type": "string" } } }, "waitForCompletion": { "type": "boolean", "default": true }, "staple": { "type": "boolean", "default": true } }, "required": [

What's inside
Steps it walks through
  1. Capabilities
  2. Input Schema
  3. Output Schema
  4. Notarization Workflow
  5. 1. Prerequisites
  6. 2. Store Credentials (Recommended)
  7. 3. Submit for Notarization
  8. 4. Check Status
  9. 5. Staple Ticket
  10. Complete Script
  11. GitHub Actions Integration
  12. Common Issues
  13. Issue: Hardened runtime not enabled
  14. Issue: Missing entitlements
Ships with 1 file
  • README.md
Commands it runs
Ensure Xcode command line tools are installed
xcode-select --install
Verify code signing
codesign --verify --deep --strict MyApp.app
codesign -vvv --deep --strict MyApp.app
Check hardened runtime
codesign -dvvv MyApp.app | grep runtime
Should show: flags=0x10000(runtime)
Store App Store Connect API key in keychain
xcrun notarytool store-credentials "MyProfile" \
More from babysitter
All skills →
About this skill
What does the macos-notarization-workflow skill do?

Automate Apple notarization with xcrun notarytool for macOS application distribution

How do I install it?

Run `npx skills add a5c-ai/babysitter --skill macos-notarization-workflow --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going