Verify Signed Agent Skills
Cryptographic signing gives skill consumers a way to verify that a skill directory has not changed since it was signed. For agent skills, that matters because the review target is the whole directory: SKILL.md, scripts, references, assets, and any supporting files.
NVIDIA has adopted the OpenSSF Model Signing format, also known as OMS, for detached skill signatures. OMS extends Sigstore-style bundles so verification can cover a directory tree instead of only a single file.
Signature Layout
The signature is delivered as a detached file at the top level of the skill directory:
By default, the signature covers the files and directories in the skill directory, excluding the signature file itself.
If unsigned files are added after signing, strict verification should fail. That is the point: users need to know when the installed directory differs from the signed release.
Verification Inputs
Verification needs three things:
The signing source material names the certificate file nv-agent-root-cert.pem.
Install a Verifier
Install an OMS-compatible verifier such as model-signing:
Verify a Skill
Run verification against the installed or downloaded skill directory:
If your policy intentionally permits additional unsigned files, add:
For production release checks, prefer strict verification unless there is a documented reason to permit unsigned additions.
Where Signing Fits
Signing should happen after scanning and review:
- Run SkillSpector against the complete skill directory.
- Resolve or accept findings.
- Complete the skill card.
- Sign the exact directory that will be published.
- Publish
skill.oms.sigwith the skill. - Verify the signature during installation or CI.
Signing does not prove a skill is safe. It proves the released skill is the one that was signed. Pair it with scanning and a complete skill card for a usable trust story.
Consumer Checklist
Before installing a signed skill:
- Confirm the signature file is present as
skill.oms.sig. - Confirm the certificate chain comes from the expected publisher.
- Run the verification command against the final installed directory.
- Review the skill card and scan report before enabling the skill.
- Re-run verification after any local modification.