What problem does it solve? Managing API keys, passwords, and other sensitive configuration for FuseBase app backends without committing them to source control or relying on local .env files. ## Core Features & Use Cases - CLI Secret Registration: Register secret keys with descriptions using fusebase secret create, which updates fusebase.json and registers keys on the platform at deploy time. - Runtime Injection: Secrets are injected as environment variables into the backend process and read via process.env, with fail-fast startup validation patterns. - Local Development Parity: fusebase dev start downloads the same production secrets automatically, eliminating the need for dotenv or backend/.env files. - Use Case: A backend needs a Stripe secret key and an OpenAI API key. Register both with one CLI command, deploy to get the secrets URL, fill in values in the FuseBase UI, and access them via process.env in both dev and production. ## Quick Start Ask the AI to create the required secrets for your app backend using the fusebase secret create CLI command and show how to validate them at backend startup.