Skill configuration management
Skill saitarrun/sdlc-ai-workflow/skills/skill-configuration-management
A comprehensive Claude Code plugin that automates the complete Software Development Lifecycle with 20 role-specific agents, 12 knowledge skills, and 8 commands, all guided by principles.
npx -y skills add saitarrun/sdlc-ai-workflow --skill skill-configuration-managementAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Secrets management, environment-specific configs, safe defaults, feature flags, configuration-as-code, compliance and audit trails. Use when managing secrets, configuring deployments, or implementing feature flags.
SKILL.md
1.7 KB, 403 tokens by cl100k_base, as published. Nobody here has run it
Skill: Configuration Management
Secrets stay secret. Configs are code. Feature flags enable safe rollout.
Secrets Management
Never commit secrets:
# ✗ Don't
export DATABASE_PASSWORD="my-password"
git add .env
git commit
# ✓ Do
export DATABASE_PASSWORD=$(aws secretsmanager get-secret-value ...)
# or
source <(vault kv get -format=json secret/db | jq -r '.data | to_entries | .[] | "\(.key)=\(.value)"')
Tools: Vault, AWS Secrets Manager, Azure Key Vault
Environment Configs
# config/environments.yaml
development:
database:
host: localhost:5432
pool_size: 5
cache:
ttl: 60s
production:
database:
host: db.prod.example.com:5432
pool_size: 100
cache:
ttl: 3600s
Load by environment:
import yaml
config = yaml.load(open(f'config/{ENV}.yaml'))
Feature Flags
Safe rollout:
feature_auth_v2: enabled for [10%, 25%, 50%, 100%]
if feature_flag("auth_v2"):
use_new_auth()
else:
use_old_auth()
Tools: LaunchDarkly, Unleash, custom
Safe Defaults
# ✓ Good defaults
class Config:
DEBUG = False # Never debug in production
TIMEOUT = 30 # Reasonable default
RETRIES = 3 # Sensible retry count
# ✗ Bad defaults
class Config:
DEBUG = True # Oops, left it on
TIMEOUT = 3600 # Way too long
Status: Ready for configuration work
Best for: Secrets, configs, feature flags, environment management
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.