What problem does it solve? Manual multi-step setup procedures — third-party service configuration, one-off migrations, environment bootstrapping — are tedious to re-explain and easy to get wrong, because humans silently skip action-only steps that produce no value to paste. This Skill turns a verified procedure into an executable bash wizard that opens each URL, says exactly what to click and copy, captures values into .env, and blocks on skipped steps. ## Core Features & Use Cases - Guided stage authoring: Scope a procedure into ordered stages using a pre-built template.sh library with progress display, time-remaining estimates, hidden secret entry, cross-platform URL opening, and idempotent .env upserts. - Skipped-step controls: Gate action-only steps (like running a SQL schema) behind confirm loops so the wizard cannot advance until the step is verifiably done. - Solo-default targeting: Writes values to a local .env by default and wires GitHub Actions secrets via gh only when the repo's workflows actually reference them. - Use Case: Convert a Next.js + Supabase README setup list into a wizard that collects API keys, forces the schema-migration step everyone skips, and leaves a runnable local environment. ## Quick Start Turn the manual setup steps in this repo's README into an interactive bash wizard that captures each value into .env and confirms every stage.