What problem does it solve?
This skill securely stores Apple notarization credentials (issuer ID, key ID, and key path) in the macOS Keychain and uses them to streamline local OpenWork notarization workflows, reducing manual credential management.
Core Features & Use Cases
- Secure credential storage and retrieval for Apple Notary tool workflows on macOS.
- Support for retrieving issuer ID, key ID, and key path from Keychain during notarization steps.
- Use case: Release a new OpenWork DMG by automatically performing notary history checks and stapling when credentials are available.
Quick Start
Follow these steps to set up and use the skill:
- Ensure Keychain access is available and the OpenWork notary environment is configured.
- Store credentials in Keychain:
security add-generic-password -a issuer-id -s com.differentai.openwork.notary -w "<ISSUER_UUID>" -U
security add-generic-password -a key-id -s com.differentai.openwork.notary -w "<KEY_ID>" -U
security add-generic-password -a key-path -s com.differentai.openwork.notary -w "/path/to/AuthKey_<KEY_ID>.p8" -U
- Read values during runtime:
security find-generic-password -a issuer-id -s com.differentai.openwork.notary -w
security find-generic-password -a key-id -s com.differentai.openwork.notary -w
security find-generic-password -a key-path -s com.differentai.openwork.notary -w