Manage environment configurations, secrets, and .env files across environments. Use when configuring application environments or managing secrets.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add aibot88/sec_skill_store --skill environment-manager --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Environment Manager?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/aibot88-environment-manager)More formats (shields.io, HTML) on the badges page.
---
name: environment-manager
description: Manage environment configurations, secrets, and .env files across environments. Use when configuring application environments or managing secrets.
---
# Environment Manager Skill
環境変数管理を支援するスキルです。
## 主な機能
- **.env ファイル生成**: テンプレート作成
- **環境変数検証**: 必須項目チェック
- **セキュリティ**: 機密情報の扱い
- **ドキュメント**: 変数の説明
## .env テンプレート
```bash
# Database
DATABASE_URL=postgresql://user:password@localhost:5432/myapp
DATABASE_POOL_SIZE=10
# Redis
REDIS_URL=redis://localhost:6379
REDIS_TTL=3600
# API Keys (Never commit actual keys!)
STRIPE_SECRET_KEY=sk_test_...
SENDGRID_API_KEY=SG...
# App Config
NODE_ENV=development
PORT=3000
LOG_LEVEL=debug
# JWT
JWT_SECRET=your-secret-key-here
JWT_EXPIRES_IN=7d
```
## .env.example
```bash
# Database Configuration
DATABASE_URL=postgresql://user:password@host:5432/dbname
# API Keys (Get from https://dashboard.stripe.com)
STRIPE_SECRET_KEY=
# Application
NODE_ENV=development
PORT=3000
```
## 環境変数検証
```javascript
// config/env.js
const requiredEnvVars = [
'DATABASE_URL',
'REDIS_URL',
'JWT_SECRET'
];
function validateEnv() {
const missing = requiredEnvVars.filter(key => !process.env[key]);
if (missing.length > 0) {
throw new Error(`Missing required environment variables: ${missing.join(', ')}`);
}
}
validateEnv();
```
## バージョン情報
- Version: 1.0.0
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
MySQL development best practices for schema design, query optimization, and database administration
ClickHouse数据库模式、查询优化、分析和数据工程最佳实践,适用于高性能分析工作负载。
基于Supabase最佳实践的PostgreSQL数据库模式,用于查询优化、架构设计、索引和安全。
Spring Boot中的JPA/Hibernate实体设计、关系、查询优化、事务、审计、索引、分页和连接池模式。
Unify 6+ memory systems into AgentDB with HNSW indexing for 150x-12,500x search improvements. Implements ADR-006 (Unified Memory Service) and ADR-009 (Hybrid Memory Backend).