feat: refactor sgclaw around zeroclaw compat runtime

This commit is contained in:
zyl
2026-03-26 16:23:31 +08:00
parent bca5b75801
commit ff0771a83f
1059 changed files with 409460 additions and 23 deletions

27
third_party/zeroclaw/src/onboard/mod.rs vendored Normal file
View File

@@ -0,0 +1,27 @@
pub mod wizard;
// Re-exported for CLI and external use
#[allow(unused_imports)]
pub use wizard::{
run_channels_repair_wizard, run_models_list, run_models_refresh, run_models_refresh_all,
run_models_set, run_models_status, run_quick_setup, run_wizard,
};
#[cfg(test)]
mod tests {
use super::*;
fn assert_reexport_exists<F>(_value: F) {}
#[test]
fn wizard_functions_are_reexported() {
assert_reexport_exists(run_channels_repair_wizard);
assert_reexport_exists(run_quick_setup);
assert_reexport_exists(run_wizard);
assert_reexport_exists(run_models_refresh);
assert_reexport_exists(run_models_list);
assert_reexport_exists(run_models_set);
assert_reexport_exists(run_models_status);
assert_reexport_exists(run_models_refresh_all);
}
}

7636
third_party/zeroclaw/src/onboard/wizard.rs vendored Normal file

File diff suppressed because it is too large Load Diff