What problem does it solve? Some setup steps cannot be automated by an agent: creating credentials, adding CI secrets, configuring third-party dashboards, provisioning services, or performing migrations and cutovers. This Skill generates a guided Bash wizard that walks one human through those manual procedures step by step. ## Core Features & Use Cases - Stage-Based Wizard Generation: Authors ordered stages below a STAGES marker in a reusable Bash template, using helpers like say, step, open_url, ask, ask_secret, write_env, set_secret, set_var, pause, and confirm. - Secret and Environment Capture: Opens the correct pages, captures pasted values with hidden input for secrets, writes .env entries, and sets GitHub secrets and variables matching workflow secrets.* references. - Static Verification: Validates generated scripts with bash -n and ShellCheck, traces every captured value to its write target, and places disposable wizards in .red/tmp/scratch/ or maintained ones in scripts/setup-<slug>.sh. - Use Case: When onboarding a project requires creating API tokens in a third-party dashboard and adding them to GitHub Actions secrets, generate a wizard that opens each page, prompts for each value, and persists everything in one guided run. ## Quick Start Ask the agent to generate a wizard for the manual setup steps in this project, such as collecting credentials and configuring GitHub secrets.