Babysitter secrets-management

Secrets handling, environment variables, and vault integration.

install
source · Clone the upstream repo
git clone https://github.com/a5c-ai/babysitter
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/a5c-ai/babysitter "$T" && mkdir -p ~/.claude/skills && cp -r "$T/library/specializations/web-development/skills/secrets-management" ~/.claude/skills/a5c-ai-babysitter-secrets-management-c30168 && rm -rf "$T"
manifest: library/specializations/web-development/skills/secrets-management/SKILL.md
source content

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