Secrets management
Skill a5c-ai/babysitter/library/specializations/web-development/skills/secrets-management
Babysitter enforces obedience on agentic workforces and enables them to manage extremely complex tasks and workflows through deterministic, hallucination-free self-orchestration
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.
What its author says it does
Copied from the file, not written here
Secrets handling, environment variables, and vault integration.
SKILL.md
1.1 KB, 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