Agent skill
linux-gpg-signing
Sign Linux packages with GPG keys for secure distribution
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/linux-gpg-signing
SKILL.md
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-builderrpm-spec-generator
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?