Agent Skills: Secrets Management Skill

Enterprise secrets management across platforms. Manage secrets with HashiCorp Vault, AWS Secrets Manager, Azure Key Vault, GCP Secret Manager, and Kubernetes secrets. Configure rotation, policies, and access controls.

securityID: a5c-ai/babysitter/secrets-management

Install this agent skill to your local

pnpm dlx add-skill https://github.com/a5c-ai/babysitter/tree/HEAD/plugins/babysitter/skills/babysit/process/specializations/web-development/skills/secrets-management

Skill Files

Browse the full folder contents for secrets-management.

Download Skill

Loading file tree…

plugins/babysitter/skills/babysit/process/specializations/web-development/skills/secrets-management/SKILL.md

Skill Metadata

Name
secrets-management
Description
Secrets handling, environment variables, and vault integration.

Secrets Management Skill

Expert assistance for handling secrets securely.

Capabilities

  • Configure environment variables
  • Integrate with vaults
  • Handle secrets rotation
  • Secure CI/CD secrets
  • Audit secret access

Best Practices

// Never commit secrets
// Use environment variables
const config = {
  databaseUrl: process.env.DATABASE_URL,
  jwtSecret: process.env.JWT_SECRET,
  apiKey: process.env.API_KEY,
};

// Validate required secrets
const required = ['DATABASE_URL', 'JWT_SECRET'];
required.forEach((key) => {
  if (!process.env[key]) {
    throw new Error(`Missing required env var: ${key}`);
  }
});

Target Processes

  • secrets-setup
  • security-hardening
  • ci-cd-security