Low-level diagnostics, scans, adapter commands, and mapping tools.
Hidden commands for low-level project management, diagnostics, direct adapter control, and shell completion. Most users interact with these through higher-level commands like ktx ingest and ktx setup, but ktx dev provides direct access when you need fine-grained control.
# Initialize a new KTX projectktx dev init# Initialize in a specific directory with a project namektx dev init ./my-project --name "Analytics Context"# Re-initialize an existing projectktx dev init --force# Check project readinessktx dev doctor# Check CLI install readinessktx dev doctor setup# Run a low-level ingest with a specific adapterktx dev ingest run --connection-id my-dbt --adapter dbt# Run ingest from a specific source directoryktx dev ingest run \ --connection-id my-dbt \ --adapter dbt \ --source-dir ./dbt-project# View ingest status with the visual TUIktx dev ingest watch run-abc123# Replay a stored ingest sessionktx dev ingest replay run-abc123# View ingest status from a report filektx dev ingest status --report-file /tmp/ingest-report.json# Generate zsh completionsktx dev completion zsh# Install zsh completionsktx dev completion zsh --install