Agent skill · DevOps & Cloud

secrets-management

Secure secrets management practices for CI/CD pipelines using Vault, AWS Secrets Manager, and other tools.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill secrets-management --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 8 KB
Bundled scripts: none
Path: skills/secrets-management/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

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

From the SKILL.md

# Secrets Management Secure secrets management practices for CI/CD pipelines using Vault, AWS Secrets Manager, and other tools. ## Purpose Implement secure secrets management in CI/CD pipelines without hardcoding sensitive information. ## Use this skill when - Store API keys and credentials - Manage database passwords - Handle TLS certificates - Rotate secrets automatically - Implement least-privilege access ## Do not use this skill when - You plan to hardcode secrets in source control - You cannot secure access to the secrets backend - You only need local development values without sharing ## Instructions 1. Identify secret types, owners, and rotation requirements. 2. Choose a secrets backend and access model. 3. Integrate CI/CD or runtime retrieval with least privilege. 4. Validate rotation and audit logging. ## Safety - Never commit secrets to source control. - Limit access and log secret usage for auditing. ## Secrets Management Tools ### HashiCorp Vault - Centralized secrets management - Dynamic secrets generation - Secret rotation - Audit logging - Fine-grained access control ### AWS Secrets Manager - AWS-native solution - Automatic rotation - Integration with RDS - CloudForm

What's inside
Steps it walks through
  1. Purpose
  2. Use this skill when
  3. Do not use this skill when
  4. Instructions
  5. Safety
  6. Secrets Management Tools
  7. HashiCorp Vault
  8. AWS Secrets Manager
  9. Azure Key Vault
  10. Google Secret Manager
  11. HashiCorp Vault Integration
  12. Setup Vault
  13. GitHub Actions with Vault
  14. GitLab CI with Vault
Commands it runs
Start Vault dev server
vault server -dev
Set environment
export VAULT_ADDR='http://127.0.0.1:8200'
export VAULT_TOKEN='root'
Enable secrets engine
vault secrets enable -path=secret kv-v2
Store secret
vault kv put secret/database/config username=admin password=secret
aws secretsmanager create-secret \
More from agentic-awesome-skills
All skills →
About this skill
What does the secrets-management skill do?

Secure secrets management practices for CI/CD pipelines using Vault, AWS Secrets Manager, and other tools.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill secrets-management --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 sickn33/agentic-awesome-skills, a repository with 44,414 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