Secrets management
Skill a5c-ai/babysitter/library/specializations/web-development/skills/secrets-management
Secrets handling, environment variables, and vault integration.From its SKILL.md
npx -y skills add a5c-ai/babysitter --skill secrets-managementAssembled 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
- README.md329 B