Agent skill · Security

aws-sdk-java-v2-secrets-manager

Provides AWS Secrets Manager patterns for AWS SDK for Java 2.x, including secret retrieval, caching, rotation-aware access, and Spring Boot integration. Use when storing or reading secrets in Java services, replacing hardcoded credentials, or wiring secret-backed configuration into applications.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill aws-sdk-java-v2-secrets-manager --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Allowed tools: ReadWriteEditBashGlobGrep
Path: skills/api/aws-sdk-java-v2-secrets-manager/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# AWS SDK for Java 2.x - AWS Secrets Manager ## Overview Use this skill to manage application secrets with AWS Secrets Manager from Java services. It focuses on the operational flow that matters in production: - how to retrieve and deserialize secrets safely - when to add local caching - how to integrate secret access into Spring Boot without leaking values into logs or configuration files Keep large API notes and extended setup details in the bundled references. ## When to Use Use this skill when: - replacing hardcoded passwords, API keys, or tokens with managed secrets - loading database credentials or third-party API credentials at runtime - adding caching to reduce Secrets Manager latency and API cost - handling secret version stages such as `AWSCURRENT` and `AWSPENDING` - wiring secret access into Spring Boot beans or configuration services - preparing rotation-aware applications or Lambda rotation workflows Typical trigger phrases include `java secrets manager`, `spring boot secret`, `aws secret cache`, `load db credentials from secrets manager`, and `rotate secret`. ## Instructions ### 1. Model the secret before writing access code Decide: - the secret name and path conventi

What's inside
Steps it walks through
  1. Overview
  2. When to Use
  3. Instructions
  4. 1. Model the secret before writing access code
  5. 2. Create one reusable client per application configuration
  6. 3. Retrieve and deserialize at the boundary layer
  7. 4. Add caching only where it solves a real problem
  8. 5. Design for rotation and staged versions
  9. 6. Validate end-to-end behavior
  10. Examples
  11. Example 1: Reusable client and typed secret lookup
  12. Example 2: Cache a hot-path secret lookup
  13. Best Practices
  14. Constraints and Warnings
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the aws-sdk-java-v2-secrets-manager skill do?

Provides AWS Secrets Manager patterns for AWS SDK for Java 2.x, including secret retrieval, caching, rotation-aware access, and Spring Boot integration. Use when storing or reading secrets in Java services, replacing hardcoded credentials, or wiring secret-backed configuration into applications.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill aws-sdk-java-v2-secrets-manager --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going