Agent Skills
› robinebers/openusage
› fix-codesign-error
fix-codesign-error
GitHub分析macOS签名或权限错误,诊断失败原因并提供最小修复方案。支持检查应用包、可执行文件及签名信息,区分开发、分发或公证问题,推荐可验证命令。
Trigger Scenarios
macOS应用签名失败
entitlements权限配置错误
代码签名证书或provisioning profile问题
Install
npx skills add robinebers/openusage --skill fix-codesign-error -g -y
SKILL.md
Frontmatter
{
"name": "fix-codesign-error",
"description": "Slash command that inspects a macOS signing or entitlement failure and explains the minimum fix path. Invoke explicitly with \/fix-codesign-error — this skill never self-triggers.",
"disable-model-invocation": true
}
Fix Codesign Error
Inspect a macOS signing or entitlement failure and explain the minimum fix path.
Arguments
app: path to.appbundle or binary (optional)identity: signing identity hint (optional)mode:inspectorrepair-plan(optional, default:inspect)
Workflow
- Inspect the app bundle, executable, signing info, and entitlements.
- Determine whether the problem is identity, provisioning, hardened runtime, sandboxing, or trust policy.
- Summarize the exact failure class in plain language.
- Provide the minimal repair sequence or validation command.
Guardrails
- Never invent entitlements; read them from the binary or source files.
- Distinguish local development signing problems from distribution or notarization failures.
- Prefer verifiable commands like
codesign -d,spctl, andplutilover guesswork.
Version History
- 70acd4f Current 2026-08-20 09:01


