What problem does it solve? Manual setup procedures — third-party service configuration, one-off migrations, A-to-B state transitions — are tedious to perform by hand and tedious to re-explain every time. This Skill turns them into a guided bash script that opens each URL, tells the human exactly what to click and copy, captures the values, and writes them to .env files and GitHub Actions secrets. ## Core Features & Use Cases - Guided stage-by-stage UX: A reusable bash library provides progress with time-remaining estimates, confirmation gates, cross-platform URL opening (including WSL), hidden secret entry, and a closing summary. - Value capture and persistence: Idempotent .env upserts plus gh secret/gh variable writes, with graceful fallback warnings when the GitHub CLI is unavailable. - Scoped authoring workflow: The Skill reads the repo first (.env files, README, docker-compose, CI workflows) to enumerate every required value, then maps each stage's exact click path before authoring the script. - Use Case: A project needs Stripe keys, a database URL, and three CI secrets configured. The wizard opens each dashboard page in order, captures each value with hidden input where appropriate, writes them to .env, sets the GitHub secrets CI references, and prints a summary of anything left to do by hand. ## Quick Start Ask the AI to use the wizard skill to build a setup script that walks a new developer through configuring all third-party services and environment variables for this repository.