What problem does it solve? Some setup work—provisioning infrastructure, creating credentials, configuring CI secrets, navigating third-party dashboards—can only be done by a human, and re-explaining those steps every time is tedious and error-prone. This Skill turns any manual procedure into a step-by-step interactive bash wizard that opens the right URLs, captures values, and writes them where they belong. ## Core Features & Use Cases - Guided Stage-by-Stage Flow: A reusable bash library handles progress display, confirmation gates, cross-platform URL opening (including WSL), hidden secret entry, and a closing summary. - Automatic Value Persistence: Captured values are upserted idempotently into .env files and pushed to GitHub Actions secrets and variables via gh. - Use Case: You need to onboard a project to Stripe. The wizard opens the Stripe dashboard API keys page, prompts for the publishable and secret keys, writes both to .env, and sets the secret key as a GitHub Actions secret for CI. ## Quick Start Ask the agent to generate a wizard that walks a human through setting up Stripe API keys and storing them in .env and GitHub secrets.