env-manager

Installation
SKILL.md

Environment Manager

Overview

This skill helps manage environment variables and secrets across multiple environments (development, staging, production). It detects missing variables, identifies mismatches, audits for exposed secrets, and helps safely rotate credentials without downtime.

Instructions

Auditing Environment Variables

  1. Find all env var references in code:
    grep -rn "process\.env\." src/ --include="*.ts" --include="*.js" | \
      sed 's/.*process\.env\.\([A-Z_]*\).*/\1/' | sort -u
    
    For Python:
    grep -rn "os\.environ\|os\.getenv" src/ --include="*.py" | \
      sed 's/.*os\.\(environ\["\|getenv("\)\([A-Z_]*\).*/\2/' | sort -u
    
Related skills
Installs
1
GitHub Stars
47
First Seen
Mar 13, 2026