Use when generating an interactive bash wizard to guide a human through manual operational steps that AI cannot perform (infrastructure provisioning, credential setup, third-party dashboard navigation, one-off migrations). Triggers on "wizard", "bash wizard", "passo a passo interativo", "guiar humano".
Scanned 9/19/2026
Install to Claude Code
npx -y skills add majinmagros/magros.ai-skills --skill setup-interactive-wizard --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Setup Interactive Wizard?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/majinmagros-setup-interactive-wizard)More formats (shields.io, HTML) on the badges page.
---
name: setup-interactive-wizard
description: Use when generating an interactive bash wizard to guide a human through manual operational steps that AI cannot perform (infrastructure provisioning, credential setup, third-party dashboard navigation, one-off migrations). Triggers on "wizard", "bash wizard", "passo a passo interativo", "guiar humano".
metadata:
origin: Matt Pocock / ECC
---
# Setup Interactive Wizard
Generate interactive shell scripts/wizards to guide operators through manual setup steps.
## Core Concepts
- **Human-in-the-Loop Operations**: Bridging the gap when agents lack access, API keys, or permissions to complete provisioning steps.
- **Guided Workflows**: Interactive terminal prompts ensuring correct sequence, validation, and error checking for manual tasks.
## Workflow
1. Identify steps requiring human intervention (credentials, cloud consoles, manual approvals).
2. Generate an executable script (Node/Bash) with prompts, validation checks, and progress indicators.
3. Run and verify completion before proceeding with automated agent loops.
## Quando Ativar
- Passo manual que a IA não pode executar (provisionamento, credenciais, dashboard externo, migração one-off)
- Usuário diz "wizard", "bash wizard", "passo a passo interativo", "guiar humano"
- Guiar operador por sequência com validação e checagem de erro no terminal
- Coletar secrets/aprovações antes de retomar loop automatizado
## Exemplo
```bash
#!/usr/bin/env bash
read -rp "API key do provider: " API_KEY
[[ -z "$API_KEY" ]] && { echo "key obrigatória"; exit 1; }
echo "[1/3] key recebida — abrindo dashboard para confirmar..."
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!