zeroclaw-labs/zeroclaw · error · anyhow::Error

cli-quickstart-could-not-finish

cli-quickstart-could-not-finish

Error message

quickstart could not finish: {$count} problem(s) to fix

What it means

Error "quickstart could not finish: {$count} problem(s) to fix" thrown in zeroclaw-labs/zeroclaw.

Source

Thrown at src/main.rs:2462

                "{}",
                t(
                    "cli-agent-not-created",
                    "Your agent was not created — and nothing on disk was changed."
                )
            );
            eprintln!(
                "{}",
                t(
                    "cli-quickstart-fix-and-rerun",
                    "Your existing config is untouched. Fix the following and run quickstart again:",
                )
            );
            eprintln!();
            for e in &errs {
                eprintln!("  • {}: {}", quickstart_step_label(e.step), e.message);
            }
            eprintln!();
            anyhow::bail!(
                "{}",
                qta(
                    "cli-quickstart-could-not-finish",
                    &[("count", &errs.len().to_string())],
                )
            )
        }
    }
}

#[cfg(feature = "agent-runtime")]
fn model_path_provider_type(path: &str) -> Option<&'static str> {
    let parts: Vec<&str> = path.split('.').collect();
    if parts.len() != 5 || parts[0] != "providers" || parts[1] != "models" || parts[4] != "model" {
        return None;
    }
    let family = parts[2];
    zeroclaw_providers::list_model_providers()

View on GitHub (pinned to 88bb9c8533)

Solutions

  1. Fix each problem listed by quickstart (missing keys, invalid values) and re-run `zeroclaw quickstart`.
  2. Set the reported configuration values manually with `zeroclaw config set` and verify with `zeroclaw doctor` or status.

When it happens

Trigger: Thrown at src/main.rs:2462 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of zeroclaw-labs/zeroclaw@88bb9c8533 (2026-08-23). Data as JSON: /api/errors/af7fabba487f587e. Report an issue: GitHub.