🎯

environment-manager

🎯Skill

from ntaksh42/agents

VibeIndex|
What it does

Generates and validates environment configuration files, ensuring secure and consistent environment variable management across different development stages.

📦

Part of

ntaksh42/agents(78 items)

environment-manager

Installation

📋 No install commands found in docs. Showing default command. Check GitHub for actual instructions.
Quick InstallInstall with npx
npx skills add ntaksh42/agents --skill environment-manager
2Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Manage environment configurations, secrets, and .env files across environments. Use when configuring application environments or managing secrets.

Overview

# 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

More from this repository10

🎯
document-summarizer🎯Skill

Generates concise summaries of documents by extracting key information and condensing text into a more digestible format.

🎯
algorithmic-art🎯Skill

Generates creative algorithmic art using p5.js, creating unique visual designs with patterns, fractals, and dynamic animations.

🎯
sql-query-helper🎯Skill

Generates, optimizes, and explains SQL queries with best practices, providing intelligent database query solutions across multiple database platforms.

🎯
plantuml-diagram🎯Skill

Generates PlantUML diagrams (class, sequence, component) to visually represent system architecture and UML models.

🎯
azure-pipelines-generator🎯Skill

Generates Azure Pipelines YAML configurations automatically for CI/CD workflows, supporting multi-stage builds and deployments across different environments.

🎯
kubernetes-helper🎯Skill

Assists Kubernetes users by generating, validating, and explaining Kubernetes manifests and configurations with AI-powered insights.

🎯
using-git-worktrees🎯Skill

Creates isolated Git worktrees with smart directory selection and safety verification for feature work and branch management.

🎯
dependency-analyzer🎯Skill

Analyzes project dependencies, identifies potential conflicts, and provides insights into library compatibility and version management.

🎯
brainstorming🎯Skill

Collaboratively refines rough ideas into fully-formed designs through systematic questioning, alternative exploration, and incremental validation.

🎯
azure-boards-helper🎯Skill

Manages Azure Boards work items by creating, querying, and automating work item workflows using WIQL and comprehensive templates.