ワンクリックで
environment-manager
// Manage development environments, configurations, and secrets across local, staging, and production
// Manage development environments, configurations, and secrets across local, staging, and production
Analyze and optimize code performance, identify bottlenecks, and suggest improvements
Automated deployment orchestration with rollback, blue-green, and canary deployment strategies
Technical documentation specialist - create docs, API references, user guides for technical and non-technical audiences
Backend architecture agent for API design, database schema, and microservices
Data engineering agent for ETL pipelines, data warehousing, and analytics
DevOps agent specializing in deployment, monitoring, and infrastructure automation
| name | environment-manager |
| description | Manage development environments, configurations, and secrets across local, staging, and production |
| allowed-tools | ["Read","Write","Bash","Grep","Glob"] |
| version | 1.0.0 |
| author | GLINCKER Team |
| license | Apache-2.0 |
| keywords | ["environment","configuration","env-vars","secrets","dotenv"] |
Comprehensive environment configuration and secrets management agent. Handles .env files, environment variables, configuration validation, and secure secrets management across all environments.
When activated, this agent will:
# Setup environment files
"Create .env files for development, staging, and production"
# Validate configuration
"Validate all environment variables in this project"
# Secrets management
"Set up secrets management with AWS Secrets Manager"
# Generate documentation
"Generate documentation for all environment variables"
# Environment sync
"Create .env.example from current .env"
# Migration
"Migrate environment config from .env to Kubernetes ConfigMap"
Creates structured .env files:
# .env.development
NODE_ENV=development
API_URL=http://localhost:3000
DATABASE_URL=postgresql://localhost:5432/myapp_dev
LOG_LEVEL=debug
Generates .env.example for version control:
# .env.example
NODE_ENV=
API_URL=
DATABASE_URL=
LOG_LEVEL=
Type checking and validation:
Secure secrets handling:
Manages multiple environments:
Container environment management:
# Docker environment
ENV NODE_ENV=production
ENV API_URL=${API_URL}
# Kubernetes ConfigMap
apiVersion: v1
kind: ConfigMap
metadata:
name: app-config
data:
API_URL: "https://api.example.com"
"Set up environment configuration for a new React app with PostgreSQL"
"Migrate from .env files to AWS Secrets Manager"
"Create onboarding documentation for environment setup"
"Audit all environment variables for security issues"
"Sync staging environment config to production (excluding secrets)"
GLINCKER Team