This one handles AWS KMS operations in Java applications when you need proper encryption key management instead of rolling your own crypto. It covers the envelope encryption pattern for large data (generate a data key, encrypt locally, store the encrypted key), direct encrypt/decrypt for small payloads under 4KB, and digital signatures with asymmetric keys. The code examples include verification checks after key operations, which is good because KMS calls can fail silently if permissions are misconfigured. Useful if you're building a Spring Boot app that needs to encrypt database fields, sign API tokens, or implement automatic key rotation without managing raw key material yourself.
npx skills add https://github.com/giuseppe-trisciuoglio/developer-kit --skill aws-sdk-java-v2-kms