fix: 深度审计修复 — WASM 安全加固 + A2A 编译路径 + 测试编译
Some checks failed
CI / Lint & TypeCheck (push) Has been cancelled
CI / Unit Tests (push) Has been cancelled
CI / Build Frontend (push) Has been cancelled
CI / Rust Check (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled

CRITICAL:
- zclaw_file_read: 路径遍历修复 — 组件级过滤替代前缀检查
- zclaw_http_fetch: SSRF 防护 — URL scheme 白名单 + 私有IP段阻止
- Phase 4A: 移除 zclaw-protocols a2a feature gate, A2A 始终编译
- 移除 kernel/desktop multi-agent feature (不再控制任何代码)

MEDIUM:
- user_profiler: FactCategory cfg(test) 导入修复 (563 测试全通过)
This commit is contained in:
iven
2026-04-18 09:11:15 +08:00
parent 0522f2bf95
commit 4e4eefdde1
6 changed files with 66 additions and 17 deletions

View File

@@ -16,9 +16,7 @@ crate-type = ["staticlib", "cdylib", "rlib"]
tauri-build = { version = "2", features = [] }
[features]
default = ["multi-agent"]
# Multi-agent orchestration (A2A protocol, Director, agent delegation)
multi-agent = ["zclaw-kernel/multi-agent"]
default = []
dev-server = ["dep:axum", "dep:tower-http"]
[dependencies]

View File

@@ -10,6 +10,8 @@ use std::sync::Arc;
use chrono::Utc;
use tracing::{debug, warn};
use zclaw_memory::fact::Fact;
#[cfg(test)]
use zclaw_memory::fact::FactCategory;
use zclaw_memory::user_profile_store::{
CommStyle, Level, UserProfile, UserProfileStore,
};