agentsclimarketplace

Secrets management

Skill a5c-ai/babysitter/library/specializations/web-development/skills/secrets-management

Secrets handling, environment variables, and vault integration.From its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill secrets-management

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.1 KB, 163 tokens by cl100k_base, as published. Nobody here has run it

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

What ships with it: 1 file

329 B alongside SKILL.md

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.