What problem does it solve? Some setup work—provisioning infrastructure, creating credentials, configuring CI secrets, navigating third-party dashboards, running one-off migrations—can only be done by a human, and re-explaining the same steps to an AI every time is tedious and error-prone. This Skill turns those procedures into a reusable, step-by-step interactive bash script. ## Core Features & Use Cases - Guided stage-by-stage scripts: Generates a bash wizard from a fixed template with progress indicators, confirmation gates, cross-platform URL opening (including WSL), hidden secret entry, and a closing summary. - Value capture and persistence: Writes captured values idempotently into .env files and pushes CI secrets or variables to GitHub via gh secret/gh variable. - Scoped procedure planning: Reads the repo first (.env.example, workflows, docker-compose) to enumerate every required value before authoring stages, and confirms the plan with the user. - Use Case: You need a new teammate to set up Stripe keys locally and in CI. The Skill inspects your workflows for secrets.* references, then generates a wizard that opens the Stripe dashboard, captures the publishable and secret keys, writes them to .env, and sets the GitHub secret. ## Quick Start Ask the agent to generate a wizard that walks a human through setting up the third-party service credentials and CI secrets this project needs.