What problem does it solve? Applications need API keys, tokens, and configuration values that must never be hardcoded into source code. This Skill provides a safe way to view, set, and delete environment variables and to request secrets directly from users without exposing sensitive values. ## Core Features & Use Cases - View Configuration: Inspect existing environment variables and check which secrets are configured across shared, development, and production environments. - Set and Delete Variables: Manage non-sensitive configuration values scoped to specific environments. - Request Secrets Securely: Pause execution and prompt the user for API keys or tokens, so sensitive values are never written by the agent. - Use Case: When building a feature that calls the OpenAI API, first check whether OPENAI_API_KEY exists, then request it from the user if missing, and set related config like MAX_TOKENS as a shared environment variable. ## Quick Start Check which environment variables and secrets are currently configured, then request any missing API keys from the user.