- Remove src/identity/ directory (aieos.rs, mod.rs) - Remove IdentityConfig struct and identity field from Config - Remove build_system_prompt_with_identity and load_aieos_from_config functions - Remove AIEOS-related imports from channels/mod.rs - Remove identity module declarations from main.rs and lib.rs - Remove AIEOS tests from config/schema.rs - Keep OpenClaw markdown-based identity as the only supported format This simplifies the codebase by removing unused AIEOS complexity. All 832 tests pass.
20 lines
471 B
Rust
20 lines
471 B
Rust
#![warn(clippy::all, clippy::pedantic)]
|
|
#![allow(
|
|
clippy::missing_errors_doc,
|
|
clippy::missing_panics_doc,
|
|
clippy::unnecessary_literal_bound,
|
|
clippy::module_name_repetitions,
|
|
clippy::struct_field_names,
|
|
clippy::must_use_candidate,
|
|
clippy::new_without_default,
|
|
clippy::return_self_not_must_use,
|
|
dead_code
|
|
)]
|
|
|
|
pub mod config;
|
|
pub mod heartbeat;
|
|
pub mod memory;
|
|
pub mod observability;
|
|
pub mod providers;
|
|
pub mod runtime;
|
|
pub mod security;
|