What problem does it solve? Configuring applications requires managing environment variables and API keys, but hardcoding secrets is insecure and tracking which variables exist across development and production environments is error-prone. ## Core Features & Use Cases - View and Inspect Configuration: Check which environment variables and secrets exist, filtered by environment (shared, development, production) or specific keys. - Set and Delete Variables: Programmatically manage non-sensitive configuration values scoped to the correct environment. - Secure Secret Requests: Pause execution and request API keys, tokens, or credentials directly from the user instead of hardcoding them. - Use Case: When building a feature that needs an OpenAI API key, first check if it exists with viewEnvVars, then request it from the user via requestEnvVar if missing, and set related config like MAX_TOKENS as a shared environment variable. ## Quick Start Ask the agent to check whether the OPENAI_API_KEY secret exists and request it from you if it is missing.