- Split zclaw-kernel/kernel.rs (1486 lines) into 9 domain modules - Split zclaw-kernel/generation.rs (1080 lines) into 3 modules - Add DeerFlow-inspired middleware: DanglingTool, SubagentLimit, ToolError, ToolOutputGuard - Add PromptBuilder for structured system prompt assembly - Add FactStore (zclaw-memory) for persistent fact extraction - Add task builtin tool for agent task management - Driver improvements: Anthropic/OpenAI extended thinking, Gemini safety settings - Replace let _ = with proper log::warn! across SaaS handlers - Remove unused dependency (url) from zclaw-hands
14 lines
256 B
Rust
14 lines
256 B
Rust
//! ZCLAW Memory Substrate
|
|
//!
|
|
//! SQLite-backed storage for agents, sessions, and memory.
|
|
|
|
mod store;
|
|
mod session;
|
|
mod schema;
|
|
pub mod fact;
|
|
|
|
pub use store::*;
|
|
pub use session::*;
|
|
pub use schema::*;
|
|
pub use fact::{Fact, FactCategory, ExtractedFactBatch};
|