mcpbeat

Signing Entitlements

openai/signing-entitlements

Inspect macOS signing, entitlements, and Gatekeeper issues. Use when diagnosing code signing, sandbox, hardened runtime, or trust failures.

515 tokens
context cost
the whole folder, loaded on every use
2
files
instructions only
0
copies elsewhere
how many repositories repackaged it
4915
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/openai/plugins --skill signing-entitlements

What comes with it

290 bytes besides the instruction
agents/openai.yaml

The instruction itself

6 sections, as written by the author

Signing & Entitlements

Quick Start

Use this skill when the failure smells like codesigning rather than compilation:

launch refusal, missing entitlement, invalid signature, sandbox mismatch,

hardened runtime confusion, or trust-policy rejection.

Workflow

  • Inspect the bundle or binary.
  • Locate the .app or executable.
  • Identify the main binary inside Contents/MacOS/.
  • Read signing details.
  • Use codesign -dvvv --entitlements :- <path>.
  • Use spctl -a -vv <path> when Gatekeeper behavior matters.
  • Use plutil -p for entitlements or Info.plist inspection.
  • Classify the failure.
  • Unsigned or ad hoc signed
  • Wrong identity
  • Entitlement mismatch
  • Hardened runtime issue
  • App Sandbox issue
  • Nested code signing issue
  • Distribution/notarization prerequisite issue
  • Explain the minimum fix path.
  • Say exactly what is wrong.
  • Show the shortest set of validation or repair commands.
  • Distinguish local development problems from distribution problems.

Useful Commands

  • codesign -dvvv --entitlements :- <app-or-binary>
  • spctl -a -vv <app-or-binary>
  • security find-identity -p codesigning -v
  • plutil -p <path-to-entitlements-or-plist>

Guardrails

  • Never invent missing entitlements.
  • Do not conflate notarization with local debug signing.
  • If the real issue is a build setting or provisioning profile, say so directly.

Output Expectations

Provide:

  • what artifact was inspected
  • what signing state it is in
  • the exact failure class
  • the minimum fix or validation sequence

How to use it

Copy the folder

Take openai/signing-entitlements from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.