Hmbown/CodeWhale · error · anyhow::Error
the `{}` profile carries identity only after `{CLI_COMMAND}
Error message
the `{}` profile carries identity only after `{CLI_COMMAND} install-bundle` What it means
Error "the `{}` profile carries identity only after `{CLI_COMMAND} install-bundle`" thrown in Hmbown/CodeWhale.
Source
Thrown at crates/tui/src/integrations/dsh/mod.rs:663
let binary = report
.detection
.binary
.clone()
.ok_or_else(|| anyhow::anyhow!("dsh binary path is unknown"))?;
let bundle_installed = record.bundle.is_some();
let profile = profile_override.unwrap_or(if bundle_installed {
bundle::BUNDLE_PROFILE
} else {
record.profile.as_str()
});
if !matches!(profile, "web" | "headless") && profile != bundle::BUNDLE_PROFILE {
anyhow::bail!(
"DSH profile must be `web`, `headless`, or `{}` (bundle), got `{profile}`",
bundle::BUNDLE_PROFILE
);
}
if profile == bundle::BUNDLE_PROFILE && !bundle_installed {
anyhow::bail!(
"the `{}` profile carries identity only after `{CLI_COMMAND} install-bundle`",
bundle::BUNDLE_PROFILE
);
}
let mut args = vec!["--profile".to_string(), profile.to_string()];
if profile != bundle::BUNDLE_PROFILE {
// The dedicated bundle profile carries the identity itself; the
// shipped profiles get it through the overlay.
args.push("--patch".to_string());
args.push(report.overlay_path.display().to_string());
}
args.extend(extra_args.iter().cloned());
let provider_env_vars: Vec<String> =
record.identity.source.api_key_env.iter().cloned().collect();
let strip_env = launch_env_strip_list(
std::env::var("DEEPSEEK_API_KEY_SOURCE").ok().as_deref(),
&provider_env_vars,
);View on GitHub (pinned to 8880682c63)
When it happens
Trigger: Thrown at crates/tui/src/integrations/dsh/mod.rs:663 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of Hmbown/CodeWhale@8880682c63 (2026-08-16).
Data as JSON: /api/errors/0b38147d8f32ebe5.
Report an issue: GitHub.