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

This command requires the full runtime. Rebuild with default

Error message

This command requires the full runtime. Rebuild with default features:
  cargo build --release

What it means

Error "This command requires the full runtime. Rebuild with default features: cargo build --release" thrown in zeroclaw-labs/zeroclaw.

Source

Thrown at src/main.rs:3789

                                        break;
                                    }
                                }
                            };
                            let response =
                                zeroclaw_providers::ProviderDispatch::from_ref(&*model_provider)
                                    .simple_chat(line.trim(), model_name, Some(final_temperature))
                                    .await?;
                            println!("{response}");
                        }
                    }
                }
                return Ok(());
            }
            Commands::Completions { .. } | Commands::MarkdownHelp | Commands::MarkdownSchema => {
                unreachable!()
            }
            _ => {
                anyhow::bail!(
                    "This command requires the full runtime. Rebuild with default features:\n  cargo build --release"
                );
            }
        }
    }

    #[cfg(feature = "agent-runtime")]
    {
        zeroclaw_runtime::cron::scheduler::register_delivery_fn(Box::new(
            |config, channel, target, thread_id, output| {
                Box::pin(async move {
                    zeroclaw_channels::orchestrator::deliver_announcement(
                        &config, &channel, &target, thread_id, &output,
                    )
                    .await
                })
            },
        ));

View on GitHub (pinned to 88bb9c8533)

Solutions

  1. Rebuild with default features: `cargo build --release`.
  2. Use the officially distributed full binary instead of a minimal-feature build.

When it happens

Trigger: Thrown at src/main.rs:3789 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/91dcdb412ab8489a. Report an issue: GitHub.