Install
openclaw skills install artifact-signingA skill to sign artifacts using a digital certificate and private key.
openclaw skills install artifact-signingThis skill allows an AI agent to sign files, binaries, or any artifact using a PEM-encoded private key. It generates a detached signature file.
cryptography library (pip install cryptography)sign_artifactSigns a given artifact with a private key.
Arguments:
artifact_path: (Required) Absolute path to the file to be signed.key_path: (Required) Absolute path to the PEM-encoded private key.output_path: (Optional) Absolute path where the signature should be saved. Defaults to <artifact_path>.sig.Example Usage:
python c:\Docs\skills\artifact-signing\scripts\sign_artifact.py "C:\path\to\artifact.zip" "C:\path\to\private_key.pem"