wizard

Generate interactive bash wizards that walk humans through manual setup procedures.

2|Updated Jul 24, 2026
One-click install
npx skills add https://github.com/konstantinos-malavazos/claude-code-playbook --skill wizard-konstantinos-malavazos
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wizard
Source: https://github.com/konstantinos-malavazos/claude-code-playbook/tree/main/templates/skills/wizard
Command: npx skills add https://github.com/konstantinos-malavazos/claude-code-playbook --skill wizard-konstantinos-malavazos

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Some work — provisioning infrastructure, creating credentials, configuring CI secrets, navigating third-party dashboards — can only be done by a human, and re-explaining the procedure every time is tedious and error-prone. This Skill generates a step-by-step interactive bash script that walks the human through exactly that manual procedure. ## Core Features & Use Cases - Guided stage-by-stage scripts: Generates a bash wizard from a shared template with stage progress, confirmation gates, cross-platform URL opening, hidden secret entry, and a closing summary. - Credential and environment capture: Captures values via prompts, upserts them idempotently into .env files, and pushes CI secrets and variables to GitHub via gh. - Repo-scoped planning: Derives the required stages from the repository itself — .env.example, README, docker-compose, and every secrets.* / vars.* reference in CI workflows. - Use Case: A new service needs Stripe keys, a database URL, and three GitHub Actions secrets. The Skill reads the repo, produces a wizard script that opens each dashboard, tells the human what to click and copy, stores the values, and verifies every CI secret name matches. ## Quick Start Ask the AI to use the wizard skill to generate a setup script that walks you through configuring the credentials and CI secrets this repository needs.

Frequently Asked Questions about wizard

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create an interactive bash setup script for manual configuration steps?

Use the wizard skill to generate a bash script from its template.sh library. It scopes the required stages from your repository files, then authors one stage per manual step with prompts, URL opening, and confirmation gates.

How do I automate collecting API keys and writing them to .env and GitHub secrets?

The generated wizard prompts for each value with ask or ask_secret, upserts it into a .env file with write_env, and pushes CI secrets using gh secret set. Secret input is hidden and nothing is hardcoded into the script.

When should I use a wizard script instead of letting an AI agent do the setup?

Use a wizard only when the blocking work is manual — clicking through a dashboard, creating credentials, or performing an irreversible migration. If an agent can perform the step itself, a wizard adds unnecessary human overhead.

Does the wizard script store secrets in the generated file?

No. Secrets are entered at run time through hidden prompts and land in .env or the GitHub secret store. The script itself never contains captured values, so it is safe to commit if you want a repeatable setup path.

Can the wizard run itself end to end after generation?

No. The wizard opens browser URLs and blocks on human input, so it is verified statically with bash -n and shellcheck instead. Running it is always the human's responsibility.