agentsclimarketplace

Linux gpg signing

Skill a5c-ai/babysitter/library/specializations/desktop-development/skills/linux-gpg-signing

Sign Linux packages with GPG keys for secure distributionFrom its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill linux-gpg-signing

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.4 KB, 257 tokens by cl100k_base, as published. Nobody here has run it

linux-gpg-signing

Sign Linux packages with GPG keys for secure distribution through package repositories.

Capabilities

  • Generate GPG signing keys
  • Sign DEB packages
  • Sign RPM packages
  • Sign AppImages
  • Configure APT repository signing
  • Set up YUM/DNF repository signing
  • Export public keys for distribution

Input Schema

{
  "type": "object",
  "properties": {
    "packagePath": { "type": "string" },
    "keyId": { "type": "string" },
    "packageType": { "enum": ["deb", "rpm", "appimage"] }
  },
  "required": ["packagePath", "keyId"]
}

Signing Commands

# Generate GPG key
gpg --full-generate-key

# Sign DEB package
dpkg-sig --sign builder -k $KEY_ID package.deb

# Sign RPM package
rpm --addsign -D "_gpg_name $KEY_ID" package.rpm

# Export public key
gpg --armor --export $KEY_ID > public-key.asc

Related Skills

  • deb-package-builder
  • rpm-spec-generator

What ships with it: 1 file

386 B alongside SKILL.md

Keep looking

Skills are one crate of 326,059. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.