Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Execute macOS code signing with Developer ID and hardened runtime requirements
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-08 | ✗→✓ | ▲ Improved | -39% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 77% | 0% |
| case-16 | ✗→✓ | ▲ Improved | -7% | 0% |
| case-21 | ✓→✗ | ▼ Worse | 69% | 0% |
| case-01 | ✓→✓ | = Same ✓ | 8% | 0% |
Execute macOS code signing with Developer ID certificates and hardened runtime. This skill handles the complete code signing process for macOS applications.
json{ "type": "object", "properties": { "appPath": { "type": "string" }, "identity": { "type": "string" }, "entitlements": { "type": "string" }, "hardenedRuntime": { "type": "boolean", "default": true } }, "required": ["appPath", "identity"] }
bash# Sign app bundle with hardened runtime codesign --force --options runtime --timestamp \ --entitlements MyApp.entitlements \ --sign "Developer ID Application: Company Name (TEAMID)" \ MyApp.app # Sign nested components first find MyApp.app -name "*.dylib" -o -name "*.framework" | \ xargs -I {} codesign --force --options runtime --timestamp \ --sign "Developer ID Application: Company Name (TEAMID)" {} # Verify signature codesign --verify --deep --strict --verbose=2 MyApp.app spctl --assess --type execute --verbose MyApp.app
macos-notarization-workflowmacos-entitlements-generatorOther measured skills in the registry, with their headline benchmark lift.