What problem does it solve? Applications need API keys, tokens, and configuration values that must never be hardcoded into source code. This Skill lets an agent inspect, set, and delete environment variables across shared, development, and production scopes, and securely request secrets from the user without ever exposing their values. ## Core Features & Use Cases - View configuration: Check which environment variables and secrets exist, filtered by type, environment, or specific keys. - Set and delete env vars: Manage non-sensitive configuration (ports, feature flags, log levels) scoped to shared, development, or production environments. - Request secrets from users: Pause execution and prompt the user for API keys or tokens via requestEnvVar, so sensitive values are never set directly by the agent. - Use Case: Before enabling a payment feature, check whether STRIPE_SECRET_KEY exists; if missing, request it from the user, then set non-sensitive config like PAYMENTS_ENABLED=true in the shared environment. ## Quick Start Check which environment variables and secrets are currently configured, then request any missing API keys from me.