Claude-Skills secrets-vault-manager
install
source · Clone the upstream repo
git clone https://github.com/borghei/Claude-Skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/borghei/Claude-Skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/engineering/secrets-vault-manager" ~/.claude/skills/borghei-claude-skills-secrets-vault-manager && rm -rf "$T"
manifest:
engineering/secrets-vault-manager/SKILL.mdsource content
Secrets Vault Manager
Category: Engineering Domain: Secrets Management & Security
Overview
The Secrets Vault Manager skill provides tools for generating HashiCorp Vault configurations, planning and scheduling secret rotation cycles, and analyzing vault audit logs for suspicious access patterns. Essential for teams managing secrets at scale.
Quick Start
# Generate Vault configuration python scripts/vault_config_generator.py --env production --secrets-engines kv,database,transit # Plan secret rotation schedule python scripts/rotation_planner.py --inventory secrets_inventory.json # Analyze vault audit logs python scripts/audit_log_analyzer.py --log-file vault_audit.log --format json
Tools Overview
| Tool | Purpose | Key Flags |
|---|---|---|
| Generate HashiCorp Vault configurations | , , |
| Plan and schedule secret rotation cycles | , , |
| Analyze vault audit logs for anomalies | , , |
Workflows
Initial Vault Setup
- Define environment and required secrets engines
- Run
to generate HCL configsvault_config_generator.py - Review and customize generated configurations
- Apply via Terraform or Vault CLI
Secret Rotation Planning
- Create secrets inventory (JSON)
- Run
to generate schedulerotation_planner.py - Review rotation plan and adjust frequencies
- Implement automated rotation where possible
Audit Log Investigation
- Export vault audit logs
- Run
for anomaly detectionaudit_log_analyzer.py - Review flagged events
- Investigate suspicious access patterns
Reference Documentation
- Secrets Management Guide - Best practices, rotation policies, and compliance requirements
Common Patterns
Secret Classification
- Critical: Database credentials, API master keys, encryption keys
- High: Service account tokens, OAuth secrets, TLS certificates
- Medium: Third-party API keys, webhook secrets
- Low: Public API keys, non-sensitive configuration