Hello, this is my first post. Please forgive if I didn’t tag this properly. I’m trying to submit a possible “bug report” for dbt Wizard CLI setup.
The problem I’m having
During intial setup with dbt Wizard CLI, I try to configure Snowflake provider. When it prompts for Snowflake API key and I paste it, dbt Wizard closes and returns me to Powershell prompt with no additional feedback, a “silent failure” of sorts.
The context of why I’m trying to do this
dbt Wizard CLI setup, configuring Snowflake provider
What I’ve already tried
GitHub Copilot provided a manual workaround to configure the provider and key. This worked and Snowflake provider is now configured.
Recommended workaround (reliable path)
- Skip the initial setup screen for now.
- Configure Snowflake directly with provider commands:
- Enter key:
$key = Read-Host “Paste Snowflake API key”
$key | wizard providers set-key snowflake - Set Snowflake account id:
wizard providers snowflake set-account-id YOUR_ACCOUNT_ID - Enable provider:
wizard providers enable snowflake - Verify:
wizard providers list
- Enter key:
If I perform these steps and then get back into wizard, initial setup continues with success and I’m able to query Snowflake data.
Other info
- Product: dbt Wizard
- Version: 0.1.1-beta.61
- OS + terminal: Windows + VS Code integrated PowerShell
- Symptom: entering Snowflake API key in setup screen immediately returns to shell with no error text
- Expected: key should be accepted and setup should continue
- Repro steps:
- Launch wizard
- Enter setup flow
- Choose Snowflake
- Paste API key and press Enter
- Observe immediate return to prompt, no feedback
- Workaround that succeeds:
- wizard login
- wizard providers set-key snowflake
- wizard providers snowflake set-account-id stuller-prod
- wizard providers enable snowflake
- Snowflake queries then work
- Impact:
- blocks first-run onboarding
- appears as silent failure, difficult to self-diagnose