Wizard CLI
If no subcommand is specified, options will be forwarded to the interactive CLI.
dbt-wizard [OPTIONS] <COMMAND> [ARGS]
Arguments:
| Argument | Description |
|---|
[PROMPT] | Optional user prompt to start the session |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
--remote <ADDR> | — | Connect the TUI to a remote app server endpoint. |
--remote-auth-token-env <ENV_VAR> | — | Name of the environment variable containing the bearer token to send to a remote app server websocket |
--strict-config | — | Error out when config.toml contains fields that are not recognized by this version of wizard |
-i, --image <FILE>... | — | Optional image(s) to attach to the initial prompt |
-m, --model <MODEL> | — | Model the agent should use |
--oss | — | Use open-source provider |
--local-provider <OSS_PROVIDER> | — | Specify which local provider to use (lmstudio or ollama). If not specified with --oss, will use config default or show selection |
-p, --profile <CONFIG_PROFILE> | — | Configuration profile from config.toml to specify default options |
--profile-v2 <CONFIG_PROFILE_V2> | — | Layer $DBT_WIZARD_HOME/<name>.config.toml on top of the base user config |
-s, --sandbox <SANDBOX_MODE> | — | Select the sandbox policy to use when executing model-generated shell commands |
--dangerously-bypass-approvals-and-sandbox | — | Skip all confirmation prompts and execute commands without sandboxing. EXTREMELY DANGEROUS. Intended solely for running in environments that are externally sandboxed |
--dangerously-bypass-hook-trust | — | Run enabled hooks without requiring persisted hook trust for this invocation. DANGEROUS. Intended only for automation that already vets hook sources |
-C, --cd <DIR> | — | Tell the agent to use the specified directory as its working root |
--add-dir <DIR> | — | Additional directories that should be writable alongside the primary workspace |
-a, --ask-for-approval <APPROVAL_POLICY> | — | Configure when the model requires human approval before executing a command |
--search | — | Enable live web search. When enabled, the native Responses web_search tool is available to the model (no per‑call approval) |
--no-alt-screen | — | Disable alternate screen mode |
-h, --help | — | Print help (see a summary with '-h') |
-V, --version | — | Print version |
Run Wizard non-interactively
dbt-wizard exec [OPTIONS] <COMMAND> [ARGS]
Arguments:
| Argument | Description |
|---|
[PROMPT] | Initial instructions for the agent. If not provided as an argument (or if - is used), instructions are read from stdin. If stdin is piped and a prompt is also provided, stdin is appended as a <stdin> block |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
--strict-config | — | Error out when config.toml contains fields that are not recognized by this version of wizard |
-i, --image <FILE>... | — | Optional image(s) to attach to the initial prompt |
-m, --model <MODEL> | — | Model the agent should use |
--oss | — | Use open-source provider |
--local-provider <OSS_PROVIDER> | — | Specify which local provider to use (lmstudio or ollama). If not specified with --oss, will use config default or show selection |
-p, --profile <CONFIG_PROFILE> | — | Configuration profile from config.toml to specify default options |
--profile-v2 <CONFIG_PROFILE_V2> | — | Layer $DBT_WIZARD_HOME/<name>.config.toml on top of the base user config |
-s, --sandbox <SANDBOX_MODE> | — | Select the sandbox policy to use when executing model-generated shell commands |
--dangerously-bypass-approvals-and-sandbox | — | Skip all confirmation prompts and execute commands without sandboxing. EXTREMELY DANGEROUS. Intended solely for running in environments that are externally sandboxed |
--dangerously-bypass-hook-trust | — | Run enabled hooks without requiring persisted hook trust for this invocation. DANGEROUS. Intended only for automation that already vets hook sources |
-C, --cd <DIR> | — | Tell the agent to use the specified directory as its working root |
--add-dir <DIR> | — | Additional directories that should be writable alongside the primary workspace |
--skip-git-repo-check | — | Allow running wizard outside a Git repository |
--ephemeral | — | Run without persisting session files to disk |
--ignore-user-config | — | Do not load $DBT_WIZARD_HOME/config.toml; auth still uses DBT_WIZARD_HOME |
--ignore-rules | — | Do not load user or project execpolicy .rules files |
--output-schema <FILE> | — | Path to a JSON Schema file describing the model's final response shape |
--color <COLOR> | — | Specifies color settings for use in the output |
--json | — | Print events to stdout as JSONL |
-o, --output-last-message <FILE> | — | Specifies file where the last message from the agent should be written |
-h, --help | — | Print help (see a summary with '-h') |
-V, --version | — | Print version |
Resume a previous session by id or pick the most recent with --last
Arguments:
| Argument | Description |
|---|
[SESSION_ID] | Conversation/session id (UUID) or thread name. UUIDs take precedence if it parses. If omitted, use --last to pick the most recent recorded session |
[PROMPT] | Prompt to send after resuming the session. If - is used, read from stdin |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--last | — | Resume the most recent recorded session (newest) without specifying an id |
--all | — | Show all sessions (disables cwd filtering) |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-i, --image <FILE> | — | Optional image(s) to attach to the prompt sent after resuming |
--strict-config | — | Error out when config.toml contains fields that are not recognized by this version of wizard |
-m, --model <MODEL> | — | Model the agent should use |
--dangerously-bypass-approvals-and-sandbox | — | Skip all confirmation prompts and execute commands without sandboxing. EXTREMELY DANGEROUS. Intended solely for running in environments that are externally sandboxed |
--dangerously-bypass-hook-trust | — | Run enabled hooks without requiring persisted hook trust for this invocation. DANGEROUS. Intended only for automation that already vets hook sources |
--skip-git-repo-check | — | Allow running wizard outside a Git repository |
--ephemeral | — | Run without persisting session files to disk |
--ignore-user-config | — | Do not load $DBT_WIZARD_HOME/config.toml; auth still uses DBT_WIZARD_HOME |
--ignore-rules | — | Do not load user or project execpolicy .rules files |
--output-schema <FILE> | — | Path to a JSON Schema file describing the model's final response shape |
--json | — | Print events to stdout as JSONL |
-o, --output-last-message <FILE> | — | Specifies file where the last message from the agent should be written |
-h, --help | — | Print help (see a summary with '-h') |
Run a code review against the current repository
Arguments:
| Argument | Description |
|---|
[PROMPT] | Custom review instructions. If - is used, read from stdin |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--uncommitted | — | Review staged, unstaged, and untracked changes |
--base <BRANCH> | — | Review changes against the given base branch |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--commit <SHA> | — | Review the changes introduced by a commit |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
--strict-config | — | Error out when config.toml contains fields that are not recognized by this version of wizard |
--title <TITLE> | — | Optional commit title to display in the review summary |
-m, --model <MODEL> | — | Model the agent should use |
--dangerously-bypass-approvals-and-sandbox | — | Skip all confirmation prompts and execute commands without sandboxing. EXTREMELY DANGEROUS. Intended solely for running in environments that are externally sandboxed |
--dangerously-bypass-hook-trust | — | Run enabled hooks without requiring persisted hook trust for this invocation. DANGEROUS. Intended only for automation that already vets hook sources |
--skip-git-repo-check | — | Allow running wizard outside a Git repository |
--ephemeral | — | Run without persisting session files to disk |
--ignore-user-config | — | Do not load $DBT_WIZARD_HOME/config.toml; auth still uses DBT_WIZARD_HOME |
--ignore-rules | — | Do not load user or project execpolicy .rules files |
--output-schema <FILE> | — | Path to a JSON Schema file describing the model's final response shape |
--json | — | Print events to stdout as JSONL |
-o, --output-last-message <FILE> | — | Specifies file where the last message from the agent should be written |
-h, --help | — | Print help (see a summary with '-h') |
Run a code review non-interactively
Arguments:
| Argument | Description |
|---|
[PROMPT] | Custom review instructions. If - is used, read from stdin |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--strict-config | — | Error out when config.toml contains fields that are not recognized by this version of Wizard |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--uncommitted | — | Review staged, unstaged, and untracked changes |
--base <BRANCH> | — | Review changes against the given base branch |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
--commit <SHA> | — | Review the changes introduced by a commit |
--title <TITLE> | — | Optional commit title to display in the review summary |
-h, --help | — | Print help (see a summary with '-h') |
Manage login
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Show login status
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Remove stored authentication credentials
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Manage external MCP servers for Wizard
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--json | — | Output the configured servers as JSON |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Arguments:
| Argument | Description |
|---|
<NAME> | Name of the MCP server to display |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--json | — | Output the server configuration as JSON |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Arguments:
| Argument | Description |
|---|
<NAME> | Name for the MCP server configuration |
[COMMAND]... | Command to launch the MCP server. Use --url for a streamable HTTP server |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--env <KEY=VALUE> | — | Environment variables to set when launching the server. Only valid with stdio servers |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--url <URL> | — | URL for a streamable HTTP MCP server |
--bearer-token-env-var <ENV_VAR> | — | Optional environment variable to read for a bearer token. Only valid with streamable HTTP servers |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Arguments:
| Argument | Description |
|---|
<NAME> | Name of the MCP server configuration to remove |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Arguments:
| Argument | Description |
|---|
<NAME> | Name of the MCP server to authenticate with oauth |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--scopes <SCOPE,SCOPE> | — | Comma-separated list of OAuth scopes to request |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Arguments:
| Argument | Description |
|---|
<NAME> | Name of the MCP server to deauthenticate |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Manage Wizard plugins
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Install a plugin from a configured marketplace snapshot.
Pass either PLUGIN@MARKETPLACE or pass PLUGIN with --marketplace MARKETPLACE.
Arguments:
| Argument | Description |
|---|
<PLUGIN[@MARKETPLACE]> | Plugin selector to install: either PLUGIN@MARKETPLACE or PLUGIN with --marketplace |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
-m, --marketplace <MARKETPLACE> | — | Configured marketplace name to use when PLUGIN does not include @MARKETPLACE |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
List plugins available from configured marketplace snapshots
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
-m, --marketplace <MARKETPLACE> | — | Only list plugins from this configured marketplace name |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Add, list, upgrade, or remove configured plugin marketplaces
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Add a local or Git marketplace to the configured marketplace sources
Arguments:
| Argument | Description |
|---|
<SOURCE> | Marketplace source: a local path, owner/repo[@ref], HTTPS Git URL, or SSH Git URL |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--ref <REF> | — | Git ref to fetch for Git marketplace sources |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--sparse <PATH> | — | Sparse checkout path for Git marketplace sources. Can be repeated |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
List configured marketplace names and their local snapshot roots
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Refresh configured Git marketplace snapshots.
Omit MARKETPLACE_NAME to upgrade all configured Git marketplaces.
Arguments:
| Argument | Description |
|---|
[MARKETPLACE_NAME] | Optional configured marketplace name to upgrade. Omit to upgrade all Git marketplaces |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Remove a configured marketplace source by name
Arguments:
| Argument | Description |
|---|
<MARKETPLACE_NAME> | Configured marketplace name to remove |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Remove an installed plugin from local config and cache.
Pass either PLUGIN@MARKETPLACE or pass PLUGIN with --marketplace MARKETPLACE.
Arguments:
| Argument | Description |
|---|
<PLUGIN[@MARKETPLACE]> | Plugin selector to remove: either PLUGIN@MARKETPLACE or PLUGIN with --marketplace |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
-m, --marketplace <MARKETPLACE> | — | Marketplace name to use when PLUGIN does not include @MARKETPLACE |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Manage model providers
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
List configured model providers
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Show one provider's non-secret configuration
Arguments:
| Argument | Description |
|---|
<PROVIDER> | |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Enable a provider
Arguments:
| Argument | Description |
|---|
<PROVIDER> | |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Disable a provider
Arguments:
| Argument | Description |
|---|
<PROVIDER> | |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Interactively configure a provider
Arguments:
| Argument | Description |
|---|
[PROVIDER] | Provider to configure. Prompts when omitted |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Store a provider API key/token in provider-auth.json. Reads the secret from stdin
Arguments:
| Argument | Description |
|---|
<PROVIDER> | |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Remove a provider API key/token from provider-auth.json
Arguments:
| Argument | Description |
|---|
<PROVIDER> | |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Route a BYOK provider through a remote OpenAI-compatible/LiteLLM gateway
Arguments:
| Argument | Description |
|---|
<PROVIDER> | |
| Flag | Default | Description |
|---|
--base-url <BASE_URL> | — | |
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--token-source <TOKEN_SOURCE> | — | |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Remove a provider route override, returning it to local LiteLLM
Arguments:
| Argument | Description |
|---|
<PROVIDER> | |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Add or update a provider model alias
Arguments:
| Argument | Description |
|---|
<PROVIDER> | |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--id <ID> | — | |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--target <TARGET> | — | |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Remove a provider model alias
Arguments:
| Argument | Description |
|---|
<PROVIDER> | |
<ID> | |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Bedrock-specific provider settings
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Set the AWS region used by local LiteLLM
Arguments:
| Argument | Description |
|---|
<REGION> | |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Set the AWS profile used by local LiteLLM
Arguments:
| Argument | Description |
|---|
<PROFILE> | |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Placeholder for explicit Bedrock discovery/setup
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Azure OpenAI-specific provider settings
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Set the Azure OpenAI endpoint used by local LiteLLM
Arguments:
| Argument | Description |
|---|
<ENDPOINT> | |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Set the Azure OpenAI API version used by local LiteLLM
Arguments:
| Argument | Description |
|---|
<VERSION> | |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Snowflake Cortex-specific provider settings
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Set the Snowflake account ID used by local LiteLLM
Arguments:
| Argument | Description |
|---|
<ACCOUNT_ID> | |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Set the Snowflake API base override used by local LiteLLM
Arguments:
| Argument | Description |
|---|
<API_BASE> | |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Clear the Snowflake API base override, deriving it from the account ID
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Start Wizard as an MCP server (stdio)
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--strict-config | — | Error out when config.toml contains fields that are not recognized by this version of Wizard |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
[experimental] Run the app server or related tooling
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
--strict-config | — | Error out when config.toml contains fields that are not recognized by this version of Wizard |
--listen <URL> | — | Transport endpoint URL. Supported values: stdio:// (default), unix://, unix://PATH, ws://IP:PORT, off |
--analytics-default-enabled | — | Controls whether analytics are enabled by default. |
--ws-auth <MODE> | — | Websocket auth mode for non-loopback listeners |
--ws-token-file <PATH> | — | Absolute path to the capability-token file |
--ws-token-sha256 <HEX> | — | Hex-encoded SHA-256 digest of the capability token |
--ws-shared-secret-file <PATH> | — | Absolute path to the shared secret file for signed JWT bearer tokens |
--ws-issuer <ISSUER> | — | Expected issuer for signed JWT bearer tokens |
--ws-audience <AUDIENCE> | — | Expected audience for signed JWT bearer tokens |
--ws-max-clock-skew-seconds <SECONDS> | — | Maximum clock skew when validating signed JWT bearer tokens |
-h, --help | — | Print help (see a summary with '-h') |
Manage the local app-server daemon
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Install durable local app-server management for SSH-driven use
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--remote-control | — | Launch the managed app-server with remote control enabled |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Start the local app server daemon if it is not already running
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Restart the local app server daemon
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Enable remote control for future starts and a currently running managed daemon
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Disable remote control for future starts and a currently running managed daemon
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Stop the local app server daemon
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Print local CLI and running app-server versions as JSON
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Proxy stdio bytes to the running app-server control socket
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--sock <SOCKET_PATH> | — | Path to the app-server Unix domain socket to connect to |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
[experimental] Generate TypeScript bindings for the app server protocol
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
-o, --out <DIR> | — | Output directory where .ts files will be written |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
-p, --prettier <PRETTIER_BIN> | — | Optional path to the Prettier executable to format generated files |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
--experimental | — | Include experimental methods and fields in the generated output |
-h, --help | — | Print help (see a summary with '-h') |
[experimental] Generate JSON Schema for the app server protocol
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
-o, --out <DIR> | — | Output directory where the schema bundle will be written |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--experimental | — | Include experimental methods and fields in the generated output |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
[experimental] Manage the app-server daemon with remote control enabled
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--json | — | Emit machine-readable JSON |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Start the app-server daemon with remote control enabled
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--json | — | Emit machine-readable JSON |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Stop the app-server daemon
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--json | — | Emit machine-readable JSON |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Launch the Wizard desktop app (opens the app installer if missing)
Arguments:
| Argument | Description |
|---|
[PATH] | Workspace path to open in Wizard Desktop |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--download-url <DOWNLOAD_URL_OVERRIDE> | — | Override the app installer download URL (advanced) |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Generate shell completion scripts
Arguments:
| Argument | Description |
|---|
[SHELL] | Shell to generate completions for |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Update Wizard to the latest version
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Diagnose local Wizard installation, config, auth, and runtime health
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--json | — | Emit a redacted machine-readable report |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--summary | — | Only show grouped check rows and the final count summary |
--all | — | Expand long lists in detailed human output |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
--no-color | — | Disable ANSI color in human output |
--ascii | — | Use ASCII status labels and separators in human output |
-h, --help | — | Print help (see a summary with '-h') |
Run commands within a Wizard-provided sandbox
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Run a command under Seatbelt (macOS only)
Arguments:
| Argument | Description |
|---|
[COMMAND]... | Full command args to run under seatbelt |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--permissions-profile <NAME> | — | Named permissions profile to apply from the active configuration stack |
-C, --cd <DIR> | — | Working directory used for profile resolution and command execution |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
--include-managed-config | — | Include managed requirements while resolving an explicit permissions profile |
--allow-unix-socket <ALLOW_UNIX_SOCKETS> | — | Allow the sandboxed command to bind/connect AF_UNIX sockets rooted at this path. Relative paths are resolved against the current directory. Repeat to allow multiple paths |
--log-denials | — | While the command runs, capture macOS sandbox denials via log stream and print them after exit |
-h, --help | — | Print help (see a summary with '-h') |
Run a command under the Linux sandbox (bubblewrap by default)
Arguments:
| Argument | Description |
|---|
[COMMAND]... | Full command args to run under the Linux sandbox |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--permissions-profile <NAME> | — | Named permissions profile to apply from the active configuration stack |
-C, --cd <DIR> | — | Working directory used for profile resolution and command execution |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
--include-managed-config | — | Include managed requirements while resolving an explicit permissions profile |
-h, --help | — | Print help (see a summary with '-h') |
Run a command under Windows restricted token (Windows only)
Arguments:
| Argument | Description |
|---|
[COMMAND]... | Full command args to run under Windows restricted token sandbox |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--permissions-profile <NAME> | — | Named permissions profile to apply from the active configuration stack |
-C, --cd <DIR> | — | Working directory used for profile resolution and command execution |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
--include-managed-config | — | Include managed requirements while resolving an explicit permissions profile |
-h, --help | — | Print help (see a summary with '-h') |
Debugging tools
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Render the raw model catalog as JSON
| Flag | Default | Description |
|---|
--bundled | — | Skip refresh and dump only the bundled catalog shipped with this binary |
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Tooling: helps debug the app server
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Arguments:
| Argument | Description |
|---|
<USER_MESSAGE> | |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Render the model-visible prompt input list as JSON
Arguments:
| Argument | Description |
|---|
[PROMPT] | Optional user prompt to append after session context |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
-i, --image <FILE>... | — | Optional image(s) to attach to the user prompt |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Apply the latest diff produced by Wizard agent as a git apply to your local working tree
Arguments:
| Argument | Description |
|---|
<TASK_ID> | |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Resume a previous interactive session (picker by default; use --last to continue the most recent)
Arguments:
| Argument | Description |
|---|
[SESSION_ID] | Conversation/session id (UUID) or thread name. UUIDs take precedence if it parses. If omitted, use --last to pick the most recent recorded session |
[PROMPT] | Optional user prompt to start the session |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--last | — | Continue the most recent session without showing the picker |
--all | — | Show all sessions (disables cwd filtering and shows CWD column) |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
--include-non-interactive | — | Include non-interactive sessions in the resume picker and --last selection |
--remote <ADDR> | — | Connect the TUI to a remote app server endpoint. |
--remote-auth-token-env <ENV_VAR> | — | Name of the environment variable containing the bearer token to send to a remote app server websocket |
--strict-config | — | Error out when config.toml contains fields that are not recognized by this version of wizard |
-i, --image <FILE>... | — | Optional image(s) to attach to the initial prompt |
-m, --model <MODEL> | — | Model the agent should use |
--oss | — | Use open-source provider |
--local-provider <OSS_PROVIDER> | — | Specify which local provider to use (lmstudio or ollama). If not specified with --oss, will use config default or show selection |
-p, --profile <CONFIG_PROFILE> | — | Configuration profile from config.toml to specify default options |
--profile-v2 <CONFIG_PROFILE_V2> | — | Layer $DBT_WIZARD_HOME/<name>.config.toml on top of the base user config |
-s, --sandbox <SANDBOX_MODE> | — | Select the sandbox policy to use when executing model-generated shell commands |
--dangerously-bypass-approvals-and-sandbox | — | Skip all confirmation prompts and execute commands without sandboxing. EXTREMELY DANGEROUS. Intended solely for running in environments that are externally sandboxed |
--dangerously-bypass-hook-trust | — | Run enabled hooks without requiring persisted hook trust for this invocation. DANGEROUS. Intended only for automation that already vets hook sources |
-C, --cd <DIR> | — | Tell the agent to use the specified directory as its working root |
--add-dir <DIR> | — | Additional directories that should be writable alongside the primary workspace |
-a, --ask-for-approval <APPROVAL_POLICY> | — | Configure when the model requires human approval before executing a command |
--search | — | Enable live web search. When enabled, the native Responses web_search tool is available to the model (no per‑call approval) |
--no-alt-screen | — | Disable alternate screen mode |
-h, --help | — | Print help (see a summary with '-h') |
-V, --version | — | Print version |
Fork a previous interactive session (picker by default; use --last to fork the most recent)
Arguments:
| Argument | Description |
|---|
[SESSION_ID] | Conversation/session id (UUID). When provided, forks this session. If omitted, use --last to pick the most recent recorded session |
[PROMPT] | Optional user prompt to start the session |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--last | — | Fork the most recent session without showing the picker |
--all | — | Show all sessions (disables cwd filtering and shows CWD column) |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
--remote <ADDR> | — | Connect the TUI to a remote app server endpoint. |
--remote-auth-token-env <ENV_VAR> | — | Name of the environment variable containing the bearer token to send to a remote app server websocket |
--strict-config | — | Error out when config.toml contains fields that are not recognized by this version of wizard |
-i, --image <FILE>... | — | Optional image(s) to attach to the initial prompt |
-m, --model <MODEL> | — | Model the agent should use |
--oss | — | Use open-source provider |
--local-provider <OSS_PROVIDER> | — | Specify which local provider to use (lmstudio or ollama). If not specified with --oss, will use config default or show selection |
-p, --profile <CONFIG_PROFILE> | — | Configuration profile from config.toml to specify default options |
--profile-v2 <CONFIG_PROFILE_V2> | — | Layer $DBT_WIZARD_HOME/<name>.config.toml on top of the base user config |
-s, --sandbox <SANDBOX_MODE> | — | Select the sandbox policy to use when executing model-generated shell commands |
--dangerously-bypass-approvals-and-sandbox | — | Skip all confirmation prompts and execute commands without sandboxing. EXTREMELY DANGEROUS. Intended solely for running in environments that are externally sandboxed |
--dangerously-bypass-hook-trust | — | Run enabled hooks without requiring persisted hook trust for this invocation. DANGEROUS. Intended only for automation that already vets hook sources |
-C, --cd <DIR> | — | Tell the agent to use the specified directory as its working root |
--add-dir <DIR> | — | Additional directories that should be writable alongside the primary workspace |
-a, --ask-for-approval <APPROVAL_POLICY> | — | Configure when the model requires human approval before executing a command |
--search | — | Enable live web search. When enabled, the native Responses web_search tool is available to the model (no per‑call approval) |
--no-alt-screen | — | Disable alternate screen mode |
-h, --help | — | Print help (see a summary with '-h') |
-V, --version | — | Print version |
[EXPERIMENTAL] Browse tasks from Wizard Cloud and apply changes locally
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
-V, --version | — | Print version |
Submit a new wizard cloud task without launching the TUI
Arguments:
| Argument | Description |
|---|
[QUERY] | Task prompt to run in wizard cloud |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--env <ENV_ID> | — | Target environment identifier (see wizard cloud to browse) |
--attempts <ATTEMPTS> | — | Number of assistant attempts (best-of-N) |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--branch <BRANCH> | — | Git branch to run in wizard cloud (defaults to current branch) |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Show the status of a wizard cloud task
Arguments:
| Argument | Description |
|---|
<TASK_ID> | wizard cloud task identifier to inspect |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
List wizard cloud tasks
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--env <ENV_ID> | — | Filter tasks by environment identifier |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--limit <N> | — | Maximum number of tasks to return (1-20) |
--cursor <CURSOR> | — | Pagination cursor returned by a previous call |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
--json | — | Emit JSON instead of plain text |
-h, --help | — | Print help (see a summary with '-h') |
Apply the diff for a wizard cloud task locally
Arguments:
| Argument | Description |
|---|
<TASK_ID> | wizard cloud task identifier to apply |
| Flag | Default | Description |
|---|
--attempt <N> | — | Attempt number to apply (1-based) |
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Show the unified diff for a wizard cloud task
Arguments:
| Argument | Description |
|---|
<TASK_ID> | wizard cloud task identifier to display |
| Flag | Default | Description |
|---|
--attempt <N> | — | Attempt number to display (1-based) |
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
[EXPERIMENTAL] Run the standalone exec-server service
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--listen <URL> | — | Transport endpoint URL. Supported values: ws://IP:PORT (default), stdio, stdio:// |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--remote <URL> | — | Register this exec-server as a remote environment using the given base URL |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
--environment-id <ID> | — | Environment id to attach to when registering remotely |
--name <NAME> | — | Human-readable environment name |
--use-agent-identity-auth | — | Use Agent Identity auth from DBT_WIZARD_ACCESS_TOKEN for remote registration |
-h, --help | — | Print help (see a summary with '-h') |
Inspect feature flags
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
List known features with their stage and effective state
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Enable a feature in config.toml
Arguments:
| Argument | Description |
|---|
<FEATURE> | Feature key to update (for example: unified_exec) |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |
Disable a feature in config.toml
Arguments:
| Argument | Description |
|---|
<FEATURE> | Feature key to update (for example: unified_exec) |
| Flag | Default | Description |
|---|
-c, --config <key=value> | — | Override a configuration value that would otherwise be loaded from ~/.dbt/wizard/config.toml. Use a dotted path (foo.bar.baz) to override nested values. The value portion is parsed as TOML. If it fails to parse as TOML, the raw string is used as a literal. |
--enable <FEATURE> | — | Enable a feature (repeatable). Equivalent to -c features.<name>=true |
--disable <FEATURE> | — | Disable a feature (repeatable). Equivalent to -c features.<name>=false |
-h, --help | — | Print help (see a summary with '-h') |