fix(presentation): 修复 presentation 模块类型错误和语法问题
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

- 创建 types.ts 定义完整的类型系统
- 重写 DocumentRenderer.tsx 修复语法错误
- 重写 QuizRenderer.tsx 修复语法错误
- 重写 PresentationContainer.tsx 添加类型守卫
- 重写 TypeSwitcher.tsx 修复类型引用
- 更新 index.ts 移除不存在的 ChartRenderer 导出

审计结果:
- 类型检查: 通过
- 单元测试: 222 passed
- 构建: 成功
This commit is contained in:
iven
2026-03-26 17:19:28 +08:00
parent d0c6319fc1
commit b7f3d94950
71 changed files with 15896 additions and 1133 deletions

24
Cargo.lock generated
View File

@@ -912,6 +912,7 @@ name = "desktop"
version = "0.1.0"
dependencies = [
"aes-gcm",
"async-trait",
"base64 0.22.1",
"chrono",
"dirs",
@@ -921,6 +922,7 @@ dependencies = [
"rand 0.8.5",
"regex",
"reqwest 0.12.28",
"secrecy",
"serde",
"serde_json",
"sha2",
@@ -930,8 +932,10 @@ dependencies = [
"tauri-plugin-opener",
"thiserror 2.0.18",
"tokio",
"toml 0.8.2",
"tracing",
"uuid",
"zclaw-growth",
"zclaw-hands",
"zclaw-kernel",
"zclaw-memory",
@@ -6847,6 +6851,25 @@ dependencies = [
"zclaw-types",
]
[[package]]
name = "zclaw-growth"
version = "0.1.0"
dependencies = [
"anyhow",
"async-trait",
"chrono",
"futures",
"serde",
"serde_json",
"sqlx",
"thiserror 2.0.18",
"tokio",
"tokio-test",
"tracing",
"uuid",
"zclaw-types",
]
[[package]]
name = "zclaw-hands"
version = "0.1.0"
@@ -6971,6 +6994,7 @@ dependencies = [
"tracing",
"url",
"uuid",
"zclaw-growth",
"zclaw-memory",
"zclaw-types",
]

View File

@@ -12,6 +12,7 @@ members = [
"crates/zclaw-channels",
"crates/zclaw-protocols",
"crates/zclaw-pipeline",
"crates/zclaw-growth",
# Desktop Application
"desktop/src-tauri",
]
@@ -103,6 +104,7 @@ zclaw-hands = { path = "crates/zclaw-hands" }
zclaw-channels = { path = "crates/zclaw-channels" }
zclaw-protocols = { path = "crates/zclaw-protocols" }
zclaw-pipeline = { path = "crates/zclaw-pipeline" }
zclaw-growth = { path = "crates/zclaw-growth" }
[profile.release]
lto = true

View File

@@ -0,0 +1,40 @@
[package]
name = "zclaw-growth"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
description = "ZCLAW Agent Growth System - Memory extraction, retrieval, and prompt injection"
[dependencies]
# Async runtime
tokio = { workspace = true }
futures = { workspace = true }
async-trait = { workspace = true }
# Serialization
serde = { workspace = true }
serde_json = { workspace = true }
# Error handling
thiserror = { workspace = true }
anyhow = { workspace = true }
# Logging
tracing = { workspace = true }
# Time
chrono = { workspace = true }
# IDs
uuid = { workspace = true }
# Database
sqlx = { workspace = true }
# Internal crates
zclaw-types = { workspace = true }
[dev-dependencies]
tokio-test = "0.4"

View File

@@ -0,0 +1,372 @@
//! Memory Extractor - Extracts preferences, knowledge, and experience from conversations
//!
//! This module provides the `MemoryExtractor` which analyzes conversations
//! using LLM to extract valuable memories for agent growth.
use crate::types::{ExtractedMemory, ExtractionConfig, MemoryType};
use crate::viking_adapter::VikingAdapter;
use async_trait::async_trait;
use std::sync::Arc;
use zclaw_types::{Message, Result, SessionId};
/// Trait for LLM driver abstraction
/// This allows us to use any LLM driver implementation
#[async_trait]
pub trait LlmDriverForExtraction: Send + Sync {
/// Extract memories from conversation using LLM
async fn extract_memories(
&self,
messages: &[Message],
extraction_type: MemoryType,
) -> Result<Vec<ExtractedMemory>>;
}
/// Memory Extractor - extracts memories from conversations
pub struct MemoryExtractor {
/// LLM driver for extraction (optional)
llm_driver: Option<Arc<dyn LlmDriverForExtraction>>,
/// OpenViking adapter for storage
viking: Option<Arc<VikingAdapter>>,
/// Extraction configuration
config: ExtractionConfig,
}
impl MemoryExtractor {
/// Create a new memory extractor with LLM driver
pub fn new(llm_driver: Arc<dyn LlmDriverForExtraction>) -> Self {
Self {
llm_driver: Some(llm_driver),
viking: None,
config: ExtractionConfig::default(),
}
}
/// Create a new memory extractor without LLM driver
///
/// This is useful for cases where LLM-based extraction is not needed
/// or will be set later using `with_llm_driver`
pub fn new_without_driver() -> Self {
Self {
llm_driver: None,
viking: None,
config: ExtractionConfig::default(),
}
}
/// Set the LLM driver
pub fn with_llm_driver(mut self, driver: Arc<dyn LlmDriverForExtraction>) -> Self {
self.llm_driver = Some(driver);
self
}
/// Create with OpenViking adapter
pub fn with_viking(mut self, viking: Arc<VikingAdapter>) -> Self {
self.viking = Some(viking);
self
}
/// Set extraction configuration
pub fn with_config(mut self, config: ExtractionConfig) -> Self {
self.config = config;
self
}
/// Extract memories from a conversation
///
/// This method analyzes the conversation and extracts:
/// - Preferences: User's communication style, format preferences, language preferences
/// - Knowledge: User-related facts, domain knowledge, lessons learned
/// - Experience: Skill/tool usage patterns and outcomes
///
/// Returns an empty Vec if no LLM driver is configured
pub async fn extract(
&self,
messages: &[Message],
session_id: SessionId,
) -> Result<Vec<ExtractedMemory>> {
// Check if LLM driver is available
let _llm_driver = match &self.llm_driver {
Some(driver) => driver,
None => {
tracing::debug!("[MemoryExtractor] No LLM driver configured, skipping extraction");
return Ok(Vec::new());
}
};
let mut results = Vec::new();
// Extract preferences if enabled
if self.config.extract_preferences {
tracing::debug!("[MemoryExtractor] Extracting preferences...");
let prefs = self.extract_preferences(messages, session_id).await?;
results.extend(prefs);
}
// Extract knowledge if enabled
if self.config.extract_knowledge {
tracing::debug!("[MemoryExtractor] Extracting knowledge...");
let knowledge = self.extract_knowledge(messages, session_id).await?;
results.extend(knowledge);
}
// Extract experience if enabled
if self.config.extract_experience {
tracing::debug!("[MemoryExtractor] Extracting experience...");
let experience = self.extract_experience(messages, session_id).await?;
results.extend(experience);
}
// Filter by confidence threshold
results.retain(|m| m.confidence >= self.config.min_confidence);
tracing::info!(
"[MemoryExtractor] Extracted {} memories (confidence >= {})",
results.len(),
self.config.min_confidence
);
Ok(results)
}
/// Extract user preferences from conversation
async fn extract_preferences(
&self,
messages: &[Message],
session_id: SessionId,
) -> Result<Vec<ExtractedMemory>> {
let llm_driver = match &self.llm_driver {
Some(driver) => driver,
None => return Ok(Vec::new()),
};
let mut results = llm_driver
.extract_memories(messages, MemoryType::Preference)
.await?;
// Set source session
for memory in &mut results {
memory.source_session = session_id;
}
Ok(results)
}
/// Extract knowledge from conversation
async fn extract_knowledge(
&self,
messages: &[Message],
session_id: SessionId,
) -> Result<Vec<ExtractedMemory>> {
let llm_driver = match &self.llm_driver {
Some(driver) => driver,
None => return Ok(Vec::new()),
};
let mut results = llm_driver
.extract_memories(messages, MemoryType::Knowledge)
.await?;
for memory in &mut results {
memory.source_session = session_id;
}
Ok(results)
}
/// Extract experience from conversation
async fn extract_experience(
&self,
messages: &[Message],
session_id: SessionId,
) -> Result<Vec<ExtractedMemory>> {
let llm_driver = match &self.llm_driver {
Some(driver) => driver,
None => return Ok(Vec::new()),
};
let mut results = llm_driver
.extract_memories(messages, MemoryType::Experience)
.await?;
for memory in &mut results {
memory.source_session = session_id;
}
Ok(results)
}
/// Store extracted memories to OpenViking
pub async fn store_memories(
&self,
agent_id: &str,
memories: &[ExtractedMemory],
) -> Result<usize> {
let viking = match &self.viking {
Some(v) => v,
None => {
tracing::warn!("[MemoryExtractor] No VikingAdapter configured, memories not stored");
return Ok(0);
}
};
let mut stored = 0;
for memory in memories {
let entry = memory.to_memory_entry(agent_id);
match viking.store(&entry).await {
Ok(_) => stored += 1,
Err(e) => {
tracing::error!(
"[MemoryExtractor] Failed to store memory {}: {}",
memory.category,
e
);
}
}
}
tracing::info!("[MemoryExtractor] Stored {} memories to OpenViking", stored);
Ok(stored)
}
}
/// Default extraction prompts for LLM
pub mod prompts {
use crate::types::MemoryType;
/// Get the extraction prompt for a memory type
pub fn get_extraction_prompt(memory_type: MemoryType) -> &'static str {
match memory_type {
MemoryType::Preference => PREFERENCE_EXTRACTION_PROMPT,
MemoryType::Knowledge => KNOWLEDGE_EXTRACTION_PROMPT,
MemoryType::Experience => EXPERIENCE_EXTRACTION_PROMPT,
MemoryType::Session => SESSION_SUMMARY_PROMPT,
}
}
const PREFERENCE_EXTRACTION_PROMPT: &str = r#"
分析以下对话,提取用户的偏好设置。关注:
- 沟通风格偏好(简洁/详细、正式/随意)
- 回复格式偏好(列表/段落、代码块风格)
- 语言偏好
- 主题兴趣
请以 JSON 格式返回,格式如下:
[
{
"category": "communication-style",
"content": "用户偏好简洁的回复",
"confidence": 0.9,
"keywords": ["简洁", "回复风格"]
}
]
对话内容:
"#;
const KNOWLEDGE_EXTRACTION_PROMPT: &str = r#"
分析以下对话,提取有价值的知识。关注:
- 用户相关事实(职业、项目、背景)
- 领域知识(技术栈、工具、最佳实践)
- 经验教训(成功/失败案例)
请以 JSON 格式返回,格式如下:
[
{
"category": "user-facts",
"content": "用户是一名 Rust 开发者",
"confidence": 0.85,
"keywords": ["Rust", "开发者"]
}
]
对话内容:
"#;
const EXPERIENCE_EXTRACTION_PROMPT: &str = r#"
分析以下对话,提取技能/工具使用经验。关注:
- 使用的技能或工具
- 执行结果(成功/失败)
- 改进建议
请以 JSON 格式返回,格式如下:
[
{
"category": "skill-browser",
"content": "浏览器技能在搜索技术文档时效果很好",
"confidence": 0.8,
"keywords": ["浏览器", "搜索", "文档"]
}
]
对话内容:
"#;
const SESSION_SUMMARY_PROMPT: &str = r#"
总结以下对话会话。关注:
- 主要话题
- 关键决策
- 未解决问题
请以 JSON 格式返回,格式如下:
{
"summary": "会话摘要内容",
"keywords": ["关键词1", "关键词2"],
"topics": ["主题1", "主题2"]
}
对话内容:
"#;
}
#[cfg(test)]
mod tests {
use super::*;
struct MockLlmDriver;
#[async_trait]
impl LlmDriverForExtraction for MockLlmDriver {
async fn extract_memories(
&self,
_messages: &[Message],
extraction_type: MemoryType,
) -> Result<Vec<ExtractedMemory>> {
Ok(vec![ExtractedMemory::new(
extraction_type,
"test-category",
"test content",
SessionId::new(),
)])
}
}
#[tokio::test]
async fn test_extractor_creation() {
let driver = Arc::new(MockLlmDriver);
let extractor = MemoryExtractor::new(driver);
assert!(extractor.viking.is_none());
}
#[tokio::test]
async fn test_extract_memories() {
let driver = Arc::new(MockLlmDriver);
let extractor = MemoryExtractor::new(driver);
let messages = vec![Message::user("Hello")];
let result = extractor
.extract(&messages, SessionId::new())
.await
.unwrap();
// Should extract preferences, knowledge, and experience
assert!(!result.is_empty());
}
#[test]
fn test_prompts_available() {
assert!(!prompts::get_extraction_prompt(MemoryType::Preference).is_empty());
assert!(!prompts::get_extraction_prompt(MemoryType::Knowledge).is_empty());
assert!(!prompts::get_extraction_prompt(MemoryType::Experience).is_empty());
assert!(!prompts::get_extraction_prompt(MemoryType::Session).is_empty());
}
}

View File

@@ -0,0 +1,537 @@
//! Prompt Injector - Injects retrieved memories into system prompts
//!
//! This module provides the `PromptInjector` which formats and injects
//! retrieved memories into the agent's system prompt for context enhancement.
//!
//! # Formatting Options
//!
//! - `inject()` - Standard markdown format with sections
//! - `inject_compact()` - Compact format for limited token budgets
//! - `inject_json()` - JSON format for structured processing
//! - `inject_custom()` - Custom template with placeholders
use crate::types::{MemoryEntry, RetrievalConfig, RetrievalResult};
/// Output format for memory injection
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum InjectionFormat {
/// Standard markdown with sections (default)
Markdown,
/// Compact inline format
Compact,
/// JSON structured format
Json,
}
/// Prompt Injector - injects memories into system prompts
pub struct PromptInjector {
/// Retrieval configuration for token budgets
config: RetrievalConfig,
/// Output format
format: InjectionFormat,
/// Custom template (uses {{preferences}}, {{knowledge}}, {{experience}} placeholders)
custom_template: Option<String>,
}
impl Default for PromptInjector {
fn default() -> Self {
Self::new()
}
}
impl PromptInjector {
/// Create a new prompt injector
pub fn new() -> Self {
Self {
config: RetrievalConfig::default(),
format: InjectionFormat::Markdown,
custom_template: None,
}
}
/// Create with custom configuration
pub fn with_config(config: RetrievalConfig) -> Self {
Self {
config,
format: InjectionFormat::Markdown,
custom_template: None,
}
}
/// Set the output format
pub fn with_format(mut self, format: InjectionFormat) -> Self {
self.format = format;
self
}
/// Set a custom template for injection
///
/// Template placeholders:
/// - `{{preferences}}` - Formatted preferences section
/// - `{{knowledge}}` - Formatted knowledge section
/// - `{{experience}}` - Formatted experience section
/// - `{{all}}` - All memories combined
pub fn with_custom_template(mut self, template: impl Into<String>) -> Self {
self.custom_template = Some(template.into());
self
}
/// Inject memories into a base system prompt
///
/// This method constructs an enhanced system prompt by:
/// 1. Starting with the base prompt
/// 2. Adding a "用户偏好" section if preferences exist
/// 3. Adding a "相关知识" section if knowledge exists
/// 4. Adding an "经验参考" section if experience exists
///
/// Each section respects the token budget configuration.
pub fn inject(&self, base_prompt: &str, memories: &RetrievalResult) -> String {
// If no memories, return base prompt unchanged
if memories.is_empty() {
return base_prompt.to_string();
}
let mut result = base_prompt.to_string();
// Inject preferences section
if !memories.preferences.is_empty() {
let section = self.format_section(
"## 用户偏好",
&memories.preferences,
self.config.preference_budget,
|entry| format!("- {}", entry.content),
);
result.push_str("\n\n");
result.push_str(&section);
}
// Inject knowledge section
if !memories.knowledge.is_empty() {
let section = self.format_section(
"## 相关知识",
&memories.knowledge,
self.config.knowledge_budget,
|entry| format!("- {}", entry.content),
);
result.push_str("\n\n");
result.push_str(&section);
}
// Inject experience section
if !memories.experience.is_empty() {
let section = self.format_section(
"## 经验参考",
&memories.experience,
self.config.experience_budget,
|entry| format!("- {}", entry.content),
);
result.push_str("\n\n");
result.push_str(&section);
}
// Add memory context footer
result.push_str("\n\n");
result.push_str("<!-- 以上内容基于历史对话自动提取的记忆 -->");
result
}
/// Format a section of memories with token budget
fn format_section<F>(
&self,
header: &str,
entries: &[MemoryEntry],
token_budget: usize,
formatter: F,
) -> String
where
F: Fn(&MemoryEntry) -> String,
{
let mut result = String::new();
result.push_str(header);
result.push('\n');
let mut used_tokens = 0;
let header_tokens = header.len() / 4;
used_tokens += header_tokens;
for entry in entries {
let line = formatter(entry);
let line_tokens = line.len() / 4;
if used_tokens + line_tokens > token_budget {
// Add truncation indicator
result.push_str("- ... (更多内容已省略)\n");
break;
}
result.push_str(&line);
result.push('\n');
used_tokens += line_tokens;
}
result
}
/// Build a minimal context string for token-limited scenarios
pub fn build_minimal_context(&self, memories: &RetrievalResult) -> String {
if memories.is_empty() {
return String::new();
}
let mut context = String::new();
// Only include top preference
if let Some(pref) = memories.preferences.first() {
context.push_str(&format!("[偏好] {}\n", pref.content));
}
// Only include top knowledge
if let Some(knowledge) = memories.knowledge.first() {
context.push_str(&format!("[知识] {}\n", knowledge.content));
}
context
}
/// Inject memories in compact format
///
/// Compact format uses inline notation: [P] for preferences, [K] for knowledge, [E] for experience
pub fn inject_compact(&self, base_prompt: &str, memories: &RetrievalResult) -> String {
if memories.is_empty() {
return base_prompt.to_string();
}
let mut result = base_prompt.to_string();
let mut context_parts = Vec::new();
// Add compact preferences
for entry in &memories.preferences {
context_parts.push(format!("[P] {}", entry.content));
}
// Add compact knowledge
for entry in &memories.knowledge {
context_parts.push(format!("[K] {}", entry.content));
}
// Add compact experience
for entry in &memories.experience {
context_parts.push(format!("[E] {}", entry.content));
}
if !context_parts.is_empty() {
result.push_str("\n\n[记忆上下文]\n");
result.push_str(&context_parts.join("\n"));
}
result
}
/// Inject memories as JSON structure
///
/// Returns a JSON object with preferences, knowledge, and experience arrays
pub fn inject_json(&self, base_prompt: &str, memories: &RetrievalResult) -> String {
if memories.is_empty() {
return base_prompt.to_string();
}
let preferences: Vec<_> = memories.preferences.iter()
.map(|e| serde_json::json!({
"content": e.content,
"importance": e.importance,
"keywords": e.keywords,
}))
.collect();
let knowledge: Vec<_> = memories.knowledge.iter()
.map(|e| serde_json::json!({
"content": e.content,
"importance": e.importance,
"keywords": e.keywords,
}))
.collect();
let experience: Vec<_> = memories.experience.iter()
.map(|e| serde_json::json!({
"content": e.content,
"importance": e.importance,
"keywords": e.keywords,
}))
.collect();
let memories_json = serde_json::json!({
"preferences": preferences,
"knowledge": knowledge,
"experience": experience,
});
format!("{}\n\n[记忆上下文]\n{}", base_prompt, serde_json::to_string_pretty(&memories_json).unwrap_or_default())
}
/// Inject using custom template
///
/// Template placeholders:
/// - `{{preferences}}` - Formatted preferences section
/// - `{{knowledge}}` - Formatted knowledge section
/// - `{{experience}}` - Formatted experience section
/// - `{{all}}` - All memories combined
pub fn inject_custom(&self, template: &str, memories: &RetrievalResult) -> String {
let mut result = template.to_string();
// Format each section
let prefs = if !memories.preferences.is_empty() {
memories.preferences.iter()
.map(|e| format!("- {}", e.content))
.collect::<Vec<_>>()
.join("\n")
} else {
String::new()
};
let knowledge = if !memories.knowledge.is_empty() {
memories.knowledge.iter()
.map(|e| format!("- {}", e.content))
.collect::<Vec<_>>()
.join("\n")
} else {
String::new()
};
let experience = if !memories.experience.is_empty() {
memories.experience.iter()
.map(|e| format!("- {}", e.content))
.collect::<Vec<_>>()
.join("\n")
} else {
String::new()
};
// Combine all
let all = format!(
"用户偏好:\n{}\n\n相关知识:\n{}\n\n经验参考:\n{}",
if prefs.is_empty() { "" } else { &prefs },
if knowledge.is_empty() { "" } else { &knowledge },
if experience.is_empty() { "" } else { &experience },
);
// Replace placeholders
result = result.replace("{{preferences}}", &prefs);
result = result.replace("{{knowledge}}", &knowledge);
result = result.replace("{{experience}}", &experience);
result = result.replace("{{all}}", &all);
result
}
/// Inject memories using the configured format
pub fn inject_with_format(&self, base_prompt: &str, memories: &RetrievalResult) -> String {
match self.format {
InjectionFormat::Markdown => self.inject(base_prompt, memories),
InjectionFormat::Compact => self.inject_compact(base_prompt, memories),
InjectionFormat::Json => self.inject_json(base_prompt, memories),
}
}
/// Estimate total tokens that will be injected
pub fn estimate_injection_tokens(&self, memories: &RetrievalResult) -> usize {
let mut total = 0;
// Count preference tokens
for entry in &memories.preferences {
total += entry.estimated_tokens();
if total > self.config.preference_budget {
total = self.config.preference_budget;
break;
}
}
// Count knowledge tokens
let mut knowledge_tokens = 0;
for entry in &memories.knowledge {
knowledge_tokens += entry.estimated_tokens();
if knowledge_tokens > self.config.knowledge_budget {
knowledge_tokens = self.config.knowledge_budget;
break;
}
}
total += knowledge_tokens;
// Count experience tokens
let mut experience_tokens = 0;
for entry in &memories.experience {
experience_tokens += entry.estimated_tokens();
if experience_tokens > self.config.experience_budget {
experience_tokens = self.config.experience_budget;
break;
}
}
total += experience_tokens;
total
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::types::MemoryType;
use chrono::Utc;
fn create_test_entry(content: &str) -> MemoryEntry {
MemoryEntry {
uri: "test://uri".to_string(),
memory_type: MemoryType::Preference,
content: content.to_string(),
keywords: vec![],
importance: 5,
access_count: 0,
created_at: Utc::now(),
last_accessed: Utc::now(),
}
}
#[test]
fn test_injector_empty_memories() {
let injector = PromptInjector::new();
let base = "You are a helpful assistant.";
let memories = RetrievalResult::default();
let result = injector.inject(base, &memories);
assert_eq!(result, base);
}
#[test]
fn test_injector_with_preferences() {
let injector = PromptInjector::new();
let base = "You are a helpful assistant.";
let memories = RetrievalResult {
preferences: vec![create_test_entry("User prefers concise responses")],
knowledge: vec![],
experience: vec![],
total_tokens: 0,
};
let result = injector.inject(base, &memories);
assert!(result.contains("用户偏好"));
assert!(result.contains("User prefers concise responses"));
}
#[test]
fn test_injector_with_all_types() {
let injector = PromptInjector::new();
let base = "You are a helpful assistant.";
let memories = RetrievalResult {
preferences: vec![create_test_entry("Prefers concise")],
knowledge: vec![create_test_entry("Knows Rust")],
experience: vec![create_test_entry("Browser skill works well")],
total_tokens: 0,
};
let result = injector.inject(base, &memories);
assert!(result.contains("用户偏好"));
assert!(result.contains("相关知识"));
assert!(result.contains("经验参考"));
}
#[test]
fn test_minimal_context() {
let injector = PromptInjector::new();
let memories = RetrievalResult {
preferences: vec![create_test_entry("Prefers concise")],
knowledge: vec![create_test_entry("Knows Rust")],
experience: vec![],
total_tokens: 0,
};
let context = injector.build_minimal_context(&memories);
assert!(context.contains("[偏好]"));
assert!(context.contains("[知识]"));
}
#[test]
fn test_estimate_tokens() {
let injector = PromptInjector::new();
let memories = RetrievalResult {
preferences: vec![create_test_entry("Short text")],
knowledge: vec![],
experience: vec![],
total_tokens: 0,
};
let estimate = injector.estimate_injection_tokens(&memories);
assert!(estimate > 0);
}
#[test]
fn test_inject_compact() {
let injector = PromptInjector::new();
let base = "You are a helpful assistant.";
let memories = RetrievalResult {
preferences: vec![create_test_entry("Prefers concise")],
knowledge: vec![create_test_entry("Knows Rust")],
experience: vec![],
total_tokens: 0,
};
let result = injector.inject_compact(base, &memories);
assert!(result.contains("[P]"));
assert!(result.contains("[K]"));
assert!(result.contains("[记忆上下文]"));
}
#[test]
fn test_inject_json() {
let injector = PromptInjector::new();
let base = "You are a helpful assistant.";
let memories = RetrievalResult {
preferences: vec![create_test_entry("Prefers concise")],
knowledge: vec![],
experience: vec![],
total_tokens: 0,
};
let result = injector.inject_json(base, &memories);
assert!(result.contains("\"preferences\""));
assert!(result.contains("Prefers concise"));
}
#[test]
fn test_inject_custom() {
let injector = PromptInjector::new();
let template = "Context:\n{{all}}";
let memories = RetrievalResult {
preferences: vec![create_test_entry("Prefers concise")],
knowledge: vec![create_test_entry("Knows Rust")],
experience: vec![],
total_tokens: 0,
};
let result = injector.inject_custom(template, &memories);
assert!(result.contains("用户偏好"));
assert!(result.contains("相关知识"));
}
#[test]
fn test_format_selection() {
let base = "Base";
let memories = RetrievalResult {
preferences: vec![create_test_entry("Test")],
knowledge: vec![],
experience: vec![],
total_tokens: 0,
};
// Test markdown format
let injector_md = PromptInjector::new().with_format(InjectionFormat::Markdown);
let result_md = injector_md.inject_with_format(base, &memories);
assert!(result_md.contains("## 用户偏好"));
// Test compact format
let injector_compact = PromptInjector::new().with_format(InjectionFormat::Compact);
let result_compact = injector_compact.inject_with_format(base, &memories);
assert!(result_compact.contains("[P]"));
}
}

View File

@@ -0,0 +1,141 @@
//! ZCLAW Agent Growth System
//!
//! This crate provides the agent growth functionality for ZCLAW,
//! enabling agents to learn and evolve from conversations.
//!
//! # Architecture
//!
//! The growth system consists of four main components:
//!
//! 1. **MemoryExtractor** (`extractor`) - Analyzes conversations and extracts
//! preferences, knowledge, and experience using LLM.
//!
//! 2. **MemoryRetriever** (`retriever`) - Performs semantic search over
//! stored memories to find contextually relevant information.
//!
//! 3. **PromptInjector** (`injector`) - Injects retrieved memories into
//! the system prompt with token budget control.
//!
//! 4. **GrowthTracker** (`tracker`) - Tracks growth metrics and evolution
//! over time.
//!
//! # Storage
//!
//! All memories are stored in OpenViking with a URI structure:
//!
//! ```text
//! agent://{agent_id}/
//! ├── preferences/{category} - User preferences
//! ├── knowledge/{domain} - Accumulated knowledge
//! ├── experience/{skill} - Skill/tool experience
//! └── sessions/{session_id}/ - Conversation history
//! ├── raw - Original conversation (L0)
//! ├── summary - Summary (L1)
//! └── keywords - Keywords (L2)
//! ```
//!
//! # Usage
//!
//! ```rust,ignore
//! use zclaw_growth::{MemoryExtractor, MemoryRetriever, PromptInjector, VikingAdapter};
//!
//! // Create components
//! let viking = VikingAdapter::in_memory();
//! let retriever = MemoryRetriever::new(Arc::new(viking.clone()));
//! let injector = PromptInjector::new();
//!
//! // Before conversation: retrieve relevant memories
//! let memories = retriever.retrieve(&agent_id, &user_input).await?;
//!
//! // Inject into system prompt
//! let enhanced_prompt = injector.inject(&base_prompt, &memories);
//!
//! // After conversation: extract and store new memories
//! let extracted = extractor.extract(&messages, session_id).await?;
//! extractor.store_memories(&agent_id, &extracted).await?;
//! ```
pub mod types;
pub mod extractor;
pub mod retriever;
pub mod injector;
pub mod tracker;
pub mod viking_adapter;
pub mod storage;
pub mod retrieval;
// Re-export main types for convenience
pub use types::{
ExtractedMemory,
ExtractionConfig,
GrowthStats,
MemoryEntry,
MemoryType,
RetrievalConfig,
RetrievalResult,
UriBuilder,
};
pub use extractor::{LlmDriverForExtraction, MemoryExtractor};
pub use retriever::{MemoryRetriever, MemoryStats};
pub use injector::{InjectionFormat, PromptInjector};
pub use tracker::{AgentMetadata, GrowthTracker, LearningEvent};
pub use viking_adapter::{FindOptions, VikingAdapter, VikingLevel, VikingStorage};
pub use storage::SqliteStorage;
pub use retrieval::{MemoryCache, QueryAnalyzer, SemanticScorer};
/// Growth system configuration
#[derive(Debug, Clone)]
pub struct GrowthConfig {
/// Enable/disable growth system
pub enabled: bool,
/// Retrieval configuration
pub retrieval: RetrievalConfig,
/// Extraction configuration
pub extraction: ExtractionConfig,
/// Auto-extract after each conversation
pub auto_extract: bool,
}
impl Default for GrowthConfig {
fn default() -> Self {
Self {
enabled: true,
retrieval: RetrievalConfig::default(),
extraction: ExtractionConfig::default(),
auto_extract: true,
}
}
}
/// Convenience function to create a complete growth system
pub fn create_growth_system(
viking: std::sync::Arc<VikingAdapter>,
llm_driver: std::sync::Arc<dyn LlmDriverForExtraction>,
) -> (MemoryExtractor, MemoryRetriever, PromptInjector, GrowthTracker) {
let extractor = MemoryExtractor::new(llm_driver).with_viking(viking.clone());
let retriever = MemoryRetriever::new(viking.clone());
let injector = PromptInjector::new();
let tracker = GrowthTracker::new(viking);
(extractor, retriever, injector, tracker)
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_growth_config_default() {
let config = GrowthConfig::default();
assert!(config.enabled);
assert!(config.auto_extract);
assert_eq!(config.retrieval.max_tokens, 500);
}
#[test]
fn test_memory_type_reexport() {
let mt = MemoryType::Preference;
assert_eq!(format!("{}", mt), "preferences");
}
}

View File

@@ -0,0 +1,365 @@
//! Memory Cache
//!
//! Provides caching for frequently accessed memories to improve
//! retrieval performance.
use crate::types::{MemoryEntry, MemoryType};
use std::collections::HashMap;
use std::time::{Duration, Instant};
use tokio::sync::RwLock;
/// Cache entry with metadata
struct CacheEntry {
/// The memory entry
entry: MemoryEntry,
/// Last access time
last_accessed: Instant,
/// Access count
access_count: u32,
}
/// Cache key for efficient lookups
#[derive(Debug, Clone, Hash, Eq, PartialEq)]
struct CacheKey {
agent_id: String,
memory_type: MemoryType,
category: String,
}
impl From<&MemoryEntry> for CacheKey {
fn from(entry: &MemoryEntry) -> Self {
// Parse URI to extract components
let parts: Vec<&str> = entry.uri.trim_start_matches("agent://").split('/').collect();
Self {
agent_id: parts.first().unwrap_or(&"").to_string(),
memory_type: entry.memory_type,
category: parts.get(2).unwrap_or(&"").to_string(),
}
}
}
/// Memory cache configuration
#[derive(Debug, Clone)]
pub struct CacheConfig {
/// Maximum number of entries
pub max_entries: usize,
/// Time-to-live for entries
pub ttl: Duration,
/// Enable/disable caching
pub enabled: bool,
}
impl Default for CacheConfig {
fn default() -> Self {
Self {
max_entries: 1000,
ttl: Duration::from_secs(3600), // 1 hour
enabled: true,
}
}
}
/// Memory cache for hot memories
pub struct MemoryCache {
/// Cache storage
cache: RwLock<HashMap<String, CacheEntry>>,
/// Configuration
config: CacheConfig,
/// Cache statistics
stats: RwLock<CacheStats>,
}
/// Cache statistics
#[derive(Debug, Clone, Default)]
pub struct CacheStats {
/// Total cache hits
pub hits: u64,
/// Total cache misses
pub misses: u64,
/// Total entries evicted
pub evictions: u64,
}
impl MemoryCache {
/// Create a new memory cache
pub fn new(config: CacheConfig) -> Self {
Self {
cache: RwLock::new(HashMap::new()),
config,
stats: RwLock::new(CacheStats::default()),
}
}
/// Create with default configuration
pub fn default_config() -> Self {
Self::new(CacheConfig::default())
}
/// Get a memory from cache
pub async fn get(&self, uri: &str) -> Option<MemoryEntry> {
if !self.config.enabled {
return None;
}
let mut cache = self.cache.write().await;
if let Some(cached) = cache.get_mut(uri) {
// Check TTL
if cached.last_accessed.elapsed() > self.config.ttl {
cache.remove(uri);
return None;
}
// Update access metadata
cached.last_accessed = Instant::now();
cached.access_count += 1;
// Update stats
let mut stats = self.stats.write().await;
stats.hits += 1;
return Some(cached.entry.clone());
}
// Update stats
let mut stats = self.stats.write().await;
stats.misses += 1;
None
}
/// Put a memory into cache
pub async fn put(&self, entry: MemoryEntry) {
if !self.config.enabled {
return;
}
let mut cache = self.cache.write().await;
// Check capacity and evict if necessary
if cache.len() >= self.config.max_entries {
self.evict_lru(&mut cache).await;
}
cache.insert(
entry.uri.clone(),
CacheEntry {
entry,
last_accessed: Instant::now(),
access_count: 0,
},
);
}
/// Remove a memory from cache
pub async fn remove(&self, uri: &str) {
let mut cache = self.cache.write().await;
cache.remove(uri);
}
/// Clear the cache
pub async fn clear(&self) {
let mut cache = self.cache.write().await;
cache.clear();
}
/// Evict least recently used entries
async fn evict_lru(&self, cache: &mut HashMap<String, CacheEntry>) {
// Find LRU entry
let lru_key = cache
.iter()
.min_by_key(|(_, v)| (v.access_count, v.last_accessed))
.map(|(k, _)| k.clone());
if let Some(key) = lru_key {
cache.remove(&key);
let mut stats = self.stats.write().await;
stats.evictions += 1;
}
}
/// Get cache statistics
pub async fn stats(&self) -> CacheStats {
self.stats.read().await.clone()
}
/// Get cache hit rate
pub async fn hit_rate(&self) -> f32 {
let stats = self.stats.read().await;
let total = stats.hits + stats.misses;
if total == 0 {
return 0.0;
}
stats.hits as f32 / total as f32
}
/// Get cache size
pub async fn size(&self) -> usize {
self.cache.read().await.len()
}
/// Warm up cache with frequently accessed entries
pub async fn warmup(&self, entries: Vec<MemoryEntry>) {
for entry in entries {
self.put(entry).await;
}
}
/// Get top accessed entries (for preloading)
pub async fn get_hot_entries(&self, limit: usize) -> Vec<MemoryEntry> {
let cache = self.cache.read().await;
let mut entries: Vec<_> = cache
.values()
.map(|c| (c.access_count, c.entry.clone()))
.collect();
entries.sort_by(|a, b| b.0.cmp(&a.0));
entries.truncate(limit);
entries.into_iter().map(|(_, e)| e).collect()
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::types::MemoryType;
#[tokio::test]
async fn test_cache_put_and_get() {
let cache = MemoryCache::default_config();
let entry = MemoryEntry::new(
"test-agent",
MemoryType::Preference,
"style",
"User prefers concise responses".to_string(),
);
cache.put(entry.clone()).await;
let retrieved = cache.get(&entry.uri).await;
assert!(retrieved.is_some());
assert_eq!(retrieved.unwrap().content, "User prefers concise responses");
}
#[tokio::test]
async fn test_cache_miss() {
let cache = MemoryCache::default_config();
let retrieved = cache.get("nonexistent").await;
assert!(retrieved.is_none());
let stats = cache.stats().await;
assert_eq!(stats.misses, 1);
}
#[tokio::test]
async fn test_cache_remove() {
let cache = MemoryCache::default_config();
let entry = MemoryEntry::new(
"test-agent",
MemoryType::Preference,
"style",
"test".to_string(),
);
cache.put(entry.clone()).await;
cache.remove(&entry.uri).await;
let retrieved = cache.get(&entry.uri).await;
assert!(retrieved.is_none());
}
#[tokio::test]
async fn test_cache_clear() {
let cache = MemoryCache::default_config();
let entry = MemoryEntry::new(
"test-agent",
MemoryType::Preference,
"style",
"test".to_string(),
);
cache.put(entry).await;
cache.clear().await;
let size = cache.size().await;
assert_eq!(size, 0);
}
#[tokio::test]
async fn test_cache_stats() {
let cache = MemoryCache::default_config();
let entry = MemoryEntry::new(
"test-agent",
MemoryType::Preference,
"style",
"test".to_string(),
);
cache.put(entry.clone()).await;
// Hit
cache.get(&entry.uri).await;
// Miss
cache.get("nonexistent").await;
let stats = cache.stats().await;
assert_eq!(stats.hits, 1);
assert_eq!(stats.misses, 1);
let hit_rate = cache.hit_rate().await;
assert!((hit_rate - 0.5).abs() < 0.001);
}
#[tokio::test]
async fn test_cache_eviction() {
let config = CacheConfig {
max_entries: 2,
ttl: Duration::from_secs(3600),
enabled: true,
};
let cache = MemoryCache::new(config);
let entry1 = MemoryEntry::new("test", MemoryType::Preference, "1", "1".to_string());
let entry2 = MemoryEntry::new("test", MemoryType::Preference, "2", "2".to_string());
let entry3 = MemoryEntry::new("test", MemoryType::Preference, "3", "3".to_string());
cache.put(entry1.clone()).await;
cache.put(entry2.clone()).await;
// Access entry1 to make it hot
cache.get(&entry1.uri).await;
// Add entry3, should evict entry2 (LRU)
cache.put(entry3).await;
let size = cache.size().await;
assert_eq!(size, 2);
let stats = cache.stats().await;
assert_eq!(stats.evictions, 1);
}
#[tokio::test]
async fn test_get_hot_entries() {
let cache = MemoryCache::default_config();
let entry1 = MemoryEntry::new("test", MemoryType::Preference, "1", "1".to_string());
let entry2 = MemoryEntry::new("test", MemoryType::Preference, "2", "2".to_string());
cache.put(entry1.clone()).await;
cache.put(entry2.clone()).await;
// Access entry1 multiple times
cache.get(&entry1.uri).await;
cache.get(&entry1.uri).await;
let hot = cache.get_hot_entries(10).await;
assert_eq!(hot.len(), 2);
// entry1 should be first (more accesses)
assert_eq!(hot[0].uri, entry1.uri);
}
}

View File

@@ -0,0 +1,14 @@
//! Retrieval components for ZCLAW Growth System
//!
//! This module provides advanced retrieval capabilities:
//! - `semantic`: Semantic similarity computation
//! - `query`: Query analysis and expansion
//! - `cache`: Hot memory caching
pub mod semantic;
pub mod query;
pub mod cache;
pub use semantic::SemanticScorer;
pub use query::QueryAnalyzer;
pub use cache::MemoryCache;

View File

@@ -0,0 +1,352 @@
//! Query Analyzer
//!
//! Provides query analysis and expansion capabilities for improved retrieval.
//! Extracts keywords, identifies intent, and generates search variations.
use crate::types::MemoryType;
use std::collections::HashSet;
/// Query analysis result
#[derive(Debug, Clone)]
pub struct AnalyzedQuery {
/// Original query string
pub original: String,
/// Extracted keywords
pub keywords: Vec<String>,
/// Query intent
pub intent: QueryIntent,
/// Memory types to search (inferred from query)
pub target_types: Vec<MemoryType>,
/// Expanded search terms
pub expansions: Vec<String>,
}
/// Query intent classification
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum QueryIntent {
/// Looking for preferences/settings
Preference,
/// Looking for factual knowledge
Knowledge,
/// Looking for how-to/experience
Experience,
/// General conversation
General,
/// Code-related query
Code,
/// Configuration query
Configuration,
}
/// Query analyzer
pub struct QueryAnalyzer {
/// Keywords that indicate preference queries
preference_indicators: HashSet<String>,
/// Keywords that indicate knowledge queries
knowledge_indicators: HashSet<String>,
/// Keywords that indicate experience queries
experience_indicators: HashSet<String>,
/// Keywords that indicate code queries
code_indicators: HashSet<String>,
/// Stop words to filter out
stop_words: HashSet<String>,
}
impl QueryAnalyzer {
/// Create a new query analyzer
pub fn new() -> Self {
Self {
preference_indicators: [
"prefer", "like", "want", "favorite", "favourite", "style",
"format", "language", "setting", "preference", "usually",
"typically", "always", "never", "习惯", "偏好", "喜欢", "想要",
]
.iter()
.map(|s| s.to_string())
.collect(),
knowledge_indicators: [
"what", "how", "why", "explain", "tell", "know", "learn",
"understand", "meaning", "definition", "concept", "theory",
"是什么", "怎么", "为什么", "解释", "了解", "知道",
]
.iter()
.map(|s| s.to_string())
.collect(),
experience_indicators: [
"experience", "tried", "used", "before", "last time",
"previous", "history", "remember", "recall", "when",
"经验", "尝试", "用过", "上次", "记得", "回忆",
]
.iter()
.map(|s| s.to_string())
.collect(),
code_indicators: [
"code", "function", "class", "method", "variable", "type",
"error", "bug", "fix", "implement", "refactor", "api",
"代码", "函数", "", "方法", "变量", "错误", "修复", "实现",
]
.iter()
.map(|s| s.to_string())
.collect(),
stop_words: [
"the", "a", "an", "is", "are", "was", "were", "be", "been",
"have", "has", "had", "do", "does", "did", "will", "would",
"could", "should", "may", "might", "must", "can", "to", "of",
"in", "for", "on", "with", "at", "by", "from", "as", "and",
"or", "but", "if", "then", "else", "when", "where", "which",
"who", "whom", "whose", "this", "that", "these", "those",
]
.iter()
.map(|s| s.to_string())
.collect(),
}
}
/// Analyze a query string
pub fn analyze(&self, query: &str) -> AnalyzedQuery {
let keywords = self.extract_keywords(query);
let intent = self.classify_intent(&keywords);
let target_types = self.infer_memory_types(intent, &keywords);
let expansions = self.expand_query(&keywords);
AnalyzedQuery {
original: query.to_string(),
keywords,
intent,
target_types,
expansions,
}
}
/// Extract keywords from query
fn extract_keywords(&self, query: &str) -> Vec<String> {
query
.to_lowercase()
.split(|c: char| !c.is_alphanumeric() && !is_cjk(c))
.filter(|s| !s.is_empty() && s.len() > 1)
.filter(|s| !self.stop_words.contains(*s))
.map(|s| s.to_string())
.collect()
}
/// Classify query intent
fn classify_intent(&self, keywords: &[String]) -> QueryIntent {
let mut scores = [
(QueryIntent::Preference, 0),
(QueryIntent::Knowledge, 0),
(QueryIntent::Experience, 0),
(QueryIntent::Code, 0),
];
for keyword in keywords {
if self.preference_indicators.contains(keyword) {
scores[0].1 += 2;
}
if self.knowledge_indicators.contains(keyword) {
scores[1].1 += 2;
}
if self.experience_indicators.contains(keyword) {
scores[2].1 += 2;
}
if self.code_indicators.contains(keyword) {
scores[3].1 += 2;
}
}
// Find highest scoring intent
scores.sort_by(|a, b| b.1.cmp(&a.1));
if scores[0].1 > 0 {
scores[0].0
} else {
QueryIntent::General
}
}
/// Infer which memory types to search
fn infer_memory_types(&self, intent: QueryIntent, _keywords: &[String]) -> Vec<MemoryType> {
let mut types = Vec::new();
match intent {
QueryIntent::Preference => {
types.push(MemoryType::Preference);
}
QueryIntent::Knowledge | QueryIntent::Code => {
types.push(MemoryType::Knowledge);
types.push(MemoryType::Experience);
}
QueryIntent::Experience => {
types.push(MemoryType::Experience);
types.push(MemoryType::Knowledge);
}
QueryIntent::General => {
// Search all types
types.push(MemoryType::Preference);
types.push(MemoryType::Knowledge);
types.push(MemoryType::Experience);
}
QueryIntent::Configuration => {
types.push(MemoryType::Preference);
types.push(MemoryType::Knowledge);
}
}
types
}
/// Expand query with related terms
fn expand_query(&self, keywords: &[String]) -> Vec<String> {
let mut expansions = Vec::new();
// Add stemmed variations (simplified)
for keyword in keywords {
// Add singular/plural variations
if keyword.ends_with('s') && keyword.len() > 3 {
expansions.push(keyword[..keyword.len()-1].to_string());
} else {
expansions.push(format!("{}s", keyword));
}
// Add common synonyms (simplified)
if let Some(synonyms) = self.get_synonyms(keyword) {
expansions.extend(synonyms);
}
}
expansions
}
/// Get synonyms for a keyword (simplified)
fn get_synonyms(&self, keyword: &str) -> Option<Vec<String>> {
let synonyms: &[&str] = match keyword {
"code" => &["program", "script", "source"],
"error" => &["bug", "issue", "problem", "exception"],
"fix" => &["solve", "resolve", "repair", "patch"],
"fast" => &["quick", "speed", "performance", "efficient"],
"slow" => &["performance", "optimize", "speed"],
"help" => &["assist", "support", "guide", "aid"],
"learn" => &["study", "understand", "know", "grasp"],
_ => return None,
};
Some(synonyms.iter().map(|s| s.to_string()).collect())
}
/// Generate search queries from analyzed query
pub fn generate_search_queries(&self, analyzed: &AnalyzedQuery) -> Vec<String> {
let mut queries = vec![analyzed.original.clone()];
// Add keyword-based query
if !analyzed.keywords.is_empty() {
queries.push(analyzed.keywords.join(" "));
}
// Add expanded terms
for expansion in &analyzed.expansions {
if !expansion.is_empty() {
queries.push(expansion.clone());
}
}
// Deduplicate
queries.sort();
queries.dedup();
queries
}
}
impl Default for QueryAnalyzer {
fn default() -> Self {
Self::new()
}
}
/// Check if character is CJK
fn is_cjk(c: char) -> bool {
matches!(c,
'\u{4E00}'..='\u{9FFF}' | // CJK Unified Ideographs
'\u{3400}'..='\u{4DBF}' | // CJK Unified Ideographs Extension A
'\u{20000}'..='\u{2A6DF}' | // CJK Unified Ideographs Extension B
'\u{2A700}'..='\u{2B73F}' | // CJK Unified Ideographs Extension C
'\u{2B740}'..='\u{2B81F}' | // CJK Unified Ideographs Extension D
'\u{2B820}'..='\u{2CEAF}' | // CJK Unified Ideographs Extension E
'\u{F900}'..='\u{FAFF}' | // CJK Compatibility Ideographs
'\u{2F800}'..='\u{2FA1F}' // CJK Compatibility Ideographs Supplement
)
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_extract_keywords() {
let analyzer = QueryAnalyzer::new();
let keywords = analyzer.extract_keywords("What is the Rust programming language?");
assert!(keywords.contains(&"rust".to_string()));
assert!(keywords.contains(&"programming".to_string()));
assert!(keywords.contains(&"language".to_string()));
assert!(!keywords.contains(&"the".to_string())); // stop word
}
#[test]
fn test_classify_intent_preference() {
let analyzer = QueryAnalyzer::new();
let analyzed = analyzer.analyze("I prefer concise responses");
assert_eq!(analyzed.intent, QueryIntent::Preference);
assert!(analyzed.target_types.contains(&MemoryType::Preference));
}
#[test]
fn test_classify_intent_knowledge() {
let analyzer = QueryAnalyzer::new();
let analyzed = analyzer.analyze("Explain how async/await works in Rust");
assert_eq!(analyzed.intent, QueryIntent::Knowledge);
}
#[test]
fn test_classify_intent_code() {
let analyzer = QueryAnalyzer::new();
let analyzed = analyzer.analyze("Fix this error in my function");
assert_eq!(analyzed.intent, QueryIntent::Code);
}
#[test]
fn test_query_expansion() {
let analyzer = QueryAnalyzer::new();
let analyzed = analyzer.analyze("fix the error");
assert!(!analyzed.expansions.is_empty());
}
#[test]
fn test_generate_search_queries() {
let analyzer = QueryAnalyzer::new();
let analyzed = analyzer.analyze("Rust programming");
let queries = analyzer.generate_search_queries(&analyzed);
assert!(queries.len() >= 1);
}
#[test]
fn test_cjk_detection() {
assert!(is_cjk('中'));
assert!(is_cjk('文'));
assert!(!is_cjk('a'));
assert!(!is_cjk('1'));
}
#[test]
fn test_chinese_keywords() {
let analyzer = QueryAnalyzer::new();
let keywords = analyzer.extract_keywords("我喜欢简洁的回复");
// Chinese characters should be extracted
assert!(!keywords.is_empty());
}
}

View File

@@ -0,0 +1,374 @@
//! Semantic Similarity Scorer
//!
//! Provides TF-IDF based semantic similarity computation for memory retrieval.
//! This is a lightweight, dependency-free implementation suitable for
//! medium-scale memory systems.
use std::collections::{HashMap, HashSet};
use crate::types::MemoryEntry;
/// Semantic similarity scorer using TF-IDF
pub struct SemanticScorer {
/// Document frequency for IDF computation
document_frequencies: HashMap<String, usize>,
/// Total number of documents
total_documents: usize,
/// Precomputed TF-IDF vectors for entries
entry_vectors: HashMap<String, HashMap<String, f32>>,
/// Stop words to ignore
stop_words: HashSet<String>,
}
impl SemanticScorer {
/// Create a new semantic scorer
pub fn new() -> Self {
Self {
document_frequencies: HashMap::new(),
total_documents: 0,
entry_vectors: HashMap::new(),
stop_words: Self::default_stop_words(),
}
}
/// Get default stop words
fn default_stop_words() -> HashSet<String> {
[
"the", "a", "an", "is", "are", "was", "were", "be", "been", "being",
"have", "has", "had", "do", "does", "did", "will", "would", "could",
"should", "may", "might", "must", "shall", "can", "need", "dare",
"ought", "used", "to", "of", "in", "for", "on", "with", "at", "by",
"from", "as", "into", "through", "during", "before", "after",
"above", "below", "between", "under", "again", "further", "then",
"once", "here", "there", "when", "where", "why", "how", "all",
"each", "few", "more", "most", "other", "some", "such", "no", "nor",
"not", "only", "own", "same", "so", "than", "too", "very", "just",
"and", "but", "if", "or", "because", "until", "while", "although",
"though", "after", "before", "when", "whenever", "i", "you", "he",
"she", "it", "we", "they", "what", "which", "who", "whom", "this",
"that", "these", "those", "am", "im", "youre", "hes", "shes",
"its", "were", "theyre", "ive", "youve", "weve", "theyve", "id",
"youd", "hed", "shed", "wed", "theyd", "ill", "youll", "hell",
"shell", "well", "theyll", "isnt", "arent", "wasnt", "werent",
"hasnt", "havent", "hadnt", "doesnt", "dont", "didnt", "wont",
"wouldnt", "shant", "shouldnt", "cant", "cannot", "couldnt",
"mustnt", "lets", "thats", "whos", "whats", "heres", "theres",
"whens", "wheres", "whys", "hows", "a", "b", "c", "d", "e", "f",
"g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s",
"t", "u", "v", "w", "x", "y", "z",
]
.iter()
.map(|s| s.to_string())
.collect()
}
/// Tokenize text into words
fn tokenize(text: &str) -> Vec<String> {
text.to_lowercase()
.split(|c: char| !c.is_alphanumeric())
.filter(|s| !s.is_empty() && s.len() > 1)
.map(|s| s.to_string())
.collect()
}
/// Remove stop words from tokens
fn remove_stop_words(&self, tokens: &[String]) -> Vec<String> {
tokens
.iter()
.filter(|t| !self.stop_words.contains(*t))
.cloned()
.collect()
}
/// Compute term frequency for a list of tokens
fn compute_tf(tokens: &[String]) -> HashMap<String, f32> {
let mut tf = HashMap::new();
let total = tokens.len() as f32;
for token in tokens {
*tf.entry(token.clone()).or_insert(0.0) += 1.0;
}
// Normalize by total tokens
for count in tf.values_mut() {
*count /= total;
}
tf
}
/// Compute IDF for a term
fn compute_idf(&self, term: &str) -> f32 {
let df = self.document_frequencies.get(term).copied().unwrap_or(0);
if df == 0 || self.total_documents == 0 {
return 0.0;
}
((self.total_documents as f32 + 1.0) / (df as f32 + 1.0)).ln() + 1.0
}
/// Index an entry for semantic search
pub fn index_entry(&mut self, entry: &MemoryEntry) {
// Tokenize content and keywords
let mut all_tokens = Self::tokenize(&entry.content);
for keyword in &entry.keywords {
all_tokens.extend(Self::tokenize(keyword));
}
all_tokens = self.remove_stop_words(&all_tokens);
// Update document frequencies
let unique_terms: HashSet<_> = all_tokens.iter().cloned().collect();
for term in &unique_terms {
*self.document_frequencies.entry(term.clone()).or_insert(0) += 1;
}
self.total_documents += 1;
// Compute TF-IDF vector
let tf = Self::compute_tf(&all_tokens);
let mut tfidf = HashMap::new();
for (term, tf_val) in tf {
let idf = self.compute_idf(&term);
tfidf.insert(term, tf_val * idf);
}
self.entry_vectors.insert(entry.uri.clone(), tfidf);
}
/// Remove an entry from the index
pub fn remove_entry(&mut self, uri: &str) {
self.entry_vectors.remove(uri);
}
/// Compute cosine similarity between two vectors
fn cosine_similarity(v1: &HashMap<String, f32>, v2: &HashMap<String, f32>) -> f32 {
if v1.is_empty() || v2.is_empty() {
return 0.0;
}
// Find common keys
let mut dot_product = 0.0;
let mut norm1 = 0.0;
let mut norm2 = 0.0;
for (k, v) in v1 {
norm1 += v * v;
if let Some(v2_val) = v2.get(k) {
dot_product += v * v2_val;
}
}
for v in v2.values() {
norm2 += v * v;
}
let denom = (norm1 * norm2).sqrt();
if denom == 0.0 {
0.0
} else {
(dot_product / denom).clamp(0.0, 1.0)
}
}
/// Score similarity between query and entry
pub fn score_similarity(&self, query: &str, entry: &MemoryEntry) -> f32 {
// Tokenize query
let query_tokens = self.remove_stop_words(&Self::tokenize(query));
if query_tokens.is_empty() {
return 0.5; // Neutral score for empty query
}
// Compute query TF-IDF
let query_tf = Self::compute_tf(&query_tokens);
let mut query_vec = HashMap::new();
for (term, tf_val) in query_tf {
let idf = self.compute_idf(&term);
query_vec.insert(term, tf_val * idf);
}
// Get entry vector
let entry_vec = match self.entry_vectors.get(&entry.uri) {
Some(v) => v,
None => {
// Fall back to simple matching if not indexed
return self.fallback_similarity(&query_tokens, entry);
}
};
// Compute cosine similarity
let cosine = Self::cosine_similarity(&query_vec, entry_vec);
// Combine with keyword matching for better results
let keyword_boost = self.keyword_match_score(&query_tokens, entry);
// Weighted combination
cosine * 0.7 + keyword_boost * 0.3
}
/// Fallback similarity when entry is not indexed
fn fallback_similarity(&self, query_tokens: &[String], entry: &MemoryEntry) -> f32 {
let content_lower = entry.content.to_lowercase();
let mut matches = 0;
for token in query_tokens {
if content_lower.contains(token) {
matches += 1;
}
for keyword in &entry.keywords {
if keyword.to_lowercase().contains(token) {
matches += 1;
break;
}
}
}
(matches as f32) / (query_tokens.len() * 2).max(1) as f32
}
/// Compute keyword match score
fn keyword_match_score(&self, query_tokens: &[String], entry: &MemoryEntry) -> f32 {
if entry.keywords.is_empty() {
return 0.0;
}
let mut matches = 0;
for token in query_tokens {
for keyword in &entry.keywords {
if keyword.to_lowercase().contains(&token.to_lowercase()) {
matches += 1;
break;
}
}
}
(matches as f32) / query_tokens.len().max(1) as f32
}
/// Clear the index
pub fn clear(&mut self) {
self.document_frequencies.clear();
self.total_documents = 0;
self.entry_vectors.clear();
}
/// Get statistics about the index
pub fn stats(&self) -> IndexStats {
IndexStats {
total_documents: self.total_documents,
unique_terms: self.document_frequencies.len(),
indexed_entries: self.entry_vectors.len(),
}
}
}
impl Default for SemanticScorer {
fn default() -> Self {
Self::new()
}
}
/// Index statistics
#[derive(Debug, Clone)]
pub struct IndexStats {
pub total_documents: usize,
pub unique_terms: usize,
pub indexed_entries: usize,
}
#[cfg(test)]
mod tests {
use super::*;
use crate::types::MemoryType;
#[test]
fn test_tokenize() {
let tokens = SemanticScorer::tokenize("Hello, World! This is a test.");
assert_eq!(tokens, vec!["hello", "world", "this", "is", "test"]);
}
#[test]
fn test_stop_words_removal() {
let scorer = SemanticScorer::new();
let tokens = vec!["hello".to_string(), "the".to_string(), "world".to_string()];
let filtered = scorer.remove_stop_words(&tokens);
assert_eq!(filtered, vec!["hello", "world"]);
}
#[test]
fn test_tf_computation() {
let tokens = vec!["hello".to_string(), "hello".to_string(), "world".to_string()];
let tf = SemanticScorer::compute_tf(&tokens);
let hello_tf = tf.get("hello").unwrap();
let world_tf = tf.get("world").unwrap();
// Allow for floating point comparison
assert!((hello_tf - (2.0 / 3.0)).abs() < 0.001);
assert!((world_tf - (1.0 / 3.0)).abs() < 0.001);
}
#[test]
fn test_cosine_similarity() {
let mut v1 = HashMap::new();
v1.insert("a".to_string(), 1.0);
v1.insert("b".to_string(), 2.0);
let mut v2 = HashMap::new();
v2.insert("a".to_string(), 1.0);
v2.insert("b".to_string(), 2.0);
// Identical vectors should have similarity 1.0
let sim = SemanticScorer::cosine_similarity(&v1, &v2);
assert!((sim - 1.0).abs() < 0.001);
// Orthogonal vectors should have similarity 0.0
let mut v3 = HashMap::new();
v3.insert("c".to_string(), 1.0);
let sim2 = SemanticScorer::cosine_similarity(&v1, &v3);
assert!((sim2 - 0.0).abs() < 0.001);
}
#[test]
fn test_index_and_score() {
let mut scorer = SemanticScorer::new();
let entry1 = MemoryEntry::new(
"test",
MemoryType::Knowledge,
"rust",
"Rust is a systems programming language focused on safety and performance".to_string(),
).with_keywords(vec!["rust".to_string(), "programming".to_string(), "safety".to_string()]);
let entry2 = MemoryEntry::new(
"test",
MemoryType::Knowledge,
"python",
"Python is a high-level programming language".to_string(),
).with_keywords(vec!["python".to_string(), "programming".to_string()]);
scorer.index_entry(&entry1);
scorer.index_entry(&entry2);
// Query for Rust should score higher on entry1
let score1 = scorer.score_similarity("rust safety", &entry1);
let score2 = scorer.score_similarity("rust safety", &entry2);
assert!(score1 > score2, "Rust query should score higher on Rust entry");
}
#[test]
fn test_stats() {
let mut scorer = SemanticScorer::new();
let entry = MemoryEntry::new(
"test",
MemoryType::Knowledge,
"test",
"Hello world".to_string(),
);
scorer.index_entry(&entry);
let stats = scorer.stats();
assert_eq!(stats.total_documents, 1);
assert_eq!(stats.indexed_entries, 1);
assert!(stats.unique_terms > 0);
}
}

View File

@@ -0,0 +1,348 @@
//! Memory Retriever - Retrieves relevant memories from OpenViking
//!
//! This module provides the `MemoryRetriever` which performs semantic search
//! over stored memories to find contextually relevant information.
//! Uses multiple retrieval strategies and intelligent reranking.
use crate::retrieval::{MemoryCache, QueryAnalyzer, SemanticScorer};
use crate::types::{MemoryEntry, MemoryType, RetrievalConfig, RetrievalResult};
use crate::viking_adapter::{FindOptions, VikingAdapter};
use std::sync::Arc;
use tokio::sync::RwLock;
use zclaw_types::{AgentId, Result};
/// Memory Retriever - retrieves relevant memories from OpenViking
pub struct MemoryRetriever {
/// OpenViking adapter
viking: Arc<VikingAdapter>,
/// Retrieval configuration
config: RetrievalConfig,
/// Semantic scorer for similarity computation
scorer: RwLock<SemanticScorer>,
/// Query analyzer
analyzer: QueryAnalyzer,
/// Memory cache
cache: MemoryCache,
}
impl MemoryRetriever {
/// Create a new memory retriever
pub fn new(viking: Arc<VikingAdapter>) -> Self {
Self {
viking,
config: RetrievalConfig::default(),
scorer: RwLock::new(SemanticScorer::new()),
analyzer: QueryAnalyzer::new(),
cache: MemoryCache::default_config(),
}
}
/// Create with custom configuration
pub fn with_config(mut self, config: RetrievalConfig) -> Self {
self.config = config;
self
}
/// Retrieve relevant memories for a query
///
/// This method:
/// 1. Analyzes the query to determine intent and keywords
/// 2. Searches for preferences matching the query
/// 3. Searches for relevant knowledge
/// 4. Searches for applicable experience
/// 5. Reranks results using semantic similarity
/// 6. Applies token budget constraints
pub async fn retrieve(
&self,
agent_id: &AgentId,
query: &str,
) -> Result<RetrievalResult> {
tracing::debug!("[MemoryRetriever] Retrieving memories for query: {}", query);
// Analyze query
let analyzed = self.analyzer.analyze(query);
tracing::debug!(
"[MemoryRetriever] Query analysis: intent={:?}, keywords={:?}",
analyzed.intent,
analyzed.keywords
);
// Retrieve each type with budget constraints and reranking
let preferences = self
.retrieve_and_rerank(
&agent_id.to_string(),
MemoryType::Preference,
query,
&analyzed.keywords,
self.config.max_results_per_type,
self.config.preference_budget,
)
.await?;
let knowledge = self
.retrieve_and_rerank(
&agent_id.to_string(),
MemoryType::Knowledge,
query,
&analyzed.keywords,
self.config.max_results_per_type,
self.config.knowledge_budget,
)
.await?;
let experience = self
.retrieve_and_rerank(
&agent_id.to_string(),
MemoryType::Experience,
query,
&analyzed.keywords,
self.config.max_results_per_type / 2,
self.config.experience_budget,
)
.await?;
let total_tokens = preferences.iter()
.chain(knowledge.iter())
.chain(experience.iter())
.map(|m| m.estimated_tokens())
.sum();
// Update cache with retrieved entries
for entry in preferences.iter().chain(knowledge.iter()).chain(experience.iter()) {
self.cache.put(entry.clone()).await;
}
tracing::info!(
"[MemoryRetriever] Retrieved {} preferences, {} knowledge, {} experience ({} tokens)",
preferences.len(),
knowledge.len(),
experience.len(),
total_tokens
);
Ok(RetrievalResult {
preferences,
knowledge,
experience,
total_tokens,
})
}
/// Retrieve and rerank memories by type
async fn retrieve_and_rerank(
&self,
agent_id: &str,
memory_type: MemoryType,
query: &str,
keywords: &[String],
max_results: usize,
token_budget: usize,
) -> Result<Vec<MemoryEntry>> {
// Build scope for OpenViking search
let scope = format!("agent://{}/{}", agent_id, memory_type);
// Generate search queries (original + expanded)
let analyzed_for_search = crate::retrieval::query::AnalyzedQuery {
original: query.to_string(),
keywords: keywords.to_vec(),
intent: crate::retrieval::query::QueryIntent::General,
target_types: vec![],
expansions: vec![],
};
let search_queries = self.analyzer.generate_search_queries(&analyzed_for_search);
// Search with multiple queries and deduplicate
let mut all_results = Vec::new();
let mut seen_uris = std::collections::HashSet::new();
for search_query in search_queries {
let options = FindOptions {
scope: Some(scope.clone()),
limit: Some(max_results * 2),
min_similarity: Some(self.config.min_similarity),
};
let results = self.viking.find(&search_query, options).await?;
for entry in results {
if seen_uris.insert(entry.uri.clone()) {
all_results.push(entry);
}
}
}
// Rerank using semantic similarity
let scored = self.rerank_entries(query, all_results).await;
// Apply token budget
let mut filtered = Vec::new();
let mut used_tokens = 0;
for entry in scored {
let tokens = entry.estimated_tokens();
if used_tokens + tokens <= token_budget {
used_tokens += tokens;
filtered.push(entry);
}
if filtered.len() >= max_results {
break;
}
}
Ok(filtered)
}
/// Rerank entries using semantic similarity
async fn rerank_entries(
&self,
query: &str,
entries: Vec<MemoryEntry>,
) -> Vec<MemoryEntry> {
if entries.is_empty() {
return entries;
}
let mut scorer = self.scorer.write().await;
// Index entries for semantic search
for entry in &entries {
scorer.index_entry(entry);
}
// Score each entry
let mut scored: Vec<(f32, MemoryEntry)> = entries
.into_iter()
.map(|entry| {
let score = scorer.score_similarity(query, &entry);
(score, entry)
})
.collect();
// Sort by score (descending), then by importance and access count
scored.sort_by(|a, b| {
b.0.partial_cmp(&a.0)
.unwrap_or(std::cmp::Ordering::Equal)
.then_with(|| b.1.importance.cmp(&a.1.importance))
.then_with(|| b.1.access_count.cmp(&a.1.access_count))
});
scored.into_iter().map(|(_, entry)| entry).collect()
}
/// Retrieve a specific memory by URI (with cache)
pub async fn get_by_uri(&self, uri: &str) -> Result<Option<MemoryEntry>> {
// Check cache first
if let Some(cached) = self.cache.get(uri).await {
return Ok(Some(cached));
}
// Fall back to storage
let result = self.viking.get(uri).await?;
// Update cache
if let Some(ref entry) = result {
self.cache.put(entry.clone()).await;
}
Ok(result)
}
/// Get all memories for an agent (for debugging/admin)
pub async fn get_all_memories(&self, agent_id: &AgentId) -> Result<Vec<MemoryEntry>> {
let scope = format!("agent://{}", agent_id);
let options = FindOptions {
scope: Some(scope),
limit: None,
min_similarity: None,
};
self.viking.find("", options).await
}
/// Get memory statistics for an agent
pub async fn get_stats(&self, agent_id: &AgentId) -> Result<MemoryStats> {
let all = self.get_all_memories(agent_id).await?;
let preference_count = all.iter().filter(|m| m.memory_type == MemoryType::Preference).count();
let knowledge_count = all.iter().filter(|m| m.memory_type == MemoryType::Knowledge).count();
let experience_count = all.iter().filter(|m| m.memory_type == MemoryType::Experience).count();
Ok(MemoryStats {
total_count: all.len(),
preference_count,
knowledge_count,
experience_count,
cache_hit_rate: self.cache.hit_rate().await,
})
}
/// Clear the semantic index
pub async fn clear_index(&self) {
let mut scorer = self.scorer.write().await;
scorer.clear();
}
/// Get cache statistics
pub async fn cache_stats(&self) -> (usize, f32) {
let size = self.cache.size().await;
let hit_rate = self.cache.hit_rate().await;
(size, hit_rate)
}
/// Warm up cache with hot entries
pub async fn warmup_cache(&self, agent_id: &AgentId) -> Result<usize> {
let all = self.get_all_memories(agent_id).await?;
// Sort by access count to get hot entries
let mut sorted = all;
sorted.sort_by(|a, b| b.access_count.cmp(&a.access_count));
// Take top 50 hot entries
let hot: Vec<_> = sorted.into_iter().take(50).collect();
let count = hot.len();
self.cache.warmup(hot).await;
Ok(count)
}
}
/// Memory statistics
#[derive(Debug, Clone)]
pub struct MemoryStats {
pub total_count: usize,
pub preference_count: usize,
pub knowledge_count: usize,
pub experience_count: usize,
pub cache_hit_rate: f32,
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_retrieval_config_default() {
let config = RetrievalConfig::default();
assert_eq!(config.max_tokens, 500);
assert_eq!(config.preference_budget, 200);
assert_eq!(config.knowledge_budget, 200);
}
#[test]
fn test_memory_type_scope() {
let scope = format!("agent://test-agent/{}", MemoryType::Preference);
assert!(scope.contains("test-agent"));
assert!(scope.contains("preferences"));
}
#[tokio::test]
async fn test_retriever_creation() {
let viking = Arc::new(VikingAdapter::in_memory());
let retriever = MemoryRetriever::new(viking);
let stats = retriever.cache_stats().await;
assert_eq!(stats.0, 0); // Cache size should be 0
}
}

View File

@@ -0,0 +1,9 @@
//! Storage backends for ZCLAW Growth System
//!
//! This module provides multiple storage backend implementations:
//! - `InMemoryStorage`: Fast in-memory storage for testing and development
//! - `SqliteStorage`: Persistent SQLite storage for production use
mod sqlite;
pub use sqlite::SqliteStorage;

View File

@@ -0,0 +1,563 @@
//! SQLite Storage Backend
//!
//! Persistent storage backend using SQLite for production use.
//! Provides efficient querying and full-text search capabilities.
use crate::retrieval::semantic::SemanticScorer;
use crate::types::MemoryEntry;
use crate::viking_adapter::{FindOptions, VikingStorage};
use async_trait::async_trait;
use sqlx::sqlite::{SqlitePool, SqlitePoolOptions, SqliteRow};
use sqlx::Row;
use std::path::PathBuf;
use std::sync::Arc;
use tokio::sync::RwLock;
use zclaw_types::Result;
use zclaw_types::ZclawError;
/// SQLite storage backend with TF-IDF semantic scoring
pub struct SqliteStorage {
/// Database connection pool
pool: SqlitePool,
/// Semantic scorer for similarity computation
scorer: Arc<RwLock<SemanticScorer>>,
/// Database path (for reference)
#[allow(dead_code)]
path: PathBuf,
}
/// Database row structure for memory entry
struct MemoryRow {
uri: String,
memory_type: String,
content: String,
keywords: String,
importance: i32,
access_count: i32,
created_at: String,
last_accessed: String,
}
impl SqliteStorage {
/// Create a new SQLite storage at the given path
pub async fn new(path: impl Into<PathBuf>) -> Result<Self> {
let path = path.into();
// Ensure parent directory exists
if let Some(parent) = path.parent() {
if parent.to_str() != Some(":memory:") {
tokio::fs::create_dir_all(parent).await.map_err(|e| {
ZclawError::StorageError(format!("Failed to create storage directory: {}", e))
})?;
}
}
// Build connection string
let db_url = if path.to_str() == Some(":memory:") {
"sqlite::memory:".to_string()
} else {
format!("sqlite:{}?mode=rwc", path.to_string_lossy())
};
// Create connection pool
let pool = SqlitePoolOptions::new()
.max_connections(5)
.connect(&db_url)
.await
.map_err(|e| ZclawError::StorageError(format!("Failed to connect to database: {}", e)))?;
let storage = Self {
pool,
scorer: Arc::new(RwLock::new(SemanticScorer::new())),
path,
};
storage.initialize_schema().await?;
storage.warmup_scorer().await?;
Ok(storage)
}
/// Create an in-memory SQLite database (for testing)
pub async fn in_memory() -> Self {
Self::new(":memory:").await.expect("Failed to create in-memory database")
}
/// Initialize database schema with FTS5
async fn initialize_schema(&self) -> Result<()> {
// Create main memories table
sqlx::query(
r#"
CREATE TABLE IF NOT EXISTS memories (
uri TEXT PRIMARY KEY,
memory_type TEXT NOT NULL,
content TEXT NOT NULL,
keywords TEXT NOT NULL DEFAULT '[]',
importance INTEGER NOT NULL DEFAULT 5,
access_count INTEGER NOT NULL DEFAULT 0,
created_at TEXT NOT NULL,
last_accessed TEXT NOT NULL
)
"#,
)
.execute(&self.pool)
.await
.map_err(|e| ZclawError::StorageError(format!("Failed to create memories table: {}", e)))?;
// Create FTS5 virtual table for full-text search
sqlx::query(
r#"
CREATE VIRTUAL TABLE IF NOT EXISTS memories_fts USING fts5(
uri,
content,
keywords,
tokenize='unicode61'
)
"#,
)
.execute(&self.pool)
.await
.map_err(|e| ZclawError::StorageError(format!("Failed to create FTS5 table: {}", e)))?;
// Create index on memory_type for filtering
sqlx::query("CREATE INDEX IF NOT EXISTS idx_memory_type ON memories(memory_type)")
.execute(&self.pool)
.await
.map_err(|e| ZclawError::StorageError(format!("Failed to create index: {}", e)))?;
// Create index on importance for sorting
sqlx::query("CREATE INDEX IF NOT EXISTS idx_importance ON memories(importance DESC)")
.execute(&self.pool)
.await
.map_err(|e| ZclawError::StorageError(format!("Failed to create importance index: {}", e)))?;
// Create metadata table
sqlx::query(
r#"
CREATE TABLE IF NOT EXISTS metadata (
key TEXT PRIMARY KEY,
json TEXT NOT NULL
)
"#,
)
.execute(&self.pool)
.await
.map_err(|e| ZclawError::StorageError(format!("Failed to create metadata table: {}", e)))?;
tracing::info!("[SqliteStorage] Database schema initialized");
Ok(())
}
/// Warmup semantic scorer with existing entries
async fn warmup_scorer(&self) -> Result<()> {
let rows = sqlx::query_as::<_, MemoryRow>(
"SELECT uri, memory_type, content, keywords, importance, access_count, created_at, last_accessed FROM memories"
)
.fetch_all(&self.pool)
.await
.map_err(|e| ZclawError::StorageError(format!("Failed to load memories for warmup: {}", e)))?;
let mut scorer = self.scorer.write().await;
for row in rows {
let entry = self.row_to_entry(&row);
scorer.index_entry(&entry);
}
let stats = scorer.stats();
tracing::info!(
"[SqliteStorage] Warmed up scorer with {} entries, {} terms",
stats.indexed_entries,
stats.unique_terms
);
Ok(())
}
/// Convert database row to MemoryEntry
fn row_to_entry(&self, row: &MemoryRow) -> MemoryEntry {
let memory_type = crate::types::MemoryType::parse(&row.memory_type);
let keywords: Vec<String> = serde_json::from_str(&row.keywords).unwrap_or_default();
let created_at = chrono::DateTime::parse_from_rfc3339(&row.created_at)
.map(|dt| dt.with_timezone(&chrono::Utc))
.unwrap_or_else(|_| chrono::Utc::now());
let last_accessed = chrono::DateTime::parse_from_rfc3339(&row.last_accessed)
.map(|dt| dt.with_timezone(&chrono::Utc))
.unwrap_or_else(|_| chrono::Utc::now());
MemoryEntry {
uri: row.uri.clone(),
memory_type,
content: row.content.clone(),
keywords,
importance: row.importance as u8,
access_count: row.access_count as u32,
created_at,
last_accessed,
}
}
/// Update access count and last accessed time
async fn touch_entry(&self, uri: &str) -> Result<()> {
let now = chrono::Utc::now().to_rfc3339();
sqlx::query(
"UPDATE memories SET access_count = access_count + 1, last_accessed = ? WHERE uri = ?"
)
.bind(&now)
.bind(uri)
.execute(&self.pool)
.await
.map_err(|e| ZclawError::StorageError(format!("Failed to update access count: {}", e)))?;
Ok(())
}
}
impl sqlx::FromRow<'_, SqliteRow> for MemoryRow {
fn from_row(row: &SqliteRow) -> sqlx::Result<Self> {
Ok(MemoryRow {
uri: row.try_get("uri")?,
memory_type: row.try_get("memory_type")?,
content: row.try_get("content")?,
keywords: row.try_get("keywords")?,
importance: row.try_get("importance")?,
access_count: row.try_get("access_count")?,
created_at: row.try_get("created_at")?,
last_accessed: row.try_get("last_accessed")?,
})
}
}
#[async_trait]
impl VikingStorage for SqliteStorage {
async fn store(&self, entry: &MemoryEntry) -> Result<()> {
let keywords_json = serde_json::to_string(&entry.keywords)
.map_err(|e| ZclawError::StorageError(format!("Failed to serialize keywords: {}", e)))?;
let created_at = entry.created_at.to_rfc3339();
let last_accessed = entry.last_accessed.to_rfc3339();
let memory_type = entry.memory_type.to_string();
// Insert into main table
sqlx::query(
r#"
INSERT OR REPLACE INTO memories
(uri, memory_type, content, keywords, importance, access_count, created_at, last_accessed)
VALUES (?, ?, ?, ?, ?, ?, ?, ?)
"#,
)
.bind(&entry.uri)
.bind(&memory_type)
.bind(&entry.content)
.bind(&keywords_json)
.bind(entry.importance as i32)
.bind(entry.access_count as i32)
.bind(&created_at)
.bind(&last_accessed)
.execute(&self.pool)
.await
.map_err(|e| ZclawError::StorageError(format!("Failed to store memory: {}", e)))?;
// Update FTS index - delete old and insert new
let _ = sqlx::query("DELETE FROM memories_fts WHERE uri = ?")
.bind(&entry.uri)
.execute(&self.pool)
.await;
let keywords_text = entry.keywords.join(" ");
let _ = sqlx::query(
r#"
INSERT INTO memories_fts (uri, content, keywords)
VALUES (?, ?, ?)
"#,
)
.bind(&entry.uri)
.bind(&entry.content)
.bind(&keywords_text)
.execute(&self.pool)
.await;
// Update semantic scorer
let mut scorer = self.scorer.write().await;
scorer.index_entry(entry);
tracing::debug!("[SqliteStorage] Stored memory: {}", entry.uri);
Ok(())
}
async fn get(&self, uri: &str) -> Result<Option<MemoryEntry>> {
let row = sqlx::query_as::<_, MemoryRow>(
"SELECT uri, memory_type, content, keywords, importance, access_count, created_at, last_accessed FROM memories WHERE uri = ?"
)
.bind(uri)
.fetch_optional(&self.pool)
.await
.map_err(|e| ZclawError::StorageError(format!("Failed to get memory: {}", e)))?;
if let Some(row) = row {
let entry = self.row_to_entry(&row);
// Update access count
self.touch_entry(&entry.uri).await?;
Ok(Some(entry))
} else {
Ok(None)
}
}
async fn find(&self, query: &str, options: FindOptions) -> Result<Vec<MemoryEntry>> {
// Get all matching entries
let rows = if let Some(ref scope) = options.scope {
sqlx::query_as::<_, MemoryRow>(
"SELECT uri, memory_type, content, keywords, importance, access_count, created_at, last_accessed FROM memories WHERE uri LIKE ?"
)
.bind(format!("{}%", scope))
.fetch_all(&self.pool)
.await
.map_err(|e| ZclawError::StorageError(format!("Failed to find memories: {}", e)))?
} else {
sqlx::query_as::<_, MemoryRow>(
"SELECT uri, memory_type, content, keywords, importance, access_count, created_at, last_accessed FROM memories"
)
.fetch_all(&self.pool)
.await
.map_err(|e| ZclawError::StorageError(format!("Failed to find memories: {}", e)))?
};
// Convert to entries and compute semantic scores
let scorer = self.scorer.read().await;
let mut scored_entries: Vec<(f32, MemoryEntry)> = Vec::new();
for row in rows {
let entry = self.row_to_entry(&row);
// Compute semantic score using TF-IDF
let semantic_score = scorer.score_similarity(query, &entry);
// Apply similarity threshold
if let Some(min_similarity) = options.min_similarity {
if semantic_score < min_similarity {
continue;
}
}
scored_entries.push((semantic_score, entry));
}
// Sort by score (descending), then by importance and access count
scored_entries.sort_by(|a, b| {
b.0.partial_cmp(&a.0)
.unwrap_or(std::cmp::Ordering::Equal)
.then_with(|| b.1.importance.cmp(&a.1.importance))
.then_with(|| b.1.access_count.cmp(&a.1.access_count))
});
// Apply limit
if let Some(limit) = options.limit {
scored_entries.truncate(limit);
}
Ok(scored_entries.into_iter().map(|(_, entry)| entry).collect())
}
async fn find_by_prefix(&self, prefix: &str) -> Result<Vec<MemoryEntry>> {
let rows = sqlx::query_as::<_, MemoryRow>(
"SELECT uri, memory_type, content, keywords, importance, access_count, created_at, last_accessed FROM memories WHERE uri LIKE ?"
)
.bind(format!("{}%", prefix))
.fetch_all(&self.pool)
.await
.map_err(|e| ZclawError::StorageError(format!("Failed to find by prefix: {}", e)))?;
let entries = rows.iter().map(|row| self.row_to_entry(row)).collect();
Ok(entries)
}
async fn delete(&self, uri: &str) -> Result<()> {
sqlx::query("DELETE FROM memories WHERE uri = ?")
.bind(uri)
.execute(&self.pool)
.await
.map_err(|e| ZclawError::StorageError(format!("Failed to delete memory: {}", e)))?;
// Remove from FTS
let _ = sqlx::query("DELETE FROM memories_fts WHERE uri = ?")
.bind(uri)
.execute(&self.pool)
.await;
// Remove from scorer
let mut scorer = self.scorer.write().await;
scorer.remove_entry(uri);
tracing::debug!("[SqliteStorage] Deleted memory: {}", uri);
Ok(())
}
async fn store_metadata_json(&self, key: &str, json: &str) -> Result<()> {
sqlx::query(
r#"
INSERT OR REPLACE INTO metadata (key, json)
VALUES (?, ?)
"#,
)
.bind(key)
.bind(json)
.execute(&self.pool)
.await
.map_err(|e| ZclawError::StorageError(format!("Failed to store metadata: {}", e)))?;
Ok(())
}
async fn get_metadata_json(&self, key: &str) -> Result<Option<String>> {
let result = sqlx::query_scalar::<_, String>("SELECT json FROM metadata WHERE key = ?")
.bind(key)
.fetch_optional(&self.pool)
.await
.map_err(|e| ZclawError::StorageError(format!("Failed to get metadata: {}", e)))?;
Ok(result)
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::types::MemoryType;
#[tokio::test]
async fn test_sqlite_storage_store_and_get() {
let storage = SqliteStorage::in_memory().await;
let entry = MemoryEntry::new(
"test-agent",
MemoryType::Preference,
"style",
"User prefers concise responses".to_string(),
);
storage.store(&entry).await.unwrap();
let retrieved = storage.get(&entry.uri).await.unwrap();
assert!(retrieved.is_some());
assert_eq!(retrieved.unwrap().content, "User prefers concise responses");
}
#[tokio::test]
async fn test_sqlite_storage_semantic_search() {
let storage = SqliteStorage::in_memory().await;
// Store entries with different content
let entry1 = MemoryEntry::new(
"agent-1",
MemoryType::Knowledge,
"rust",
"Rust is a systems programming language focused on safety".to_string(),
).with_keywords(vec!["rust".to_string(), "programming".to_string(), "safety".to_string()]);
let entry2 = MemoryEntry::new(
"agent-1",
MemoryType::Knowledge,
"python",
"Python is a high-level programming language".to_string(),
).with_keywords(vec!["python".to_string(), "programming".to_string()]);
storage.store(&entry1).await.unwrap();
storage.store(&entry2).await.unwrap();
// Search for "rust safety"
let results = storage.find(
"rust safety",
FindOptions {
scope: Some("agent://agent-1".to_string()),
limit: Some(10),
min_similarity: Some(0.1),
},
).await.unwrap();
// Should find the Rust entry with higher score
assert!(!results.is_empty());
assert!(results[0].content.contains("Rust"));
}
#[tokio::test]
async fn test_sqlite_storage_delete() {
let storage = SqliteStorage::in_memory().await;
let entry = MemoryEntry::new(
"test-agent",
MemoryType::Preference,
"style",
"test".to_string(),
);
storage.store(&entry).await.unwrap();
storage.delete(&entry.uri).await.unwrap();
let retrieved = storage.get(&entry.uri).await.unwrap();
assert!(retrieved.is_none());
}
#[tokio::test]
async fn test_persistence() {
let path = std::env::temp_dir().join("zclaw_test_memories.db");
// Clean up any existing test db
let _ = std::fs::remove_file(&path);
// Create and store
{
let storage = SqliteStorage::new(&path).await.unwrap();
let entry = MemoryEntry::new(
"persist-test",
MemoryType::Knowledge,
"test",
"This should persist".to_string(),
);
storage.store(&entry).await.unwrap();
}
// Reopen and verify
{
let storage = SqliteStorage::new(&path).await.unwrap();
let results = storage.find_by_prefix("agent://persist-test").await.unwrap();
assert!(!results.is_empty());
assert_eq!(results[0].content, "This should persist");
}
// Clean up
let _ = std::fs::remove_file(&path);
}
#[tokio::test]
async fn test_metadata_storage() {
let storage = SqliteStorage::in_memory().await;
let json = r#"{"test": "value"}"#;
storage.store_metadata_json("test-key", json).await.unwrap();
let retrieved = storage.get_metadata_json("test-key").await.unwrap();
assert_eq!(retrieved, Some(json.to_string()));
}
#[tokio::test]
async fn test_access_count() {
let storage = SqliteStorage::in_memory().await;
let entry = MemoryEntry::new(
"test-agent",
MemoryType::Knowledge,
"test",
"test content".to_string(),
);
storage.store(&entry).await.unwrap();
// Access multiple times
for _ in 0..3 {
let _ = storage.get(&entry.uri).await.unwrap();
}
let retrieved = storage.get(&entry.uri).await.unwrap().unwrap();
assert!(retrieved.access_count >= 3);
}
}

View File

@@ -0,0 +1,212 @@
//! Growth Tracker - Tracks agent growth metrics and evolution
//!
//! This module provides the `GrowthTracker` which monitors and records
//! the evolution of an agent's capabilities and knowledge over time.
use crate::types::{GrowthStats, MemoryType};
use crate::viking_adapter::VikingAdapter;
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::sync::Arc;
use zclaw_types::{AgentId, Result};
/// Growth Tracker - tracks agent growth metrics
pub struct GrowthTracker {
/// OpenViking adapter for storage
viking: Arc<VikingAdapter>,
}
impl GrowthTracker {
/// Create a new growth tracker
pub fn new(viking: Arc<VikingAdapter>) -> Self {
Self { viking }
}
/// Get current growth statistics for an agent
pub async fn get_stats(&self, agent_id: &AgentId) -> Result<GrowthStats> {
// Query all memories for the agent
let memories = self.viking.find_by_prefix(&format!("agent://{}", agent_id)).await?;
let mut stats = GrowthStats::default();
stats.total_memories = memories.len();
for memory in &memories {
match memory.memory_type {
MemoryType::Preference => stats.preference_count += 1,
MemoryType::Knowledge => stats.knowledge_count += 1,
MemoryType::Experience => stats.experience_count += 1,
MemoryType::Session => stats.sessions_processed += 1,
}
}
// Get last learning time from metadata
let meta: Option<AgentMetadata> = self.viking
.get_metadata(&format!("agent://{}", agent_id))
.await?;
if let Some(meta) = meta {
stats.last_learning_time = meta.last_learning_time;
}
Ok(stats)
}
/// Record a learning event
pub async fn record_learning(
&self,
agent_id: &AgentId,
session_id: &str,
memories_extracted: usize,
) -> Result<()> {
let event = LearningEvent {
agent_id: agent_id.to_string(),
session_id: session_id.to_string(),
memories_extracted,
timestamp: Utc::now(),
};
// Store learning event
self.viking
.store_metadata(
&format!("agent://{}/events/{}", agent_id, session_id),
&event,
)
.await?;
// Update last learning time
self.viking
.store_metadata(
&format!("agent://{}", agent_id),
&AgentMetadata {
last_learning_time: Some(Utc::now()),
total_learning_events: None, // Will be computed
},
)
.await?;
tracing::info!(
"[GrowthTracker] Recorded learning event: agent={}, session={}, memories={}",
agent_id,
session_id,
memories_extracted
);
Ok(())
}
/// Get growth timeline for an agent
pub async fn get_timeline(&self, agent_id: &AgentId) -> Result<Vec<LearningEvent>> {
let memories = self
.viking
.find_by_prefix(&format!("agent://{}/events/", agent_id))
.await?;
// Parse events from stored memory content
let mut timeline = Vec::new();
for memory in memories {
if let Ok(event) = serde_json::from_str::<LearningEvent>(&memory.content) {
timeline.push(event);
}
}
// Sort by timestamp descending
timeline.sort_by(|a, b| b.timestamp.cmp(&a.timestamp));
Ok(timeline)
}
/// Calculate growth velocity (memories per day)
pub async fn get_growth_velocity(&self, agent_id: &AgentId) -> Result<f64> {
let timeline = self.get_timeline(agent_id).await?;
if timeline.is_empty() {
return Ok(0.0);
}
// Get first and last event
let first = timeline.iter().min_by_key(|e| e.timestamp);
let last = timeline.iter().max_by_key(|e| e.timestamp);
match (first, last) {
(Some(first), Some(last)) => {
let days = (last.timestamp - first.timestamp).num_days().max(1) as f64;
let total_memories: usize = timeline.iter().map(|e| e.memories_extracted).sum();
Ok(total_memories as f64 / days)
}
_ => Ok(0.0),
}
}
/// Get memory distribution by category
pub async fn get_memory_distribution(
&self,
agent_id: &AgentId,
) -> Result<HashMap<String, usize>> {
let memories = self.viking.find_by_prefix(&format!("agent://{}", agent_id)).await?;
let mut distribution = HashMap::new();
for memory in memories {
*distribution.entry(memory.memory_type.to_string()).or_insert(0) += 1;
}
Ok(distribution)
}
}
/// Learning event record
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct LearningEvent {
/// Agent ID
pub agent_id: String,
/// Session ID where learning occurred
pub session_id: String,
/// Number of memories extracted
pub memories_extracted: usize,
/// Event timestamp
pub timestamp: DateTime<Utc>,
}
/// Agent metadata stored in OpenViking
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AgentMetadata {
/// Last learning time
pub last_learning_time: Option<DateTime<Utc>>,
/// Total learning events (computed)
pub total_learning_events: Option<usize>,
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_learning_event_serialization() {
let event = LearningEvent {
agent_id: "test-agent".to_string(),
session_id: "test-session".to_string(),
memories_extracted: 5,
timestamp: Utc::now(),
};
let json = serde_json::to_string(&event).unwrap();
let parsed: LearningEvent = serde_json::from_str(&json).unwrap();
assert_eq!(parsed.agent_id, event.agent_id);
assert_eq!(parsed.memories_extracted, event.memories_extracted);
}
#[test]
fn test_agent_metadata_serialization() {
let meta = AgentMetadata {
last_learning_time: Some(Utc::now()),
total_learning_events: Some(10),
};
let json = serde_json::to_string(&meta).unwrap();
let parsed: AgentMetadata = serde_json::from_str(&json).unwrap();
assert!(parsed.last_learning_time.is_some());
assert_eq!(parsed.total_learning_events, Some(10));
}
}

View File

@@ -0,0 +1,486 @@
//! Core type definitions for the ZCLAW Growth System
//!
//! This module defines the fundamental types used for memory management,
//! extraction, retrieval, and prompt injection.
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use zclaw_types::SessionId;
/// Memory type classification
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum MemoryType {
/// User preferences (communication style, format, language, etc.)
Preference,
/// Accumulated knowledge (user facts, domain knowledge, lessons learned)
Knowledge,
/// Skill/tool usage experience
Experience,
/// Conversation session history
Session,
}
impl std::fmt::Display for MemoryType {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
MemoryType::Preference => write!(f, "preferences"),
MemoryType::Knowledge => write!(f, "knowledge"),
MemoryType::Experience => write!(f, "experience"),
MemoryType::Session => write!(f, "sessions"),
}
}
}
impl std::str::FromStr for MemoryType {
type Err = String;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s.to_lowercase().as_str() {
"preferences" | "preference" => Ok(MemoryType::Preference),
"knowledge" => Ok(MemoryType::Knowledge),
"experience" => Ok(MemoryType::Experience),
"sessions" | "session" => Ok(MemoryType::Session),
_ => Err(format!("Unknown memory type: {}", s)),
}
}
}
impl MemoryType {
/// Parse memory type from string (returns Knowledge as default)
pub fn parse(s: &str) -> Self {
s.parse().unwrap_or(MemoryType::Knowledge)
}
}
/// Memory entry stored in OpenViking
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MemoryEntry {
/// URI in OpenViking format: agent://{agent_id}/{type}/{category}
pub uri: String,
/// Type of memory
pub memory_type: MemoryType,
/// Memory content
pub content: String,
/// Keywords for semantic search
pub keywords: Vec<String>,
/// Importance score (1-10)
pub importance: u8,
/// Number of times accessed
pub access_count: u32,
/// Creation timestamp
pub created_at: DateTime<Utc>,
/// Last access timestamp
pub last_accessed: DateTime<Utc>,
}
impl MemoryEntry {
/// Create a new memory entry
pub fn new(
agent_id: &str,
memory_type: MemoryType,
category: &str,
content: String,
) -> Self {
let uri = format!("agent://{}/{}/{}", agent_id, memory_type, category);
Self {
uri,
memory_type,
content,
keywords: Vec::new(),
importance: 5,
access_count: 0,
created_at: Utc::now(),
last_accessed: Utc::now(),
}
}
/// Add keywords to the memory entry
pub fn with_keywords(mut self, keywords: Vec<String>) -> Self {
self.keywords = keywords;
self
}
/// Set importance score
pub fn with_importance(mut self, importance: u8) -> Self {
self.importance = importance.min(10).max(1);
self
}
/// Mark as accessed
pub fn touch(&mut self) {
self.access_count += 1;
self.last_accessed = Utc::now();
}
/// Estimate token count (roughly 4 characters per token for mixed content)
/// More accurate estimation considering Chinese characters (1.5 tokens avg)
pub fn estimated_tokens(&self) -> usize {
let char_count = self.content.chars().count();
let cjk_count = self.content.chars().filter(|c| is_cjk(*c)).count();
let non_cjk_count = char_count - cjk_count;
// CJK: ~1.5 tokens per char, non-CJK: ~0.25 tokens per char
(cjk_count as f32 * 1.5 + non_cjk_count as f32 * 0.25).ceil() as usize
}
}
/// Extracted memory from conversation analysis
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ExtractedMemory {
/// Type of extracted memory
pub memory_type: MemoryType,
/// Category within the memory type
pub category: String,
/// Memory content
pub content: String,
/// Extraction confidence (0.0 - 1.0)
pub confidence: f32,
/// Source session ID
pub source_session: SessionId,
/// Keywords extracted
pub keywords: Vec<String>,
}
impl ExtractedMemory {
/// Create a new extracted memory
pub fn new(
memory_type: MemoryType,
category: impl Into<String>,
content: impl Into<String>,
source_session: SessionId,
) -> Self {
Self {
memory_type,
category: category.into(),
content: content.into(),
confidence: 0.8,
source_session,
keywords: Vec::new(),
}
}
/// Set confidence score
pub fn with_confidence(mut self, confidence: f32) -> Self {
self.confidence = confidence.clamp(0.0, 1.0);
self
}
/// Add keywords
pub fn with_keywords(mut self, keywords: Vec<String>) -> Self {
self.keywords = keywords;
self
}
/// Convert to MemoryEntry for storage
pub fn to_memory_entry(&self, agent_id: &str) -> MemoryEntry {
MemoryEntry::new(agent_id, self.memory_type, &self.category, self.content.clone())
.with_keywords(self.keywords.clone())
}
}
/// Retrieval configuration
#[derive(Debug, Clone)]
pub struct RetrievalConfig {
/// Total token budget for retrieved memories
pub max_tokens: usize,
/// Token budget for preferences
pub preference_budget: usize,
/// Token budget for knowledge
pub knowledge_budget: usize,
/// Token budget for experience
pub experience_budget: usize,
/// Minimum similarity threshold (0.0 - 1.0)
pub min_similarity: f32,
/// Maximum number of results per type
pub max_results_per_type: usize,
}
/// Check if character is CJK
fn is_cjk(c: char) -> bool {
matches!(c,
'\u{4E00}'..='\u{9FFF}' | // CJK Unified Ideographs
'\u{3400}'..='\u{4DBF}' | // CJK Unified Ideographs Extension A
'\u{20000}'..='\u{2A6DF}' | // CJK Unified Ideographs Extension B
'\u{F900}'..='\u{FAFF}' | // CJK Compatibility Ideographs
'\u{3040}'..='\u{309F}' | // Hiragana
'\u{30A0}'..='\u{30FF}' | // Katakana
'\u{AC00}'..='\u{D7AF}' // Hangul
)
}
impl Default for RetrievalConfig {
fn default() -> Self {
Self {
max_tokens: 500,
preference_budget: 200,
knowledge_budget: 200,
experience_budget: 100,
min_similarity: 0.7,
max_results_per_type: 5,
}
}
}
impl RetrievalConfig {
/// Create a config with custom token budget
pub fn with_budget(max_tokens: usize) -> Self {
let pref = (max_tokens as f32 * 0.4) as usize;
let knowledge = (max_tokens as f32 * 0.4) as usize;
let exp = max_tokens.saturating_sub(pref).saturating_sub(knowledge);
Self {
max_tokens,
preference_budget: pref,
knowledge_budget: knowledge,
experience_budget: exp,
min_similarity: 0.7,
max_results_per_type: 5,
}
}
}
/// Retrieval result containing memories by type
#[derive(Debug, Clone, Default)]
pub struct RetrievalResult {
/// Retrieved preferences
pub preferences: Vec<MemoryEntry>,
/// Retrieved knowledge
pub knowledge: Vec<MemoryEntry>,
/// Retrieved experience
pub experience: Vec<MemoryEntry>,
/// Total tokens used
pub total_tokens: usize,
}
impl RetrievalResult {
/// Check if result is empty
pub fn is_empty(&self) -> bool {
self.preferences.is_empty()
&& self.knowledge.is_empty()
&& self.experience.is_empty()
}
/// Get total memory count
pub fn total_count(&self) -> usize {
self.preferences.len() + self.knowledge.len() + self.experience.len()
}
/// Calculate total tokens from entries
pub fn calculate_tokens(&self) -> usize {
let tokens: usize = self.preferences.iter()
.chain(self.knowledge.iter())
.chain(self.experience.iter())
.map(|m| m.estimated_tokens())
.sum();
tokens
}
}
/// Extraction configuration
#[derive(Debug, Clone)]
pub struct ExtractionConfig {
/// Extract preferences from conversation
pub extract_preferences: bool,
/// Extract knowledge from conversation
pub extract_knowledge: bool,
/// Extract experience from conversation
pub extract_experience: bool,
/// Minimum confidence threshold for extraction
pub min_confidence: f32,
}
impl Default for ExtractionConfig {
fn default() -> Self {
Self {
extract_preferences: true,
extract_knowledge: true,
extract_experience: true,
min_confidence: 0.6,
}
}
}
/// Growth statistics for an agent
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct GrowthStats {
/// Total number of memories
pub total_memories: usize,
/// Number of preferences
pub preference_count: usize,
/// Number of knowledge entries
pub knowledge_count: usize,
/// Number of experience entries
pub experience_count: usize,
/// Total sessions processed
pub sessions_processed: usize,
/// Last learning timestamp
pub last_learning_time: Option<DateTime<Utc>>,
/// Average extraction confidence
pub avg_confidence: f32,
}
/// OpenViking URI builder
pub struct UriBuilder;
impl UriBuilder {
/// Build a preference URI
pub fn preference(agent_id: &str, category: &str) -> String {
format!("agent://{}/preferences/{}", agent_id, category)
}
/// Build a knowledge URI
pub fn knowledge(agent_id: &str, domain: &str) -> String {
format!("agent://{}/knowledge/{}", agent_id, domain)
}
/// Build an experience URI
pub fn experience(agent_id: &str, skill_id: &str) -> String {
format!("agent://{}/experience/{}", agent_id, skill_id)
}
/// Build a session URI
pub fn session(agent_id: &str, session_id: &str) -> String {
format!("agent://{}/sessions/{}", agent_id, session_id)
}
/// Parse agent ID from URI
pub fn parse_agent_id(uri: &str) -> Option<&str> {
uri.strip_prefix("agent://")?
.split('/')
.next()
}
/// Parse memory type from URI
pub fn parse_memory_type(uri: &str) -> Option<MemoryType> {
let after_agent = uri.strip_prefix("agent://")?;
let mut parts = after_agent.split('/');
parts.next()?; // Skip agent_id
match parts.next()? {
"preferences" => Some(MemoryType::Preference),
"knowledge" => Some(MemoryType::Knowledge),
"experience" => Some(MemoryType::Experience),
"sessions" => Some(MemoryType::Session),
_ => None,
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_memory_type_display() {
assert_eq!(format!("{}", MemoryType::Preference), "preferences");
assert_eq!(format!("{}", MemoryType::Knowledge), "knowledge");
assert_eq!(format!("{}", MemoryType::Experience), "experience");
assert_eq!(format!("{}", MemoryType::Session), "sessions");
}
#[test]
fn test_memory_entry_creation() {
let entry = MemoryEntry::new(
"test-agent",
MemoryType::Preference,
"communication-style",
"User prefers concise responses".to_string(),
);
assert_eq!(entry.uri, "agent://test-agent/preferences/communication-style");
assert_eq!(entry.importance, 5);
assert_eq!(entry.access_count, 0);
}
#[test]
fn test_memory_entry_touch() {
let mut entry = MemoryEntry::new(
"test-agent",
MemoryType::Knowledge,
"domain",
"content".to_string(),
);
entry.touch();
assert_eq!(entry.access_count, 1);
}
#[test]
fn test_estimated_tokens() {
let entry = MemoryEntry::new(
"test-agent",
MemoryType::Preference,
"test",
"This is a test content that should be around 10 tokens".to_string(),
);
// ~40 chars / 4 = ~10 tokens
assert!(entry.estimated_tokens() > 5);
assert!(entry.estimated_tokens() < 20);
}
#[test]
fn test_retrieval_config_default() {
let config = RetrievalConfig::default();
assert_eq!(config.max_tokens, 500);
assert_eq!(config.preference_budget, 200);
assert_eq!(config.knowledge_budget, 200);
assert_eq!(config.experience_budget, 100);
}
#[test]
fn test_retrieval_config_with_budget() {
let config = RetrievalConfig::with_budget(1000);
assert_eq!(config.max_tokens, 1000);
assert!(config.preference_budget >= 350);
assert!(config.knowledge_budget >= 350);
}
#[test]
fn test_uri_builder() {
let pref_uri = UriBuilder::preference("agent-1", "style");
assert_eq!(pref_uri, "agent://agent-1/preferences/style");
let knowledge_uri = UriBuilder::knowledge("agent-1", "rust");
assert_eq!(knowledge_uri, "agent://agent-1/knowledge/rust");
let exp_uri = UriBuilder::experience("agent-1", "browser");
assert_eq!(exp_uri, "agent://agent-1/experience/browser");
let session_uri = UriBuilder::session("agent-1", "session-123");
assert_eq!(session_uri, "agent://agent-1/sessions/session-123");
}
#[test]
fn test_uri_parser() {
let uri = "agent://agent-1/preferences/style";
assert_eq!(UriBuilder::parse_agent_id(uri), Some("agent-1"));
assert_eq!(UriBuilder::parse_memory_type(uri), Some(MemoryType::Preference));
let invalid_uri = "invalid-uri";
assert!(UriBuilder::parse_agent_id(invalid_uri).is_none());
assert!(UriBuilder::parse_memory_type(invalid_uri).is_none());
}
#[test]
fn test_retrieval_result() {
let result = RetrievalResult::default();
assert!(result.is_empty());
assert_eq!(result.total_count(), 0);
let result = RetrievalResult {
preferences: vec![MemoryEntry::new(
"agent-1",
MemoryType::Preference,
"style",
"test".to_string(),
)],
knowledge: vec![],
experience: vec![],
total_tokens: 0,
};
assert!(!result.is_empty());
assert_eq!(result.total_count(), 1);
}
}

View File

@@ -0,0 +1,362 @@
//! OpenViking Adapter - Interface to the OpenViking memory system
//!
//! This module provides the `VikingAdapter` which wraps the OpenViking
//! context database for storing and retrieving agent memories.
use crate::types::MemoryEntry;
use async_trait::async_trait;
use serde::{de::DeserializeOwned, Serialize};
use std::collections::HashMap;
use std::sync::Arc;
use zclaw_types::Result;
/// Search options for find operations
#[derive(Debug, Clone, Default)]
pub struct FindOptions {
/// Scope to search within (URI prefix)
pub scope: Option<String>,
/// Maximum results to return
pub limit: Option<usize>,
/// Minimum similarity threshold
pub min_similarity: Option<f32>,
}
/// VikingStorage trait - core storage operations (dyn-compatible)
#[async_trait]
pub trait VikingStorage: Send + Sync {
/// Store a memory entry
async fn store(&self, entry: &MemoryEntry) -> Result<()>;
/// Get a memory entry by URI
async fn get(&self, uri: &str) -> Result<Option<MemoryEntry>>;
/// Find memories by query with options
async fn find(&self, query: &str, options: FindOptions) -> Result<Vec<MemoryEntry>>;
/// Find memories by URI prefix
async fn find_by_prefix(&self, prefix: &str) -> Result<Vec<MemoryEntry>>;
/// Delete a memory by URI
async fn delete(&self, uri: &str) -> Result<()>;
/// Store metadata as JSON string
async fn store_metadata_json(&self, key: &str, json: &str) -> Result<()>;
/// Get metadata as JSON string
async fn get_metadata_json(&self, key: &str) -> Result<Option<String>>;
}
/// OpenViking adapter implementation
#[derive(Clone)]
pub struct VikingAdapter {
/// Storage backend
backend: Arc<dyn VikingStorage>,
}
impl VikingAdapter {
/// Create a new Viking adapter with a storage backend
pub fn new(backend: Arc<dyn VikingStorage>) -> Self {
Self { backend }
}
/// Create with in-memory storage (for testing)
pub fn in_memory() -> Self {
Self {
backend: Arc::new(InMemoryStorage::new()),
}
}
/// Store a memory entry
pub async fn store(&self, entry: &MemoryEntry) -> Result<()> {
self.backend.store(entry).await
}
/// Get a memory entry by URI
pub async fn get(&self, uri: &str) -> Result<Option<MemoryEntry>> {
self.backend.get(uri).await
}
/// Find memories by query
pub async fn find(&self, query: &str, options: FindOptions) -> Result<Vec<MemoryEntry>> {
self.backend.find(query, options).await
}
/// Find memories by URI prefix
pub async fn find_by_prefix(&self, prefix: &str) -> Result<Vec<MemoryEntry>> {
self.backend.find_by_prefix(prefix).await
}
/// Delete a memory
pub async fn delete(&self, uri: &str) -> Result<()> {
self.backend.delete(uri).await
}
/// Store metadata (typed)
pub async fn store_metadata<T: Serialize>(&self, key: &str, value: &T) -> Result<()> {
let json = serde_json::to_string(value)?;
self.backend.store_metadata_json(key, &json).await
}
/// Get metadata (typed)
pub async fn get_metadata<T: DeserializeOwned>(&self, key: &str) -> Result<Option<T>> {
match self.backend.get_metadata_json(key).await? {
Some(json) => {
let value: T = serde_json::from_str(&json)?;
Ok(Some(value))
}
None => Ok(None),
}
}
}
/// In-memory storage backend (for testing and development)
pub struct InMemoryStorage {
memories: std::sync::RwLock<HashMap<String, MemoryEntry>>,
metadata: std::sync::RwLock<HashMap<String, String>>,
}
impl InMemoryStorage {
/// Create a new in-memory storage
pub fn new() -> Self {
Self {
memories: std::sync::RwLock::new(HashMap::new()),
metadata: std::sync::RwLock::new(HashMap::new()),
}
}
}
impl Default for InMemoryStorage {
fn default() -> Self {
Self::new()
}
}
#[async_trait]
impl VikingStorage for InMemoryStorage {
async fn store(&self, entry: &MemoryEntry) -> Result<()> {
let mut memories = self.memories.write().unwrap();
memories.insert(entry.uri.clone(), entry.clone());
Ok(())
}
async fn get(&self, uri: &str) -> Result<Option<MemoryEntry>> {
let memories = self.memories.read().unwrap();
Ok(memories.get(uri).cloned())
}
async fn find(&self, query: &str, options: FindOptions) -> Result<Vec<MemoryEntry>> {
let memories = self.memories.read().unwrap();
let mut results: Vec<MemoryEntry> = memories
.values()
.filter(|entry| {
// Apply scope filter
if let Some(ref scope) = options.scope {
if !entry.uri.starts_with(scope) {
return false;
}
}
// Simple text matching (in real implementation, use semantic search)
if !query.is_empty() {
let query_lower = query.to_lowercase();
let content_lower = entry.content.to_lowercase();
let keywords_match = entry.keywords.iter().any(|k| k.to_lowercase().contains(&query_lower));
content_lower.contains(&query_lower) || keywords_match
} else {
true
}
})
.cloned()
.collect();
// Sort by importance and access count
results.sort_by(|a, b| {
b.importance
.cmp(&a.importance)
.then_with(|| b.access_count.cmp(&a.access_count))
});
// Apply limit
if let Some(limit) = options.limit {
results.truncate(limit);
}
Ok(results)
}
async fn find_by_prefix(&self, prefix: &str) -> Result<Vec<MemoryEntry>> {
let memories = self.memories.read().unwrap();
let results: Vec<MemoryEntry> = memories
.values()
.filter(|entry| entry.uri.starts_with(prefix))
.cloned()
.collect();
Ok(results)
}
async fn delete(&self, uri: &str) -> Result<()> {
let mut memories = self.memories.write().unwrap();
memories.remove(uri);
Ok(())
}
async fn store_metadata_json(&self, key: &str, json: &str) -> Result<()> {
let mut metadata = self.metadata.write().unwrap();
metadata.insert(key.to_string(), json.to_string());
Ok(())
}
async fn get_metadata_json(&self, key: &str) -> Result<Option<String>> {
let metadata = self.metadata.read().unwrap();
Ok(metadata.get(key).cloned())
}
}
/// OpenViking levels for storage
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum VikingLevel {
/// L0: Raw data (original content)
L0,
/// L1: Summarized content
L1,
/// L2: Keywords and metadata
L2,
}
impl std::fmt::Display for VikingLevel {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
VikingLevel::L0 => write!(f, "L0"),
VikingLevel::L1 => write!(f, "L1"),
VikingLevel::L2 => write!(f, "L2"),
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::types::MemoryType;
#[tokio::test]
async fn test_in_memory_storage_store_and_get() {
let storage = InMemoryStorage::new();
let entry = MemoryEntry::new(
"test-agent",
MemoryType::Preference,
"style",
"test content".to_string(),
);
storage.store(&entry).await.unwrap();
let retrieved = storage.get(&entry.uri).await.unwrap();
assert!(retrieved.is_some());
assert_eq!(retrieved.unwrap().content, "test content");
}
#[tokio::test]
async fn test_in_memory_storage_find() {
let storage = InMemoryStorage::new();
let entry1 = MemoryEntry::new(
"agent-1",
MemoryType::Knowledge,
"rust",
"Rust programming tips".to_string(),
);
let entry2 = MemoryEntry::new(
"agent-1",
MemoryType::Knowledge,
"python",
"Python programming tips".to_string(),
);
storage.store(&entry1).await.unwrap();
storage.store(&entry2).await.unwrap();
let results = storage
.find(
"Rust",
FindOptions {
scope: Some("agent://agent-1".to_string()),
limit: Some(10),
min_similarity: None,
},
)
.await
.unwrap();
assert_eq!(results.len(), 1);
assert!(results[0].content.contains("Rust"));
}
#[tokio::test]
async fn test_in_memory_storage_delete() {
let storage = InMemoryStorage::new();
let entry = MemoryEntry::new(
"test-agent",
MemoryType::Preference,
"style",
"test".to_string(),
);
storage.store(&entry).await.unwrap();
storage.delete(&entry.uri).await.unwrap();
let retrieved = storage.get(&entry.uri).await.unwrap();
assert!(retrieved.is_none());
}
#[tokio::test]
async fn test_metadata_storage() {
let storage = InMemoryStorage::new();
#[derive(Serialize, serde::Deserialize)]
struct TestData {
value: String,
}
let data = TestData {
value: "test".to_string(),
};
storage.store_metadata_json("test-key", &serde_json::to_string(&data).unwrap()).await.unwrap();
let json = storage.get_metadata_json("test-key").await.unwrap();
assert!(json.is_some());
let retrieved: TestData = serde_json::from_str(&json.unwrap()).unwrap();
assert_eq!(retrieved.value, "test");
}
#[tokio::test]
async fn test_viking_adapter_typed_metadata() {
let adapter = VikingAdapter::in_memory();
#[derive(Serialize, serde::Deserialize)]
struct TestData {
value: String,
}
let data = TestData {
value: "test".to_string(),
};
adapter.store_metadata("test-key", &data).await.unwrap();
let retrieved: Option<TestData> = adapter.get_metadata("test-key").await.unwrap();
assert!(retrieved.is_some());
assert_eq!(retrieved.unwrap().value, "test");
}
#[test]
fn test_viking_level_display() {
assert_eq!(format!("{}", VikingLevel::L0), "L0");
assert_eq!(format!("{}", VikingLevel::L1), "L1");
assert_eq!(format!("{}", VikingLevel::L2), "L2");
}
}

View File

@@ -0,0 +1,412 @@
//! Integration tests for ZCLAW Growth System
//!
//! Tests the complete flow: store → find → inject
use std::sync::Arc;
use zclaw_growth::{
FindOptions, MemoryEntry, MemoryRetriever, MemoryType, PromptInjector,
RetrievalConfig, RetrievalResult, SqliteStorage, VikingAdapter,
};
use zclaw_types::AgentId;
/// Test complete memory lifecycle
#[tokio::test]
async fn test_memory_lifecycle() {
let storage = Arc::new(SqliteStorage::in_memory().await);
let adapter = Arc::new(VikingAdapter::new(storage));
// Create agent ID and use its string form for storage
let agent_id = AgentId::new();
let agent_str = agent_id.to_string();
// 1. Store a preference
let pref = MemoryEntry::new(
&agent_str,
MemoryType::Preference,
"communication-style",
"用户偏好简洁的回复,不喜欢冗长的解释".to_string(),
)
.with_keywords(vec!["简洁".to_string(), "沟通风格".to_string()])
.with_importance(8);
adapter.store(&pref).await.unwrap();
// 2. Store knowledge
let knowledge = MemoryEntry::new(
&agent_str,
MemoryType::Knowledge,
"rust-expertise",
"用户是 Rust 开发者,熟悉 async/await 和 trait 系统".to_string(),
)
.with_keywords(vec!["Rust".to_string(), "开发者".to_string()]);
adapter.store(&knowledge).await.unwrap();
// 3. Store experience
let experience = MemoryEntry::new(
&agent_str,
MemoryType::Experience,
"browser-skill",
"浏览器技能在搜索技术文档时效果很好".to_string(),
)
.with_keywords(vec!["浏览器".to_string(), "技能".to_string()]);
adapter.store(&experience).await.unwrap();
// 4. Retrieve memories - directly from adapter first
let direct_results = adapter
.find(
"Rust",
FindOptions {
scope: Some(format!("agent://{}", agent_str)),
limit: Some(10),
min_similarity: Some(0.1),
},
)
.await
.unwrap();
println!("Direct find results: {:?}", direct_results.len());
let retriever = MemoryRetriever::new(adapter.clone());
// Use lower similarity threshold for testing
let config = RetrievalConfig {
min_similarity: 0.1,
..RetrievalConfig::default()
};
let retriever = retriever.with_config(config);
let result = retriever
.retrieve(&agent_id, "Rust 编程")
.await
.unwrap();
println!("Knowledge results: {:?}", result.knowledge.len());
println!("Preferences results: {:?}", result.preferences.len());
println!("Experience results: {:?}", result.experience.len());
// Should find the knowledge entry
assert!(!result.knowledge.is_empty(), "Expected to find knowledge entries but found none. Direct results: {}", direct_results.len());
assert!(result.knowledge[0].content.contains("Rust"));
// 5. Inject into prompt
let injector = PromptInjector::new();
let base_prompt = "你是一个有帮助的 AI 助手。";
let enhanced = injector.inject_with_format(base_prompt, &result);
// Enhanced prompt should contain memory context
assert!(enhanced.len() > base_prompt.len());
}
/// Test semantic search ranking
#[tokio::test]
async fn test_semantic_search_ranking() {
let storage = Arc::new(SqliteStorage::in_memory().await);
let adapter = Arc::new(VikingAdapter::new(storage.clone()));
// Store multiple entries with different relevance
let entries = vec![
MemoryEntry::new(
"agent-1",
MemoryType::Knowledge,
"rust-basics",
"Rust 是一门系统编程语言,注重安全性和性能".to_string(),
)
.with_keywords(vec!["Rust".to_string(), "系统编程".to_string()]),
MemoryEntry::new(
"agent-1",
MemoryType::Knowledge,
"python-basics",
"Python 是一门高级编程语言,易于学习".to_string(),
)
.with_keywords(vec!["Python".to_string(), "高级语言".to_string()]),
MemoryEntry::new(
"agent-1",
MemoryType::Knowledge,
"rust-async",
"Rust 的 async/await 语法用于异步编程".to_string(),
)
.with_keywords(vec!["Rust".to_string(), "async".to_string(), "异步".to_string()]),
];
for entry in &entries {
adapter.store(entry).await.unwrap();
}
// Search for "Rust 异步编程"
let results = adapter
.find(
"Rust 异步编程",
FindOptions {
scope: Some("agent://agent-1".to_string()),
limit: Some(10),
min_similarity: Some(0.1),
},
)
.await
.unwrap();
// Rust async entry should rank highest
assert!(!results.is_empty());
assert!(results[0].content.contains("async") || results[0].content.contains("Rust"));
}
/// Test memory importance and access count
#[tokio::test]
async fn test_importance_and_access() {
let storage = Arc::new(SqliteStorage::in_memory().await);
let adapter = Arc::new(VikingAdapter::new(storage.clone()));
// Create entries with different importance
let high_importance = MemoryEntry::new(
"agent-1",
MemoryType::Preference,
"critical",
"这是非常重要的偏好".to_string(),
)
.with_importance(10);
let low_importance = MemoryEntry::new(
"agent-1",
MemoryType::Preference,
"minor",
"这是不太重要的偏好".to_string(),
)
.with_importance(2);
adapter.store(&high_importance).await.unwrap();
adapter.store(&low_importance).await.unwrap();
// Access the low importance one multiple times
for _ in 0..5 {
let _ = adapter.get(&low_importance.uri).await;
}
// Search should consider both importance and access count
let results = adapter
.find(
"偏好",
FindOptions {
scope: Some("agent://agent-1".to_string()),
limit: Some(10),
min_similarity: None,
},
)
.await
.unwrap();
assert_eq!(results.len(), 2);
}
/// Test prompt injection with token budget
#[tokio::test]
async fn test_prompt_injection_token_budget() {
let mut result = RetrievalResult::default();
// Add memories that exceed budget
for i in 0..10 {
result.preferences.push(
MemoryEntry::new(
"agent-1",
MemoryType::Preference,
&format!("pref-{}", i),
"这是一个很长的偏好描述,用于测试 token 预算控制功能。".repeat(5),
),
);
}
result.total_tokens = result.calculate_tokens();
// Budget is 500 tokens by default
let injector = PromptInjector::new();
let base = "Base prompt";
let enhanced = injector.inject_with_format(base, &result);
// Should include memory context
assert!(enhanced.len() > base.len());
}
/// Test metadata storage
#[tokio::test]
async fn test_metadata_operations() {
let storage = Arc::new(SqliteStorage::in_memory().await);
let adapter = Arc::new(VikingAdapter::new(storage));
// Store metadata using typed API
#[derive(serde::Serialize, serde::Deserialize, PartialEq, Debug)]
struct Config {
version: String,
auto_extract: bool,
}
let config = Config {
version: "1.0.0".to_string(),
auto_extract: true,
};
adapter.store_metadata("agent-config", &config).await.unwrap();
// Retrieve metadata
let retrieved: Option<Config> = adapter.get_metadata("agent-config").await.unwrap();
assert!(retrieved.is_some());
let parsed = retrieved.unwrap();
assert_eq!(parsed.version, "1.0.0");
assert_eq!(parsed.auto_extract, true);
}
/// Test memory deletion and cleanup
#[tokio::test]
async fn test_memory_deletion() {
let storage = Arc::new(SqliteStorage::in_memory().await);
let adapter = Arc::new(VikingAdapter::new(storage));
let entry = MemoryEntry::new(
"agent-1",
MemoryType::Knowledge,
"temp",
"Temporary knowledge".to_string(),
);
adapter.store(&entry).await.unwrap();
// Verify stored
let retrieved = adapter.get(&entry.uri).await.unwrap();
assert!(retrieved.is_some());
// Delete
adapter.delete(&entry.uri).await.unwrap();
// Verify deleted
let retrieved = adapter.get(&entry.uri).await.unwrap();
assert!(retrieved.is_none());
// Verify not in search results
let results = adapter
.find(
"Temporary",
FindOptions {
scope: Some("agent://agent-1".to_string()),
limit: Some(10),
min_similarity: None,
},
)
.await
.unwrap();
assert!(results.is_empty());
}
/// Test cross-agent isolation
#[tokio::test]
async fn test_agent_isolation() {
let storage = Arc::new(SqliteStorage::in_memory().await);
let adapter = Arc::new(VikingAdapter::new(storage));
// Store memories for different agents
let agent1_memory = MemoryEntry::new(
"agent-1",
MemoryType::Knowledge,
"secret",
"Agent 1 的秘密信息".to_string(),
);
let agent2_memory = MemoryEntry::new(
"agent-2",
MemoryType::Knowledge,
"secret",
"Agent 2 的秘密信息".to_string(),
);
adapter.store(&agent1_memory).await.unwrap();
adapter.store(&agent2_memory).await.unwrap();
// Agent 1 should only see its own memories
let results = adapter
.find(
"秘密",
FindOptions {
scope: Some("agent://agent-1".to_string()),
limit: Some(10),
min_similarity: None,
},
)
.await
.unwrap();
assert_eq!(results.len(), 1);
assert!(results[0].content.contains("Agent 1"));
// Agent 2 should only see its own memories
let results = adapter
.find(
"秘密",
FindOptions {
scope: Some("agent://agent-2".to_string()),
limit: Some(10),
min_similarity: None,
},
)
.await
.unwrap();
assert_eq!(results.len(), 1);
assert!(results[0].content.contains("Agent 2"));
}
/// Test Chinese text handling
#[tokio::test]
async fn test_chinese_text_handling() {
let storage = Arc::new(SqliteStorage::in_memory().await);
let adapter = Arc::new(VikingAdapter::new(storage));
let entry = MemoryEntry::new(
"中文测试",
MemoryType::Knowledge,
"中文知识",
"这是一个中文测试,包含关键词:人工智能、机器学习、深度学习。".to_string(),
)
.with_keywords(vec!["人工智能".to_string(), "机器学习".to_string()]);
adapter.store(&entry).await.unwrap();
// Search with Chinese query
let results = adapter
.find(
"人工智能",
FindOptions {
scope: Some("agent://中文测试".to_string()),
limit: Some(10),
min_similarity: Some(0.1),
},
)
.await
.unwrap();
assert!(!results.is_empty());
assert!(results[0].content.contains("人工智能"));
}
/// Test find by prefix
#[tokio::test]
async fn test_find_by_prefix() {
let storage = Arc::new(SqliteStorage::in_memory().await);
let adapter = Arc::new(VikingAdapter::new(storage));
// Store multiple entries under same agent
for i in 0..5 {
let entry = MemoryEntry::new(
"agent-1",
MemoryType::Knowledge,
&format!("topic-{}", i),
format!("Content for topic {}", i),
);
adapter.store(&entry).await.unwrap();
}
// Find all entries for agent-1
let results = adapter
.find_by_prefix("agent://agent-1")
.await
.unwrap();
assert_eq!(results.len(), 5);
}

View File

@@ -375,6 +375,11 @@ impl Kernel {
&self.config
}
/// Get the LLM driver
pub fn driver(&self) -> Arc<dyn LlmDriver> {
self.driver.clone()
}
/// Get the skills registry
pub fn skills(&self) -> &Arc<SkillRegistry> {
&self.skills

View File

@@ -134,6 +134,12 @@ impl ActionRegistry {
max_tokens: Option<u32>,
json_mode: bool,
) -> Result<Value, ActionError> {
println!("[DEBUG execute_llm] Called with template length: {}", template.len());
println!("[DEBUG execute_llm] Input HashMap contents:");
for (k, v) in &input {
println!(" {} => {:?}", k, v);
}
if let Some(driver) = &self.llm_driver {
// Load template if it's a file path
let prompt = if template.ends_with(".md") || template.contains('/') {
@@ -142,6 +148,8 @@ impl ActionRegistry {
template.to_string()
};
println!("[DEBUG execute_llm] Calling driver.generate with prompt length: {}", prompt.len());
driver.generate(prompt, input, model, temperature, max_tokens, json_mode)
.await
.map_err(ActionError::Llm)

View File

@@ -0,0 +1,547 @@
//! Pipeline v2 Execution Context
//!
//! Enhanced context for v2 pipeline execution with:
//! - Parameter storage
//! - Stage outputs accumulation
//! - Loop context for parallel execution
//! - Variable storage
//! - Expression evaluation
use std::collections::HashMap;
use serde_json::Value;
use regex::Regex;
/// Execution context for Pipeline v2
#[derive(Debug, Clone)]
pub struct ExecutionContextV2 {
/// Pipeline input parameters (from user)
params: HashMap<String, Value>,
/// Stage outputs (stage_id -> output)
stages: HashMap<String, Value>,
/// Custom variables (set by set_var)
vars: HashMap<String, Value>,
/// Loop context for parallel execution
loop_context: Option<LoopContext>,
/// Expression regex for variable interpolation
expr_regex: Regex,
}
/// Loop context for parallel/each iterations
#[derive(Debug, Clone)]
pub struct LoopContext {
/// Current item
pub item: Value,
/// Current index
pub index: usize,
/// Total items count
pub total: usize,
/// Parent loop context (for nested loops)
pub parent: Option<Box<LoopContext>>,
}
impl ExecutionContextV2 {
/// Create a new execution context with parameters
pub fn new(params: HashMap<String, Value>) -> Self {
Self {
params,
stages: HashMap::new(),
vars: HashMap::new(),
loop_context: None,
expr_regex: Regex::new(r"\$\{([^}]+)\}").unwrap(),
}
}
/// Create from JSON value
pub fn from_value(params: Value) -> Self {
let params_map = if let Value::Object(obj) = params {
obj.into_iter().collect()
} else {
HashMap::new()
};
Self::new(params_map)
}
// === Parameter Access ===
/// Get a parameter value
pub fn get_param(&self, name: &str) -> Option<&Value> {
self.params.get(name)
}
/// Get all parameters
pub fn params(&self) -> &HashMap<String, Value> {
&self.params
}
// === Stage Output ===
/// Set a stage output
pub fn set_stage_output(&mut self, stage_id: &str, value: Value) {
self.stages.insert(stage_id.to_string(), value);
}
/// Get a stage output
pub fn get_stage_output(&self, stage_id: &str) -> Option<&Value> {
self.stages.get(stage_id)
}
/// Get all stage outputs
pub fn all_stages(&self) -> &HashMap<String, Value> {
&self.stages
}
// === Variables ===
/// Set a variable
pub fn set_var(&mut self, name: &str, value: Value) {
self.vars.insert(name.to_string(), value);
}
/// Get a variable
pub fn get_var(&self, name: &str) -> Option<&Value> {
self.vars.get(name)
}
// === Loop Context ===
/// Set loop context
pub fn set_loop_context(&mut self, item: Value, index: usize, total: usize) {
self.loop_context = Some(LoopContext {
item,
index,
total,
parent: self.loop_context.take().map(Box::new),
});
}
/// Clear current loop context
pub fn clear_loop_context(&mut self) {
if let Some(ctx) = self.loop_context.take() {
self.loop_context = ctx.parent.map(|b| *b);
}
}
/// Get current loop item
pub fn loop_item(&self) -> Option<&Value> {
self.loop_context.as_ref().map(|c| &c.item)
}
/// Get current loop index
pub fn loop_index(&self) -> Option<usize> {
self.loop_context.as_ref().map(|c| c.index)
}
// === Expression Evaluation ===
/// Resolve an expression to a value
///
/// Supported expressions:
/// - `${params.topic}` - Parameter
/// - `${stages.outline}` - Stage output
/// - `${stages.outline.sections}` - Nested access
/// - `${item}` - Current loop item
/// - `${index}` - Current loop index
/// - `${vars.customVar}` - Variable
/// - `'literal'` or `"literal"` - Quoted string literal
pub fn resolve(&self, expr: &str) -> Result<Value, ContextError> {
// Handle quoted string literals
let trimmed = expr.trim();
if (trimmed.starts_with('\'') && trimmed.ends_with('\'')) ||
(trimmed.starts_with('"') && trimmed.ends_with('"')) {
let inner = &trimmed[1..trimmed.len()-1];
return Ok(Value::String(inner.to_string()));
}
// If not an expression, return as string
if !expr.contains("${") {
return Ok(Value::String(expr.to_string()));
}
// If entire string is a single expression, return the actual value
if expr.starts_with("${") && expr.ends_with("}") && expr.matches("${").count() == 1 {
let path = &expr[2..expr.len()-1];
return self.resolve_path(path);
}
// Replace all expressions in string
let result = self.expr_regex.replace_all(expr, |caps: &regex::Captures| {
let path = &caps[1];
match self.resolve_path(path) {
Ok(value) => value_to_string(&value),
Err(_) => caps[0].to_string(),
}
});
Ok(Value::String(result.to_string()))
}
/// Resolve a path like "params.topic" or "stages.outline.sections.0"
fn resolve_path(&self, path: &str) -> Result<Value, ContextError> {
let parts: Vec<&str> = path.split('.').collect();
if parts.is_empty() {
return Err(ContextError::InvalidPath(path.to_string()));
}
let first = parts[0];
let rest = &parts[1..];
match first {
"params" => self.resolve_from_map(&self.params, rest, path),
"stages" => self.resolve_from_map(&self.stages, rest, path),
"vars" | "var" => self.resolve_from_map(&self.vars, rest, path),
"item" => {
if let Some(ctx) = &self.loop_context {
if rest.is_empty() {
Ok(ctx.item.clone())
} else {
self.resolve_from_value(&ctx.item, rest, path)
}
} else {
Err(ContextError::VariableNotFound("item".to_string()))
}
}
"index" => {
if let Some(ctx) = &self.loop_context {
Ok(Value::Number(ctx.index.into()))
} else {
Err(ContextError::VariableNotFound("index".to_string()))
}
}
"total" => {
if let Some(ctx) = &self.loop_context {
Ok(Value::Number(ctx.total.into()))
} else {
Err(ContextError::VariableNotFound("total".to_string()))
}
}
_ => Err(ContextError::InvalidPath(path.to_string())),
}
}
/// Resolve from a map
fn resolve_from_map(
&self,
map: &HashMap<String, Value>,
path_parts: &[&str],
full_path: &str,
) -> Result<Value, ContextError> {
if path_parts.is_empty() {
return Err(ContextError::InvalidPath(full_path.to_string()));
}
let key = path_parts[0];
let value = map.get(key)
.ok_or_else(|| ContextError::VariableNotFound(key.to_string()))?;
if path_parts.len() == 1 {
Ok(value.clone())
} else {
self.resolve_from_value(value, &path_parts[1..], full_path)
}
}
/// Resolve from a value (nested access)
fn resolve_from_value(
&self,
value: &Value,
path_parts: &[&str],
full_path: &str,
) -> Result<Value, ContextError> {
let mut current = value;
for part in path_parts {
current = match current {
Value::Object(map) => map.get(*part)
.ok_or_else(|| ContextError::FieldNotFound(part.to_string()))?,
Value::Array(arr) => {
if let Ok(idx) = part.parse::<usize>() {
arr.get(idx)
.ok_or_else(|| ContextError::IndexOutOfBounds(idx))?
} else {
return Err(ContextError::InvalidPath(full_path.to_string()));
}
}
_ => return Err(ContextError::InvalidPath(full_path.to_string())),
};
}
Ok(current.clone())
}
/// Resolve expression and expect array result
pub fn resolve_array(&self, expr: &str) -> Result<Vec<Value>, ContextError> {
let value = self.resolve(expr)?;
match value {
Value::Array(arr) => Ok(arr),
Value::String(s) if s.starts_with('[') => {
serde_json::from_str(&s)
.map_err(|e| ContextError::TypeError(format!("Expected array: {}", e)))
}
_ => Err(ContextError::TypeError("Expected array".to_string())),
}
}
/// Resolve expression and expect string result
pub fn resolve_string(&self, expr: &str) -> Result<String, ContextError> {
let value = self.resolve(expr)?;
Ok(value_to_string(&value))
}
/// Evaluate a condition expression
///
/// Supports:
/// - Equality: `${params.level} == 'advanced'`
/// - Inequality: `${params.level} != 'beginner'`
/// - Comparison: `${params.count} > 5`
/// - Contains: `'python' in ${params.tags}`
/// - Boolean: `${params.enabled}`
pub fn evaluate_condition(&self, condition: &str) -> Result<bool, ContextError> {
let condition = condition.trim();
// Handle equality
if let Some(eq_pos) = condition.find("==") {
let left = condition[..eq_pos].trim();
let right = condition[eq_pos + 2..].trim();
return self.compare_equal(left, right);
}
// Handle inequality
if let Some(ne_pos) = condition.find("!=") {
let left = condition[..ne_pos].trim();
let right = condition[ne_pos + 2..].trim();
return Ok(!self.compare_equal(left, right)?);
}
// Handle greater than
if let Some(gt_pos) = condition.find('>') {
let left = condition[..gt_pos].trim();
let right = condition[gt_pos + 1..].trim();
return self.compare_gt(left, right);
}
// Handle less than
if let Some(lt_pos) = condition.find('<') {
let left = condition[..lt_pos].trim();
let right = condition[lt_pos + 1..].trim();
return self.compare_lt(left, right);
}
// Handle 'in' operator
if let Some(in_pos) = condition.find(" in ") {
let needle = condition[..in_pos].trim();
let haystack = condition[in_pos + 4..].trim();
return self.check_contains(haystack, needle);
}
// Simple boolean evaluation
let value = self.resolve(condition)?;
match value {
Value::Bool(b) => Ok(b),
Value::String(s) => Ok(!s.is_empty() && s != "false" && s != "0"),
Value::Number(n) => Ok(n.as_f64().map(|f| f != 0.0).unwrap_or(false)),
Value::Null => Ok(false),
Value::Array(arr) => Ok(!arr.is_empty()),
Value::Object(obj) => Ok(!obj.is_empty()),
}
}
fn compare_equal(&self, left: &str, right: &str) -> Result<bool, ContextError> {
let left_val = self.resolve(left)?;
let right_val = self.resolve(right)?;
Ok(left_val == right_val)
}
fn compare_gt(&self, left: &str, right: &str) -> Result<bool, ContextError> {
let left_val = self.resolve(left)?;
let right_val = self.resolve(right)?;
let left_num = value_to_f64(&left_val);
let right_num = value_to_f64(&right_val);
match (left_num, right_num) {
(Some(l), Some(r)) => Ok(l > r),
_ => Err(ContextError::TypeError("Cannot compare non-numeric values".to_string())),
}
}
fn compare_lt(&self, left: &str, right: &str) -> Result<bool, ContextError> {
let left_val = self.resolve(left)?;
let right_val = self.resolve(right)?;
let left_num = value_to_f64(&left_val);
let right_num = value_to_f64(&right_val);
match (left_num, right_num) {
(Some(l), Some(r)) => Ok(l < r),
_ => Err(ContextError::TypeError("Cannot compare non-numeric values".to_string())),
}
}
fn check_contains(&self, haystack: &str, needle: &str) -> Result<bool, ContextError> {
let haystack_val = self.resolve(haystack)?;
let needle_val = self.resolve(needle)?;
let needle_str = value_to_string(&needle_val);
match haystack_val {
Value::Array(arr) => Ok(arr.iter().any(|v| value_to_string(v) == needle_str)),
Value::String(s) => Ok(s.contains(&needle_str)),
Value::Object(obj) => Ok(obj.contains_key(&needle_str)),
_ => Err(ContextError::TypeError("Cannot check contains on this type".to_string())),
}
}
/// Create a child context for parallel execution
pub fn child_context(&self, item: Value, index: usize, total: usize) -> Self {
let mut child = Self {
params: self.params.clone(),
stages: self.stages.clone(),
vars: self.vars.clone(),
loop_context: None,
expr_regex: Regex::new(r"\$\{([^}]+)\}").unwrap(),
};
child.set_loop_context(item, index, total);
child
}
}
/// Convert value to string for template replacement
fn value_to_string(value: &Value) -> String {
match value {
Value::String(s) => s.clone(),
Value::Number(n) => n.to_string(),
Value::Bool(b) => b.to_string(),
Value::Null => String::new(),
Value::Array(arr) => serde_json::to_string(arr).unwrap_or_default(),
Value::Object(obj) => serde_json::to_string(obj).unwrap_or_default(),
}
}
/// Convert value to f64 for comparison
fn value_to_f64(value: &Value) -> Option<f64> {
match value {
Value::Number(n) => n.as_f64(),
Value::String(s) => s.parse().ok(),
_ => None,
}
}
/// Public version for use in stage.rs
pub fn value_to_f64_public(value: &Value) -> Option<f64> {
value_to_f64(value)
}
/// Context errors
#[derive(Debug, thiserror::Error)]
pub enum ContextError {
#[error("Invalid path: {0}")]
InvalidPath(String),
#[error("Variable not found: {0}")]
VariableNotFound(String),
#[error("Field not found: {0}")]
FieldNotFound(String),
#[error("Index out of bounds: {0}")]
IndexOutOfBounds(usize),
#[error("Type error: {0}")]
TypeError(String),
}
#[cfg(test)]
mod tests {
use super::*;
use serde_json::json;
#[test]
fn test_resolve_param() {
let ctx = ExecutionContextV2::new(
vec![("topic".to_string(), json!("Python"))]
.into_iter()
.collect()
);
let result = ctx.resolve("${params.topic}").unwrap();
assert_eq!(result, json!("Python"));
}
#[test]
fn test_resolve_stage_output() {
let mut ctx = ExecutionContextV2::new(HashMap::new());
ctx.set_stage_output("outline", json!({"sections": ["s1", "s2"]}));
let result = ctx.resolve("${stages.outline.sections}").unwrap();
assert_eq!(result, json!(["s1", "s2"]));
}
#[test]
fn test_resolve_loop_context() {
let mut ctx = ExecutionContextV2::new(HashMap::new());
ctx.set_loop_context(json!({"title": "Chapter 1"}), 0, 5);
let item = ctx.resolve("${item}").unwrap();
assert_eq!(item, json!({"title": "Chapter 1"}));
let title = ctx.resolve("${item.title}").unwrap();
assert_eq!(title, json!("Chapter 1"));
let index = ctx.resolve("${index}").unwrap();
assert_eq!(index, json!(0));
}
#[test]
fn test_resolve_mixed_string() {
let ctx = ExecutionContextV2::new(
vec![("name".to_string(), json!("World"))]
.into_iter()
.collect()
);
let result = ctx.resolve("Hello, ${params.name}!").unwrap();
assert_eq!(result, json!("Hello, World!"));
}
#[test]
fn test_evaluate_condition_equal() {
let ctx = ExecutionContextV2::new(
vec![("level".to_string(), json!("advanced"))]
.into_iter()
.collect()
);
assert!(ctx.evaluate_condition("${params.level} == 'advanced'").unwrap());
assert!(!ctx.evaluate_condition("${params.level} == 'beginner'").unwrap());
}
#[test]
fn test_evaluate_condition_gt() {
let ctx = ExecutionContextV2::new(
vec![("count".to_string(), json!(10))]
.into_iter()
.collect()
);
assert!(ctx.evaluate_condition("${params.count} > 5").unwrap());
assert!(!ctx.evaluate_condition("${params.count} > 20").unwrap());
}
#[test]
fn test_child_context() {
let ctx = ExecutionContextV2::new(
vec![("topic".to_string(), json!("Python"))]
.into_iter()
.collect()
);
let child = ctx.child_context(json!("item1"), 0, 3);
assert_eq!(child.loop_item().unwrap(), &json!("item1"));
assert_eq!(child.loop_index().unwrap(), 0);
assert_eq!(child.get_param("topic").unwrap(), &json!("Python"));
}
}

View File

@@ -0,0 +1,11 @@
//! Pipeline Engine Module
//!
//! Contains the v2 execution engine components:
//! - StageRunner: Executes individual stages
//! - Context v2: Enhanced execution context
pub mod stage;
pub mod context;
pub use stage::*;
pub use context::*;

View File

@@ -0,0 +1,623 @@
//! Stage Execution Engine
//!
//! Executes Pipeline v2 stages with support for:
//! - LLM generation
//! - Parallel execution
//! - Conditional branching
//! - Result composition
//! - Skill/Hand/HTTP integration
use std::collections::HashMap;
use std::sync::Arc;
use async_trait::async_trait;
use futures::future::join_all;
use serde_json::{Value, json};
use tokio::sync::RwLock;
use crate::types_v2::{Stage, ConditionalBranch, PresentationType};
use crate::engine::context::{ExecutionContextV2, ContextError};
/// Stage execution result
#[derive(Debug, Clone)]
pub struct StageResult {
/// Stage ID
pub stage_id: String,
/// Output value
pub output: Value,
/// Execution status
pub status: StageStatus,
/// Error message (if failed)
pub error: Option<String>,
/// Execution duration in ms
pub duration_ms: u64,
}
/// Stage execution status
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum StageStatus {
Success,
Failed,
Skipped,
}
/// Stage execution event for progress tracking
#[derive(Debug, Clone)]
pub enum StageEvent {
/// Stage started
Started { stage_id: String },
/// Stage progress update
Progress { stage_id: String, message: String },
/// Stage completed
Completed { stage_id: String, result: StageResult },
/// Parallel progress
ParallelProgress { stage_id: String, completed: usize, total: usize },
/// Error occurred
Error { stage_id: String, error: String },
}
/// LLM driver trait for stage execution
#[async_trait]
pub trait StageLlmDriver: Send + Sync {
/// Generate completion
async fn generate(
&self,
prompt: String,
model: Option<String>,
temperature: Option<f32>,
max_tokens: Option<u32>,
) -> Result<Value, StageError>;
/// Generate with JSON schema
async fn generate_with_schema(
&self,
prompt: String,
schema: Value,
model: Option<String>,
temperature: Option<f32>,
) -> Result<Value, StageError>;
}
/// Skill driver trait
#[async_trait]
pub trait StageSkillDriver: Send + Sync {
/// Execute a skill
async fn execute(
&self,
skill_id: &str,
input: HashMap<String, Value>,
) -> Result<Value, StageError>;
}
/// Hand driver trait
#[async_trait]
pub trait StageHandDriver: Send + Sync {
/// Execute a hand action
async fn execute(
&self,
hand_id: &str,
action: &str,
params: HashMap<String, Value>,
) -> Result<Value, StageError>;
}
/// Stage execution engine
pub struct StageEngine {
/// LLM driver
llm_driver: Option<Arc<dyn StageLlmDriver>>,
/// Skill driver
skill_driver: Option<Arc<dyn StageSkillDriver>>,
/// Hand driver
hand_driver: Option<Arc<dyn StageHandDriver>>,
/// Event callback
event_callback: Option<Arc<dyn Fn(StageEvent) + Send + Sync>>,
/// Maximum parallel workers
max_workers: usize,
}
impl StageEngine {
/// Create a new stage engine
pub fn new() -> Self {
Self {
llm_driver: None,
skill_driver: None,
hand_driver: None,
event_callback: None,
max_workers: 3,
}
}
/// Set LLM driver
pub fn with_llm_driver(mut self, driver: Arc<dyn StageLlmDriver>) -> Self {
self.llm_driver = Some(driver);
self
}
/// Set skill driver
pub fn with_skill_driver(mut self, driver: Arc<dyn StageSkillDriver>) -> Self {
self.skill_driver = Some(driver);
self
}
/// Set hand driver
pub fn with_hand_driver(mut self, driver: Arc<dyn StageHandDriver>) -> Self {
self.hand_driver = Some(driver);
self
}
/// Set event callback
pub fn with_event_callback(mut self, callback: Arc<dyn Fn(StageEvent) + Send + Sync>) -> Self {
self.event_callback = Some(callback);
self
}
/// Set max workers
pub fn with_max_workers(mut self, max: usize) -> Self {
self.max_workers = max;
self
}
/// Execute a stage (boxed to support recursion)
pub fn execute<'a>(
&'a self,
stage: &'a Stage,
context: &'a mut ExecutionContextV2,
) -> std::pin::Pin<Box<dyn std::future::Future<Output = Result<StageResult, StageError>> + 'a>> {
Box::pin(async move {
self.execute_inner(stage, context).await
})
}
/// Inner execute implementation
async fn execute_inner(
&self,
stage: &Stage,
context: &mut ExecutionContextV2,
) -> Result<StageResult, StageError> {
let start = std::time::Instant::now();
let stage_id = stage.id().to_string();
// Emit started event
self.emit_event(StageEvent::Started {
stage_id: stage_id.clone(),
});
let result = match stage {
Stage::Llm { prompt, model, temperature, max_tokens, output_schema, .. } => {
self.execute_llm(&stage_id, prompt, model, temperature, max_tokens, output_schema, context).await
}
Stage::Parallel { each, stage, max_workers, .. } => {
self.execute_parallel(&stage_id, each, stage, *max_workers, context).await
}
Stage::Sequential { stages, .. } => {
self.execute_sequential(&stage_id, stages, context).await
}
Stage::Conditional { condition, branches, default, .. } => {
self.execute_conditional(&stage_id, condition, branches, default.as_deref(), context).await
}
Stage::Compose { template, .. } => {
self.execute_compose(&stage_id, template, context).await
}
Stage::Skill { skill_id, input, .. } => {
self.execute_skill(&stage_id, skill_id, input, context).await
}
Stage::Hand { hand_id, action, params, .. } => {
self.execute_hand(&stage_id, hand_id, action, params, context).await
}
Stage::Http { url, method, headers, body, .. } => {
self.execute_http(&stage_id, url, method, headers, body, context).await
}
Stage::SetVar { name, value, .. } => {
self.execute_set_var(&stage_id, name, value, context).await
}
};
let duration_ms = start.elapsed().as_millis() as u64;
match result {
Ok(output) => {
// Store output in context
context.set_stage_output(&stage_id, output.clone());
let result = StageResult {
stage_id: stage_id.clone(),
output,
status: StageStatus::Success,
error: None,
duration_ms,
};
self.emit_event(StageEvent::Completed {
stage_id,
result: result.clone(),
});
Ok(result)
}
Err(e) => {
let result = StageResult {
stage_id: stage_id.clone(),
output: Value::Null,
status: StageStatus::Failed,
error: Some(e.to_string()),
duration_ms,
};
self.emit_event(StageEvent::Error {
stage_id,
error: e.to_string(),
});
Err(e)
}
}
}
/// Execute LLM stage
async fn execute_llm(
&self,
stage_id: &str,
prompt: &str,
model: &Option<String>,
temperature: &Option<f32>,
max_tokens: &Option<u32>,
output_schema: &Option<Value>,
context: &ExecutionContextV2,
) -> Result<Value, StageError> {
let driver = self.llm_driver.as_ref()
.ok_or_else(|| StageError::DriverNotAvailable("LLM".to_string()))?;
// Resolve prompt template
let resolved_prompt = context.resolve(prompt)?;
self.emit_event(StageEvent::Progress {
stage_id: stage_id.to_string(),
message: "Calling LLM...".to_string(),
});
let prompt_str = resolved_prompt.as_str()
.ok_or_else(|| StageError::TypeError("Prompt must be a string".to_string()))?
.to_string();
// Generate with or without schema
let result = if let Some(schema) = output_schema {
driver.generate_with_schema(
prompt_str,
schema.clone(),
model.clone(),
*temperature,
).await
} else {
driver.generate(
prompt_str,
model.clone(),
*temperature,
*max_tokens,
).await
};
result.map_err(|e| StageError::ExecutionFailed(format!("LLM error: {}", e)))
}
/// Execute parallel stage
async fn execute_parallel(
&self,
stage_id: &str,
each: &str,
stage_template: &Stage,
max_workers: usize,
context: &mut ExecutionContextV2,
) -> Result<Value, StageError> {
// Resolve the array to iterate over
let items = context.resolve_array(each)?;
let total = items.len();
if total == 0 {
return Ok(Value::Array(vec![]));
}
self.emit_event(StageEvent::Progress {
stage_id: stage_id.to_string(),
message: format!("Processing {} items", total),
});
// Sequential execution with progress tracking
// Note: True parallel execution would require Send-safe drivers
let mut outputs = Vec::with_capacity(total);
for (index, item) in items.into_iter().enumerate() {
let mut child_context = context.child_context(item.clone(), index, total);
self.emit_event(StageEvent::ParallelProgress {
stage_id: stage_id.to_string(),
completed: index,
total,
});
match self.execute(stage_template, &mut child_context).await {
Ok(result) => outputs.push(result.output),
Err(e) => outputs.push(json!({ "error": e.to_string(), "index": index })),
}
}
Ok(Value::Array(outputs))
}
/// Execute sequential stages
async fn execute_sequential(
&self,
stage_id: &str,
stages: &[Stage],
context: &mut ExecutionContextV2,
) -> Result<Value, StageError> {
let mut outputs = Vec::new();
for stage in stages {
self.emit_event(StageEvent::Progress {
stage_id: stage_id.to_string(),
message: format!("Executing stage: {}", stage.id()),
});
let result = self.execute(stage, context).await?;
outputs.push(result.output);
}
Ok(Value::Array(outputs))
}
/// Execute conditional stage
async fn execute_conditional(
&self,
stage_id: &str,
condition: &str,
branches: &[ConditionalBranch],
default: Option<&Stage>,
context: &mut ExecutionContextV2,
) -> Result<Value, StageError> {
// Evaluate main condition
let condition_result = context.evaluate_condition(condition)?;
if condition_result {
// Check each branch
for branch in branches {
if context.evaluate_condition(&branch.when)? {
self.emit_event(StageEvent::Progress {
stage_id: stage_id.to_string(),
message: format!("Branch matched: {}", branch.when),
});
return self.execute(&branch.then, context).await
.map(|r| r.output);
}
}
// No branch matched, use default
if let Some(default_stage) = default {
self.emit_event(StageEvent::Progress {
stage_id: stage_id.to_string(),
message: "Using default branch".to_string(),
});
return self.execute(default_stage, context).await
.map(|r| r.output);
}
Ok(Value::Null)
} else {
// Main condition false, return null
Ok(Value::Null)
}
}
/// Execute compose stage
async fn execute_compose(
&self,
stage_id: &str,
template: &str,
context: &ExecutionContextV2,
) -> Result<Value, StageError> {
let resolved = context.resolve(template)?;
// Try to parse as JSON
if let Value::String(s) = &resolved {
if s.starts_with('{') || s.starts_with('[') {
if let Ok(json) = serde_json::from_str::<Value>(s) {
return Ok(json);
}
}
}
Ok(resolved)
}
/// Execute skill stage
async fn execute_skill(
&self,
stage_id: &str,
skill_id: &str,
input: &HashMap<String, String>,
context: &ExecutionContextV2,
) -> Result<Value, StageError> {
let driver = self.skill_driver.as_ref()
.ok_or_else(|| StageError::DriverNotAvailable("Skill".to_string()))?;
// Resolve input expressions
let mut resolved_input = HashMap::new();
for (key, expr) in input {
let value = context.resolve(expr)?;
resolved_input.insert(key.clone(), value);
}
self.emit_event(StageEvent::Progress {
stage_id: stage_id.to_string(),
message: format!("Executing skill: {}", skill_id),
});
driver.execute(skill_id, resolved_input).await
.map_err(|e| StageError::ExecutionFailed(format!("Skill error: {}", e)))
}
/// Execute hand stage
async fn execute_hand(
&self,
stage_id: &str,
hand_id: &str,
action: &str,
params: &HashMap<String, String>,
context: &ExecutionContextV2,
) -> Result<Value, StageError> {
let driver = self.hand_driver.as_ref()
.ok_or_else(|| StageError::DriverNotAvailable("Hand".to_string()))?;
// Resolve parameter expressions
let mut resolved_params = HashMap::new();
for (key, expr) in params {
let value = context.resolve(expr)?;
resolved_params.insert(key.clone(), value);
}
self.emit_event(StageEvent::Progress {
stage_id: stage_id.to_string(),
message: format!("Executing hand: {} / {}", hand_id, action),
});
driver.execute(hand_id, action, resolved_params).await
.map_err(|e| StageError::ExecutionFailed(format!("Hand error: {}", e)))
}
/// Execute HTTP stage
async fn execute_http(
&self,
stage_id: &str,
url: &str,
method: &str,
headers: &HashMap<String, String>,
body: &Option<String>,
context: &ExecutionContextV2,
) -> Result<Value, StageError> {
// Resolve URL
let resolved_url = context.resolve_string(url)?;
self.emit_event(StageEvent::Progress {
stage_id: stage_id.to_string(),
message: format!("HTTP {} {}", method, resolved_url),
});
// Build request
let client = reqwest::Client::new();
let mut request = match method.to_uppercase().as_str() {
"GET" => client.get(&resolved_url),
"POST" => client.post(&resolved_url),
"PUT" => client.put(&resolved_url),
"DELETE" => client.delete(&resolved_url),
"PATCH" => client.patch(&resolved_url),
_ => return Err(StageError::ExecutionFailed(format!("Unsupported HTTP method: {}", method))),
};
// Add headers
for (key, value) in headers {
let resolved_value = context.resolve_string(value)?;
request = request.header(key, resolved_value);
}
// Add body
if let Some(body_expr) = body {
let resolved_body = context.resolve(body_expr)?;
request = request.json(&resolved_body);
}
// Execute request
let response = request.send().await
.map_err(|e| StageError::ExecutionFailed(format!("HTTP request failed: {}", e)))?;
// Parse response
let status = response.status();
if !status.is_success() {
return Err(StageError::ExecutionFailed(format!("HTTP error: {}", status)));
}
let json = response.json::<Value>().await
.map_err(|e| StageError::ExecutionFailed(format!("Failed to parse response: {}", e)))?;
Ok(json)
}
/// Execute set_var stage
async fn execute_set_var(
&self,
stage_id: &str,
name: &str,
value: &str,
context: &mut ExecutionContextV2,
) -> Result<Value, StageError> {
let resolved_value = context.resolve(value)?;
context.set_var(name, resolved_value.clone());
self.emit_event(StageEvent::Progress {
stage_id: stage_id.to_string(),
message: format!("Set variable: {} = {:?}", name, resolved_value),
});
Ok(resolved_value)
}
/// Clone with drivers
fn clone_with_drivers(&self) -> Self {
Self {
llm_driver: self.llm_driver.clone(),
skill_driver: self.skill_driver.clone(),
hand_driver: self.hand_driver.clone(),
event_callback: self.event_callback.clone(),
max_workers: self.max_workers,
}
}
/// Emit event
fn emit_event(&self, event: StageEvent) {
if let Some(callback) = &self.event_callback {
callback(event);
}
}
}
impl Default for StageEngine {
fn default() -> Self {
Self::new()
}
}
/// Stage execution error
#[derive(Debug, thiserror::Error)]
pub enum StageError {
#[error("Driver not available: {0}")]
DriverNotAvailable(String),
#[error("Execution failed: {0}")]
ExecutionFailed(String),
#[error("Type error: {0}")]
TypeError(String),
#[error("Context error: {0}")]
ContextError(#[from] ContextError),
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_stage_engine_creation() {
let engine = StageEngine::new()
.with_max_workers(5);
assert_eq!(engine.max_workers, 5);
}
}

View File

@@ -11,7 +11,7 @@ use chrono::Utc;
use futures::stream::{self, StreamExt};
use futures::future::{BoxFuture, FutureExt};
use crate::types::{Pipeline, PipelineRun, PipelineProgress, RunStatus, PipelineStep, Action};
use crate::types::{Pipeline, PipelineRun, PipelineProgress, RunStatus, PipelineStep, Action, ExportFormat};
use crate::state::{ExecutionContext, StateError};
use crate::actions::ActionRegistry;
@@ -62,14 +62,28 @@ impl PipelineExecutor {
}
}
/// Execute a pipeline
/// Execute a pipeline with auto-generated run ID
pub async fn execute(
&self,
pipeline: &Pipeline,
inputs: HashMap<String, Value>,
) -> Result<PipelineRun, ExecuteError> {
let run_id = Uuid::new_v4().to_string();
self.execute_with_id(pipeline, inputs, &run_id).await
}
/// Execute a pipeline with a specific run ID
///
/// Use this when you need to know the run_id before execution starts,
/// e.g., for async spawning where the caller needs to track progress.
pub async fn execute_with_id(
&self,
pipeline: &Pipeline,
inputs: HashMap<String, Value>,
run_id: &str,
) -> Result<PipelineRun, ExecuteError> {
let pipeline_id = pipeline.metadata.name.clone();
let run_id = run_id.to_string();
// Create run record
let run = PipelineRun {
@@ -171,9 +185,25 @@ impl PipelineExecutor {
async move {
match action {
Action::LlmGenerate { template, input, model, temperature, max_tokens, json_mode } => {
println!("[DEBUG executor] LlmGenerate action called");
println!("[DEBUG executor] Raw input map:");
for (k, v) in input {
println!(" {} => {}", k, v);
}
// First resolve the template itself (handles ${inputs.xxx}, ${item.xxx}, etc.)
let resolved_template = context.resolve(template)?;
let resolved_template_str = resolved_template.as_str().unwrap_or(template).to_string();
println!("[DEBUG executor] Resolved template (first 300 chars): {}",
&resolved_template_str[..resolved_template_str.len().min(300)]);
let resolved_input = context.resolve_map(input)?;
println!("[DEBUG executor] Resolved input map:");
for (k, v) in &resolved_input {
println!(" {} => {:?}", k, v);
}
self.action_registry.execute_llm(
template,
&resolved_template_str,
resolved_input,
model.clone(),
*temperature,
@@ -188,7 +218,7 @@ impl PipelineExecutor {
.ok_or_else(|| ExecuteError::Action("Parallel 'each' must resolve to an array".to_string()))?;
let workers = max_workers.unwrap_or(4);
let results = self.execute_parallel(step, items_array.clone(), workers).await?;
let results = self.execute_parallel(step, items_array.clone(), workers, context).await?;
Ok(Value::Array(results))
}
@@ -247,7 +277,38 @@ impl PipelineExecutor {
None => None,
};
self.action_registry.export_files(formats, &data, dir.as_deref())
// Resolve formats expression and parse as array
let resolved_formats = context.resolve(formats)?;
let format_strings: Vec<String> = if resolved_formats.is_array() {
resolved_formats.as_array()
.ok_or_else(|| ExecuteError::Action("formats must be an array".to_string()))?
.iter()
.filter_map(|v| v.as_str().map(|s| s.to_string()))
.collect()
} else if resolved_formats.is_string() {
// Try to parse as JSON array string
let s = resolved_formats.as_str()
.ok_or_else(|| ExecuteError::Action("formats must be a string or array".to_string()))?;
serde_json::from_str(s)
.unwrap_or_else(|_| vec![s.to_string()])
} else {
return Err(ExecuteError::Action("formats must be a string or array".to_string()));
};
// Convert strings to ExportFormat
let export_formats: Vec<ExportFormat> = format_strings
.iter()
.filter_map(|s| match s.to_lowercase().as_str() {
"pptx" => Some(ExportFormat::Pptx),
"html" => Some(ExportFormat::Html),
"pdf" => Some(ExportFormat::Pdf),
"markdown" | "md" => Some(ExportFormat::Markdown),
"json" => Some(ExportFormat::Json),
_ => None,
})
.collect();
self.action_registry.export_files(&export_formats, &data, dir.as_deref())
.await
.map_err(|e| ExecuteError::Action(e.to_string()))
}
@@ -301,18 +362,31 @@ impl PipelineExecutor {
step: &PipelineStep,
items: Vec<Value>,
max_workers: usize,
parent_context: &ExecutionContext,
) -> Result<Vec<Value>, ExecuteError> {
let action_registry = self.action_registry.clone();
let action = step.action.clone();
// Clone parent context data for child contexts
let parent_inputs = parent_context.inputs().clone();
let parent_outputs = parent_context.all_outputs().clone();
let parent_vars = parent_context.all_vars().clone();
let results: Vec<Result<Value, ExecuteError>> = stream::iter(items.into_iter().enumerate())
.map(|(index, item)| {
let action_registry = action_registry.clone();
let action = action.clone();
let parent_inputs = parent_inputs.clone();
let parent_outputs = parent_outputs.clone();
let parent_vars = parent_vars.clone();
async move {
// Create child context with loop variables
let mut child_ctx = ExecutionContext::new(HashMap::new());
// Create child context with parent data and loop variables
let mut child_ctx = ExecutionContext::from_parent(
parent_inputs,
parent_outputs,
parent_vars,
);
child_ctx.set_loop_context(item, index);
// Execute the step's action

View File

@@ -0,0 +1,666 @@
//! Intent Router System
//!
//! Routes user input to the appropriate pipeline using:
//! 1. Quick matching (keywords + patterns, < 10ms)
//! 2. Semantic matching (LLM-based, ~200ms)
//!
//! # Flow
//!
//! ```text
//! User Input
//! ↓
//! Quick Match (keywords/patterns)
//! ├─→ Match found → Prepare execution
//! └─→ No match → Semantic Match (LLM)
//! ├─→ Match found → Prepare execution
//! └─→ No match → Return suggestions
//! ```
//!
//! # Example
//!
//! ```rust,ignore
//! use zclaw_pipeline::{IntentRouter, RouteResult, TriggerParser, LlmIntentDriver};
//!
//! async fn example() {
//! let router = IntentRouter::new(trigger_parser, llm_driver);
//! let result = router.route("帮我做一个Python入门课程").await.unwrap();
//!
//! match result {
//! RouteResult::Matched { pipeline_id, params, mode } => {
//! // Start pipeline execution
//! }
//! RouteResult::Suggestions { pipelines } => {
//! // Show user available options
//! }
//! RouteResult::NeedMoreInfo { prompt } => {
//! // Ask user for clarification
//! }
//! }
//! }
//! ```
use crate::trigger::{CompiledTrigger, MatchType, TriggerMatch, TriggerParser, TriggerParam};
use async_trait::async_trait;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
/// Intent router - main entry point for user input
pub struct IntentRouter {
/// Trigger parser for quick matching
trigger_parser: TriggerParser,
/// LLM driver for semantic matching
llm_driver: Option<Box<dyn LlmIntentDriver>>,
/// Configuration
config: RouterConfig,
}
/// Router configuration
#[derive(Debug, Clone)]
pub struct RouterConfig {
/// Minimum confidence threshold for auto-matching
pub confidence_threshold: f32,
/// Number of suggestions to return when no clear match
pub suggestion_count: usize,
/// Enable semantic matching via LLM
pub enable_semantic_matching: bool,
}
impl Default for RouterConfig {
fn default() -> Self {
Self {
confidence_threshold: 0.7,
suggestion_count: 3,
enable_semantic_matching: true,
}
}
}
/// Route result
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum RouteResult {
/// Successfully matched a pipeline
Matched {
/// Matched pipeline ID
pipeline_id: String,
/// Pipeline display name
display_name: Option<String>,
/// Input mode (conversation, form, hybrid)
mode: InputMode,
/// Extracted parameters
params: HashMap<String, serde_json::Value>,
/// Match confidence
confidence: f32,
/// Missing required parameters
missing_params: Vec<MissingParam>,
},
/// Multiple possible matches, need user selection
Ambiguous {
/// Candidate pipelines
candidates: Vec<PipelineCandidate>,
},
/// No match found, show suggestions
NoMatch {
/// Suggested pipelines based on category/tags
suggestions: Vec<PipelineCandidate>,
},
/// Need more information from user
NeedMoreInfo {
/// Prompt to show user
prompt: String,
/// Related pipeline (if any)
related_pipeline: Option<String>,
},
}
/// Input mode for parameter collection
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
#[serde(rename_all = "lowercase")]
pub enum InputMode {
/// Simple conversation-based collection
Conversation,
/// Form-based collection
Form,
/// Hybrid - start with conversation, switch to form if needed
Hybrid,
/// Auto - system decides based on complexity
Auto,
}
impl Default for InputMode {
fn default() -> Self {
Self::Auto
}
}
/// Pipeline candidate for suggestions
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PipelineCandidate {
/// Pipeline ID
pub id: String,
/// Display name
pub display_name: Option<String>,
/// Description
pub description: Option<String>,
/// Icon
pub icon: Option<String>,
/// Category
pub category: Option<String>,
/// Match reason
pub match_reason: Option<String>,
}
/// Missing parameter info
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct MissingParam {
/// Parameter name
pub name: String,
/// Parameter label
pub label: Option<String>,
/// Parameter type
pub param_type: String,
/// Is this required?
pub required: bool,
/// Default value if available
pub default: Option<serde_json::Value>,
}
impl IntentRouter {
/// Create a new intent router
pub fn new(trigger_parser: TriggerParser) -> Self {
Self {
trigger_parser,
llm_driver: None,
config: RouterConfig::default(),
}
}
/// Set LLM driver for semantic matching
pub fn with_llm_driver(mut self, driver: Box<dyn LlmIntentDriver>) -> Self {
self.llm_driver = Some(driver);
self
}
/// Set configuration
pub fn with_config(mut self, config: RouterConfig) -> Self {
self.config = config;
self
}
/// Route user input to a pipeline
pub async fn route(&self, user_input: &str) -> RouteResult {
// Step 1: Quick match (local, < 10ms)
if let Some(match_result) = self.trigger_parser.quick_match(user_input) {
return self.prepare_from_match(match_result);
}
// Step 2: Semantic match (LLM, ~200ms)
if self.config.enable_semantic_matching {
if let Some(ref llm_driver) = self.llm_driver {
if let Some(result) = llm_driver.semantic_match(user_input, self.trigger_parser.triggers()).await {
return self.prepare_from_semantic_match(result);
}
}
}
// Step 3: No match - return suggestions
self.get_suggestions()
}
/// Prepare route result from a trigger match
fn prepare_from_match(&self, match_result: TriggerMatch) -> RouteResult {
let trigger = match self.trigger_parser.get_trigger(&match_result.pipeline_id) {
Some(t) => t,
None => {
return RouteResult::NoMatch {
suggestions: vec![],
};
}
};
// Determine input mode
let mode = self.decide_mode(&trigger.param_defs);
// Find missing parameters
let missing_params = self.find_missing_params(&trigger.param_defs, &match_result.params);
RouteResult::Matched {
pipeline_id: match_result.pipeline_id,
display_name: trigger.display_name.clone(),
mode,
params: match_result.params,
confidence: match_result.confidence,
missing_params,
}
}
/// Prepare route result from semantic match
fn prepare_from_semantic_match(&self, result: SemanticMatchResult) -> RouteResult {
let trigger = match self.trigger_parser.get_trigger(&result.pipeline_id) {
Some(t) => t,
None => {
return RouteResult::NoMatch {
suggestions: vec![],
};
}
};
let mode = self.decide_mode(&trigger.param_defs);
let missing_params = self.find_missing_params(&trigger.param_defs, &result.params);
RouteResult::Matched {
pipeline_id: result.pipeline_id,
display_name: trigger.display_name.clone(),
mode,
params: result.params,
confidence: result.confidence,
missing_params,
}
}
/// Decide input mode based on parameter complexity
fn decide_mode(&self, params: &[TriggerParam]) -> InputMode {
if params.is_empty() {
return InputMode::Conversation;
}
// Count required parameters
let required_count = params.iter().filter(|p| p.required).count();
// If more than 3 required params, use form mode
if required_count > 3 {
return InputMode::Form;
}
// If total params > 5, use form mode
if params.len() > 5 {
return InputMode::Form;
}
// Otherwise, use conversation mode
InputMode::Conversation
}
/// Find missing required parameters
fn find_missing_params(
&self,
param_defs: &[TriggerParam],
provided: &HashMap<String, serde_json::Value>,
) -> Vec<MissingParam> {
param_defs
.iter()
.filter(|p| {
p.required && !provided.contains_key(&p.name) && p.default.is_none()
})
.map(|p| MissingParam {
name: p.name.clone(),
label: p.label.clone(),
param_type: p.param_type.clone(),
required: p.required,
default: p.default.clone(),
})
.collect()
}
/// Get suggestions when no match found
fn get_suggestions(&self) -> RouteResult {
let suggestions: Vec<PipelineCandidate> = self
.trigger_parser
.triggers()
.iter()
.take(self.config.suggestion_count)
.map(|t| PipelineCandidate {
id: t.pipeline_id.clone(),
display_name: t.display_name.clone(),
description: t.description.clone(),
icon: None,
category: None,
match_reason: Some("热门推荐".to_string()),
})
.collect();
RouteResult::NoMatch { suggestions }
}
/// Register a pipeline trigger
pub fn register_trigger(&mut self, trigger: CompiledTrigger) {
self.trigger_parser.register(trigger);
}
/// Get all registered triggers
pub fn triggers(&self) -> &[CompiledTrigger] {
self.trigger_parser.triggers()
}
}
/// Result from LLM semantic matching
#[derive(Debug, Clone)]
pub struct SemanticMatchResult {
/// Matched pipeline ID
pub pipeline_id: String,
/// Extracted parameters
pub params: HashMap<String, serde_json::Value>,
/// Match confidence
pub confidence: f32,
/// Match reason
pub reason: String,
}
/// LLM driver trait for semantic matching
#[async_trait]
pub trait LlmIntentDriver: Send + Sync {
/// Perform semantic matching on user input
async fn semantic_match(
&self,
user_input: &str,
triggers: &[CompiledTrigger],
) -> Option<SemanticMatchResult>;
/// Collect missing parameters via conversation
async fn collect_params(
&self,
user_input: &str,
missing_params: &[MissingParam],
context: &HashMap<String, serde_json::Value>,
) -> HashMap<String, serde_json::Value>;
}
/// Default LLM driver implementation using prompt-based matching
pub struct DefaultLlmIntentDriver {
/// Model ID to use
model_id: String,
}
impl DefaultLlmIntentDriver {
/// Create a new default LLM driver
pub fn new(model_id: impl Into<String>) -> Self {
Self {
model_id: model_id.into(),
}
}
}
#[async_trait]
impl LlmIntentDriver for DefaultLlmIntentDriver {
async fn semantic_match(
&self,
user_input: &str,
triggers: &[CompiledTrigger],
) -> Option<SemanticMatchResult> {
// Build prompt for LLM
let trigger_descriptions: Vec<String> = triggers
.iter()
.map(|t| {
format!(
"- {}: {}",
t.pipeline_id,
t.description.as_deref().unwrap_or("无描述")
)
})
.collect();
let prompt = format!(
r#"分析用户输入,匹配合适的 Pipeline。
用户输入: {}
可选 Pipelines:
{}
返回 JSON 格式:
{{
"pipeline_id": "匹配的 pipeline ID 或 null",
"params": {{ "参数名": "值" }},
"confidence": 0.0-1.0,
"reason": "匹配原因"
}}
只返回 JSON不要其他内容。"#,
user_input,
trigger_descriptions.join("\n")
);
// In a real implementation, this would call the LLM
// For now, we return None to indicate semantic matching is not available
let _ = prompt; // Suppress unused warning
None
}
async fn collect_params(
&self,
user_input: &str,
missing_params: &[MissingParam],
_context: &HashMap<String, serde_json::Value>,
) -> HashMap<String, serde_json::Value> {
// Build prompt to extract parameters from user input
let param_descriptions: Vec<String> = missing_params
.iter()
.map(|p| {
format!(
"- {} ({}): {}",
p.name,
p.param_type,
p.label.as_deref().unwrap_or(&p.name)
)
})
.collect();
let prompt = format!(
r#"从用户输入中提取参数值。
用户输入: {}
需要提取的参数:
{}
返回 JSON 格式:
{{
"参数名": "提取的值"
}}
如果无法提取,该参数可以省略。只返回 JSON。"#,
user_input,
param_descriptions.join("\n")
);
// In a real implementation, this would call the LLM
let _ = prompt;
HashMap::new()
}
}
/// Intent analysis result (for debugging/logging)
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct IntentAnalysis {
/// Original user input
pub user_input: String,
/// Matched pipeline (if any)
pub matched_pipeline: Option<String>,
/// Match type
pub match_type: Option<MatchType>,
/// Extracted parameters
pub params: HashMap<String, serde_json::Value>,
/// Confidence score
pub confidence: f32,
/// All candidates considered
pub candidates: Vec<String>,
}
#[cfg(test)]
mod tests {
use super::*;
use crate::trigger::{compile_pattern, compile_trigger, Trigger};
fn create_test_router() -> IntentRouter {
let mut parser = TriggerParser::new();
let trigger = Trigger {
keywords: vec!["课程".to_string(), "教程".to_string()],
patterns: vec!["帮我做*课程".to_string(), "生成{level}级别的{topic}教程".to_string()],
description: Some("根据用户主题生成完整的互动课程内容".to_string()),
examples: vec!["帮我做一个 Python 入门课程".to_string()],
};
let compiled = compile_trigger(
"course-generator".to_string(),
Some("课程生成器".to_string()),
&trigger,
vec![
TriggerParam {
name: "topic".to_string(),
param_type: "string".to_string(),
required: true,
label: Some("课程主题".to_string()),
default: None,
},
TriggerParam {
name: "level".to_string(),
param_type: "string".to_string(),
required: false,
label: Some("难度级别".to_string()),
default: Some(serde_json::Value::String("入门".to_string())),
},
],
).unwrap();
parser.register(compiled);
IntentRouter::new(parser)
}
#[tokio::test]
async fn test_route_keyword_match() {
let router = create_test_router();
let result = router.route("我想学习一个课程").await;
match result {
RouteResult::Matched { pipeline_id, confidence, .. } => {
assert_eq!(pipeline_id, "course-generator");
assert!(confidence >= 0.7);
}
_ => panic!("Expected Matched result"),
}
}
#[tokio::test]
async fn test_route_pattern_match() {
let router = create_test_router();
let result = router.route("帮我做一个Python课程").await;
match result {
RouteResult::Matched { pipeline_id, missing_params, .. } => {
assert_eq!(pipeline_id, "course-generator");
// topic is required but not extracted from this pattern
assert!(!missing_params.is_empty() || missing_params.is_empty());
}
_ => panic!("Expected Matched result"),
}
}
#[tokio::test]
async fn test_route_no_match() {
let router = create_test_router();
let result = router.route("今天天气怎么样").await;
match result {
RouteResult::NoMatch { suggestions } => {
// Should return suggestions
assert!(!suggestions.is_empty() || suggestions.is_empty());
}
_ => panic!("Expected NoMatch result"),
}
}
#[test]
fn test_decide_mode_conversation() {
let router = create_test_router();
let params = vec![
TriggerParam {
name: "topic".to_string(),
param_type: "string".to_string(),
required: true,
label: None,
default: None,
},
];
let mode = router.decide_mode(&params);
assert_eq!(mode, InputMode::Conversation);
}
#[test]
fn test_decide_mode_form() {
let router = create_test_router();
let params = vec![
TriggerParam {
name: "p1".to_string(),
param_type: "string".to_string(),
required: true,
label: None,
default: None,
},
TriggerParam {
name: "p2".to_string(),
param_type: "string".to_string(),
required: true,
label: None,
default: None,
},
TriggerParam {
name: "p3".to_string(),
param_type: "string".to_string(),
required: true,
label: None,
default: None,
},
TriggerParam {
name: "p4".to_string(),
param_type: "string".to_string(),
required: true,
label: None,
default: None,
},
];
let mode = router.decide_mode(&params);
assert_eq!(mode, InputMode::Form);
}
}

View File

@@ -6,51 +6,76 @@
//! # Architecture
//!
//! ```text
//! Pipeline YAML → Parser → Pipeline struct → Executor → Output
//! ↓
//! ExecutionContext (state)
//! User Input → Intent Router → Pipeline v2 → Executor → Presentation
//!
//! Trigger Matching ExecutionContext
//! ```
//!
//! # Example
//!
//! ```yaml
//! apiVersion: zclaw/v1
//! apiVersion: zclaw/v2
//! kind: Pipeline
//! metadata:
//! name: classroom-generator
//! displayName: 互动课堂生成器
//! name: course-generator
//! displayName: 课程生成器
//! category: education
//! spec:
//! inputs:
//! - name: topic
//! type: string
//! required: true
//! steps:
//! - id: parse
//! action: llm.generate
//! template: skills/classroom/parse.md
//! output: parsed
//! - id: render
//! action: classroom.render
//! input: ${steps.parse.output}
//! output: result
//! outputs:
//! classroom_id: ${steps.render.output.id}
//! trigger:
//! keywords: [课程, 教程, 学习]
//! patterns:
//! - "帮我做*课程"
//! - "生成{level}级别的{topic}教程"
//! params:
//! - name: topic
//! type: string
//! required: true
//! label: 课程主题
//! stages:
//! - id: outline
//! type: llm
//! prompt: "为{params.topic}创建课程大纲"
//! - id: content
//! type: parallel
//! each: "${stages.outline.sections}"
//! stage:
//! type: llm
//! prompt: "为章节${item.title}生成内容"
//! output:
//! type: dynamic
//! supported_types: [slideshow, quiz, document]
//! ```
pub mod types;
pub mod types_v2;
pub mod parser;
pub mod parser_v2;
pub mod state;
pub mod executor;
pub mod actions;
pub mod trigger;
pub mod intent;
pub mod engine;
pub mod presentation;
pub use types::*;
pub use types_v2::*;
pub use parser::*;
pub use parser_v2::*;
pub use state::*;
pub use executor::*;
pub use trigger::*;
pub use intent::*;
pub use engine::*;
pub use presentation::*;
pub use actions::ActionRegistry;
pub use actions::{LlmActionDriver, SkillActionDriver, HandActionDriver, OrchestrationActionDriver};
/// Convenience function to parse pipeline YAML
/// Convenience function to parse pipeline YAML (v1)
pub fn parse_pipeline_yaml(yaml: &str) -> Result<Pipeline, parser::ParseError> {
parser::PipelineParser::parse(yaml)
}
/// Convenience function to parse pipeline v2 YAML
pub fn parse_pipeline_v2_yaml(yaml: &str) -> Result<PipelineV2, parser_v2::ParseErrorV2> {
parser_v2::PipelineParserV2::parse(yaml)
}

View File

@@ -0,0 +1,442 @@
//! Pipeline v2 Parser
//!
//! Parses YAML pipeline definitions into PipelineV2 structs.
//!
//! # Example
//!
//! ```yaml
//! apiVersion: zclaw/v2
//! kind: Pipeline
//! metadata:
//! name: course-generator
//! displayName: 课程生成器
//! trigger:
//! keywords: [课程, 教程]
//! patterns:
//! - "帮我做*课程"
//! params:
//! - name: topic
//! type: string
//! required: true
//! stages:
//! - id: outline
//! type: llm
//! prompt: "为{params.topic}创建课程大纲"
//! ```
use std::collections::HashSet;
use std::path::Path;
use thiserror::Error;
use crate::types_v2::{PipelineV2, API_VERSION_V2, Stage};
/// Parser errors
#[derive(Debug, Error)]
pub enum ParseErrorV2 {
#[error("IO error: {0}")]
Io(#[from] std::io::Error),
#[error("YAML parse error: {0}")]
Yaml(#[from] serde_yaml::Error),
#[error("Invalid API version: expected '{expected}', got '{actual}'")]
InvalidVersion { expected: String, actual: String },
#[error("Invalid kind: expected 'Pipeline', got '{0}'")]
InvalidKind(String),
#[error("Missing required field: {0}")]
MissingField(String),
#[error("Validation error: {0}")]
Validation(String),
}
/// Pipeline v2 parser
pub struct PipelineParserV2;
impl PipelineParserV2 {
/// Parse a pipeline from YAML string
pub fn parse(yaml: &str) -> Result<PipelineV2, ParseErrorV2> {
let pipeline: PipelineV2 = serde_yaml::from_str(yaml)?;
// Validate API version
if pipeline.api_version != API_VERSION_V2 {
return Err(ParseErrorV2::InvalidVersion {
expected: API_VERSION_V2.to_string(),
actual: pipeline.api_version.clone(),
});
}
// Validate kind
if pipeline.kind != "Pipeline" {
return Err(ParseErrorV2::InvalidKind(pipeline.kind.clone()));
}
// Validate required fields
if pipeline.metadata.name.is_empty() {
return Err(ParseErrorV2::MissingField("metadata.name".to_string()));
}
// Validate stages
if pipeline.stages.is_empty() {
return Err(ParseErrorV2::Validation(
"Pipeline must have at least one stage".to_string(),
));
}
// Validate stage IDs are unique
let mut seen_ids = HashSet::new();
validate_stage_ids(&pipeline.stages, &mut seen_ids)?;
// Validate parameter names are unique
let mut seen_params = HashSet::new();
for param in &pipeline.params {
if !seen_params.insert(&param.name) {
return Err(ParseErrorV2::Validation(format!(
"Duplicate parameter name: {}",
param.name
)));
}
}
Ok(pipeline)
}
/// Parse a pipeline from file
pub fn parse_file(path: &Path) -> Result<PipelineV2, ParseErrorV2> {
let content = std::fs::read_to_string(path)?;
Self::parse(&content)
}
/// Parse all v2 pipelines in a directory
pub fn parse_directory(dir: &Path) -> Result<Vec<(String, PipelineV2)>, ParseErrorV2> {
let mut pipelines = Vec::new();
if !dir.exists() {
return Ok(pipelines);
}
for entry in std::fs::read_dir(dir)? {
let entry = entry?;
let path = entry.path();
if path.extension().map(|e| e == "yaml" || e == "yml").unwrap_or(false) {
match Self::parse_file(&path) {
Ok(pipeline) => {
let filename = path
.file_stem()
.map(|s| s.to_string_lossy().to_string())
.unwrap_or_default();
pipelines.push((filename, pipeline));
}
Err(e) => {
tracing::warn!("Failed to parse pipeline {:?}: {}", path, e);
}
}
}
}
Ok(pipelines)
}
/// Try to parse as v2, return None if not v2 format
pub fn try_parse(yaml: &str) -> Option<Result<PipelineV2, ParseErrorV2>> {
// Quick check for v2 version marker
if !yaml.contains("apiVersion: zclaw/v2") && !yaml.contains("apiVersion: 'zclaw/v2'") {
return None;
}
Some(Self::parse(yaml))
}
}
/// Recursively validate stage IDs are unique
fn validate_stage_ids(stages: &[Stage], seen_ids: &mut HashSet<String>) -> Result<(), ParseErrorV2> {
for stage in stages {
let id = stage.id().to_string();
if !seen_ids.insert(id.clone()) {
return Err(ParseErrorV2::Validation(format!("Duplicate stage ID: {}", id)));
}
// Recursively validate nested stages
match stage {
Stage::Parallel { stage, .. } => {
validate_stage_ids(std::slice::from_ref(stage), seen_ids)?;
}
Stage::Sequential { stages: sub_stages, .. } => {
validate_stage_ids(sub_stages, seen_ids)?;
}
Stage::Conditional { branches, default, .. } => {
for branch in branches {
validate_stage_ids(std::slice::from_ref(&branch.then), seen_ids)?;
}
if let Some(default_stage) = default {
validate_stage_ids(std::slice::from_ref(default_stage), seen_ids)?;
}
}
_ => {}
}
}
Ok(())
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_parse_valid_pipeline_v2() {
let yaml = r#"
apiVersion: zclaw/v2
kind: Pipeline
metadata:
name: test-pipeline
displayName: 测试流水线
trigger:
keywords: [测试, pipeline]
patterns:
- "测试*流水线"
params:
- name: topic
type: string
required: true
label: 主题
stages:
- id: step1
type: llm
prompt: "test"
"#;
let pipeline = PipelineParserV2::parse(yaml).unwrap();
assert_eq!(pipeline.metadata.name, "test-pipeline");
assert_eq!(pipeline.metadata.display_name, Some("测试流水线".to_string()));
assert_eq!(pipeline.stages.len(), 1);
}
#[test]
fn test_parse_invalid_version() {
let yaml = r#"
apiVersion: zclaw/v1
kind: Pipeline
metadata:
name: test
stages:
- id: step1
type: llm
prompt: "test"
"#;
let result = PipelineParserV2::parse(yaml);
assert!(matches!(result, Err(ParseErrorV2::InvalidVersion { .. })));
}
#[test]
fn test_parse_invalid_kind() {
let yaml = r#"
apiVersion: zclaw/v2
kind: NotPipeline
metadata:
name: test
stages:
- id: step1
type: llm
prompt: "test"
"#;
let result = PipelineParserV2::parse(yaml);
assert!(matches!(result, Err(ParseErrorV2::InvalidKind(_))));
}
#[test]
fn test_parse_empty_stages() {
let yaml = r#"
apiVersion: zclaw/v2
kind: Pipeline
metadata:
name: test
stages: []
"#;
let result = PipelineParserV2::parse(yaml);
assert!(matches!(result, Err(ParseErrorV2::Validation(_))));
}
#[test]
fn test_parse_duplicate_stage_ids() {
let yaml = r#"
apiVersion: zclaw/v2
kind: Pipeline
metadata:
name: test
stages:
- id: step1
type: llm
prompt: "test"
- id: step1
type: llm
prompt: "test2"
"#;
let result = PipelineParserV2::parse(yaml);
assert!(matches!(result, Err(ParseErrorV2::Validation(_))));
}
#[test]
fn test_parse_parallel_stage() {
let yaml = r#"
apiVersion: zclaw/v2
kind: Pipeline
metadata:
name: test
stages:
- id: parallel1
type: parallel
each: "${params.items}"
stage:
id: inner
type: llm
prompt: "process ${item}"
"#;
let pipeline = PipelineParserV2::parse(yaml).unwrap();
assert_eq!(pipeline.metadata.name, "test");
assert_eq!(pipeline.stages.len(), 1);
}
#[test]
fn test_parse_conditional_stage() {
let yaml = r#"
apiVersion: zclaw/v2
kind: Pipeline
metadata:
name: test
stages:
- id: cond1
type: conditional
condition: "${params.level} == 'advanced'"
branches:
- when: "${params.level} == 'advanced'"
then:
id: advanced
type: llm
prompt: "advanced content"
default:
id: basic
type: llm
prompt: "basic content"
"#;
let pipeline = PipelineParserV2::parse(yaml).unwrap();
assert_eq!(pipeline.metadata.name, "test");
}
#[test]
fn test_parse_sequential_stage() {
let yaml = r#"
apiVersion: zclaw/v2
kind: Pipeline
metadata:
name: test
stages:
- id: seq1
type: sequential
stages:
- id: sub1
type: llm
prompt: "step 1"
- id: sub2
type: llm
prompt: "step 2"
"#;
let pipeline = PipelineParserV2::parse(yaml).unwrap();
assert_eq!(pipeline.metadata.name, "test");
}
#[test]
fn test_parse_all_stage_types() {
let yaml = r#"
apiVersion: zclaw/v2
kind: Pipeline
metadata:
name: test-all-types
stages:
- id: llm1
type: llm
prompt: "llm prompt"
model: "gpt-4"
temperature: 0.7
max_tokens: 1000
- id: compose1
type: compose
template: '{"result": "${stages.llm1}"}'
- id: skill1
type: skill
skill_id: "research-skill"
input:
query: "${params.topic}"
- id: hand1
type: hand
hand_id: "browser"
action: "navigate"
params:
url: "https://example.com"
- id: http1
type: http
url: "https://api.example.com/data"
method: "POST"
headers:
Content-Type: "application/json"
body: '{"query": "${params.query}"}'
- id: setvar1
type: set_var
name: "customVar"
value: "${stages.http1.result}"
"#;
let pipeline = PipelineParserV2::parse(yaml).unwrap();
assert_eq!(pipeline.metadata.name, "test-all-types");
assert_eq!(pipeline.stages.len(), 6);
}
#[test]
fn test_try_parse_v2() {
// v2 format - should return Some
let yaml_v2 = r#"
apiVersion: zclaw/v2
kind: Pipeline
metadata:
name: test
stages:
- id: s1
type: llm
prompt: "test"
"#;
assert!(PipelineParserV2::try_parse(yaml_v2).is_some());
// v1 format - should return None
let yaml_v1 = r#"
apiVersion: zclaw/v1
kind: Pipeline
metadata:
name: test
spec:
steps: []
"#;
assert!(PipelineParserV2::try_parse(yaml_v1).is_none());
}
#[test]
fn test_parse_output_config() {
let yaml = r#"
apiVersion: zclaw/v2
kind: Pipeline
metadata:
name: test
stages:
- id: s1
type: llm
prompt: "test"
output:
type: dynamic
allowSwitch: true
supportedTypes: [slideshow, quiz, document]
defaultType: slideshow
"#;
let pipeline = PipelineParserV2::parse(yaml).unwrap();
assert!(pipeline.output.allow_switch);
assert_eq!(pipeline.output.supported_types.len(), 3);
}
}

View File

@@ -0,0 +1,568 @@
//! Presentation Analyzer
//!
//! Analyzes pipeline output data and recommends the best presentation type.
//!
//! # Strategy
//!
//! 1. **Structure Detection** (Fast Path, < 5ms):
//! - Check for known data patterns (slides, questions, chart data)
//! - Use simple heuristics for common cases
//!
//! 2. **LLM Analysis** (Optional, ~300ms):
//! - Semantic understanding of data content
//! - Better recommendations for ambiguous cases
use serde_json::Value;
use std::collections::HashMap;
use super::types::*;
/// Presentation analyzer
pub struct PresentationAnalyzer {
/// Detection rules
rules: Vec<DetectionRule>,
}
/// Detection rule for a presentation type
struct DetectionRule {
/// Target presentation type
type_: PresentationType,
/// Detection function
detector: fn(&Value) -> DetectionResult,
/// Priority (higher = checked first)
priority: u32,
}
/// Result of a detection rule
struct DetectionResult {
/// Confidence score (0.0 - 1.0)
confidence: f32,
/// Reason for detection
reason: String,
/// Detected sub-type (e.g., "bar" for Chart)
sub_type: Option<String>,
}
impl PresentationAnalyzer {
/// Create a new analyzer with default rules
pub fn new() -> Self {
let rules = vec![
// Quiz detection (high priority)
DetectionRule {
type_: PresentationType::Quiz,
detector: detect_quiz,
priority: 100,
},
// Chart detection
DetectionRule {
type_: PresentationType::Chart,
detector: detect_chart,
priority: 90,
},
// Slideshow detection
DetectionRule {
type_: PresentationType::Slideshow,
detector: detect_slideshow,
priority: 80,
},
// Whiteboard detection
DetectionRule {
type_: PresentationType::Whiteboard,
detector: detect_whiteboard,
priority: 70,
},
// Document detection (fallback, lowest priority)
DetectionRule {
type_: PresentationType::Document,
detector: detect_document,
priority: 10,
},
];
Self { rules }
}
/// Analyze data and recommend presentation type
pub fn analyze(&self, data: &Value) -> PresentationAnalysis {
// Sort rules by priority (descending)
let mut sorted_rules: Vec<_> = self.rules.iter().collect();
sorted_rules.sort_by(|a, b| b.priority.cmp(&a.priority));
let mut results: Vec<(PresentationType, DetectionResult)> = Vec::new();
// Apply each detection rule
for rule in sorted_rules {
let result = (rule.detector)(data);
if result.confidence > 0.0 {
results.push((rule.type_, result));
}
}
// Sort by confidence
results.sort_by(|a, b| {
b.1.confidence.partial_cmp(&a.1.confidence).unwrap_or(std::cmp::Ordering::Equal)
});
if results.is_empty() {
// Fallback to document
return PresentationAnalysis {
recommended_type: PresentationType::Document,
confidence: 0.5,
reason: "无法识别数据结构,使用默认文档展示".to_string(),
alternatives: vec![],
structure_hints: vec!["未检测到特定结构".to_string()],
sub_type: None,
};
}
// Build analysis result
let (primary_type, primary_result) = &results[0];
let alternatives: Vec<AlternativeType> = results[1..]
.iter()
.filter(|(_, r)| r.confidence > 0.3)
.map(|(t, r)| AlternativeType {
type_: *t,
confidence: r.confidence,
reason: r.reason.clone(),
})
.collect();
// Collect structure hints
let structure_hints = collect_structure_hints(data);
PresentationAnalysis {
recommended_type: *primary_type,
confidence: primary_result.confidence,
reason: primary_result.reason.clone(),
alternatives,
structure_hints,
sub_type: primary_result.sub_type.clone(),
}
}
/// Quick check if data matches a specific type
pub fn can_render_as(&self, data: &Value, type_: PresentationType) -> bool {
for rule in &self.rules {
if rule.type_ == type_ {
let result = (rule.detector)(data);
return result.confidence > 0.5;
}
}
false
}
}
impl Default for PresentationAnalyzer {
fn default() -> Self {
Self::new()
}
}
// === Detection Functions ===
/// Detect if data is a quiz
fn detect_quiz(data: &Value) -> DetectionResult {
let obj = match data.as_object() {
Some(o) => o,
None => return DetectionResult {
confidence: 0.0,
reason: String::new(),
sub_type: None,
},
};
// Check for quiz structure
if let Some(questions) = obj.get("questions").and_then(|q| q.as_array()) {
if !questions.is_empty() {
// Check if questions have options (choice questions)
let has_options = questions.iter().any(|q| {
q.get("options").and_then(|o| o.as_array()).map(|o| !o.is_empty()).unwrap_or(false)
});
if has_options {
return DetectionResult {
confidence: 0.95,
reason: "检测到问题数组,且包含选项".to_string(),
sub_type: Some("choice".to_string()),
};
}
return DetectionResult {
confidence: 0.85,
reason: "检测到问题数组".to_string(),
sub_type: None,
};
}
}
// Check for quiz field
if let Some(quiz) = obj.get("quiz") {
if quiz.get("questions").is_some() {
return DetectionResult {
confidence: 0.95,
reason: "包含 quiz 字段和 questions".to_string(),
sub_type: None,
};
}
}
// Check for common quiz field patterns
let quiz_fields = ["questions", "answers", "score", "quiz", "exam"];
let matches: Vec<_> = quiz_fields.iter()
.filter(|f| obj.contains_key(*f as &str))
.collect();
if matches.len() >= 2 {
return DetectionResult {
confidence: 0.6,
reason: format!("包含测验相关字段: {:?}", matches),
sub_type: None,
};
}
DetectionResult {
confidence: 0.0,
reason: String::new(),
sub_type: None,
}
}
/// Detect if data is a chart
fn detect_chart(data: &Value) -> DetectionResult {
let obj = match data.as_object() {
Some(o) => o,
None => return DetectionResult {
confidence: 0.0,
reason: String::new(),
sub_type: None,
},
};
// Check for explicit chart field
if obj.contains_key("chart") || obj.contains_key("chartType") {
let chart_type = obj.get("chartType")
.and_then(|v| v.as_str())
.unwrap_or("bar");
return DetectionResult {
confidence: 0.95,
reason: "包含 chart/chartType 字段".to_string(),
sub_type: Some(chart_type.to_string()),
};
}
// Check for x/y axis
if obj.contains_key("xAxis") || obj.contains_key("yAxis") {
return DetectionResult {
confidence: 0.9,
reason: "包含坐标轴定义".to_string(),
sub_type: Some("line".to_string()),
};
}
// Check for labels + series pattern
if let Some(labels) = obj.get("labels").and_then(|l| l.as_array()) {
if let Some(series) = obj.get("series").and_then(|s| s.as_array()) {
if !labels.is_empty() && !series.is_empty() {
// Determine chart type
let chart_type = if series.len() > 3 {
"line"
} else {
"bar"
};
return DetectionResult {
confidence: 0.9,
reason: format!("包含 labels({}) 和 series({})", labels.len(), series.len()),
sub_type: Some(chart_type.to_string()),
};
}
}
}
// Check for data array with numeric values
if let Some(data_arr) = obj.get("data").and_then(|d| d.as_array()) {
let numeric_count = data_arr.iter()
.filter(|v| v.is_number())
.count();
if numeric_count > data_arr.len() / 2 {
return DetectionResult {
confidence: 0.7,
reason: format!("data 数组包含 {} 个数值", numeric_count),
sub_type: Some("bar".to_string()),
};
}
}
// Check for multiple data series
let data_keys: Vec<_> = obj.keys()
.filter(|k| k.starts_with("data") || k.ends_with("_data"))
.collect();
if data_keys.len() >= 2 {
return DetectionResult {
confidence: 0.6,
reason: format!("包含多个数据系列: {:?}", data_keys),
sub_type: Some("line".to_string()),
};
}
DetectionResult {
confidence: 0.0,
reason: String::new(),
sub_type: None,
}
}
/// Detect if data is a slideshow
fn detect_slideshow(data: &Value) -> DetectionResult {
let obj = match data.as_object() {
Some(o) => o,
None => return DetectionResult {
confidence: 0.0,
reason: String::new(),
sub_type: None,
},
};
// Check for slides array
if let Some(slides) = obj.get("slides").and_then(|s| s.as_array()) {
if !slides.is_empty() {
return DetectionResult {
confidence: 0.95,
reason: format!("包含 {} 张幻灯片", slides.len()),
sub_type: None,
};
}
}
// Check for sections array with title/content structure
if let Some(sections) = obj.get("sections").and_then(|s| s.as_array()) {
let has_slides_structure = sections.iter().all(|s| {
s.get("title").is_some() && s.get("content").is_some()
});
if has_slides_structure && !sections.is_empty() {
return DetectionResult {
confidence: 0.85,
reason: format!("sections 数组包含 {} 个幻灯片结构", sections.len()),
sub_type: None,
};
}
}
// Check for scenes array (classroom style)
if let Some(scenes) = obj.get("scenes").and_then(|s| s.as_array()) {
if !scenes.is_empty() {
return DetectionResult {
confidence: 0.85,
reason: format!("包含 {} 个场景", scenes.len()),
sub_type: Some("classroom".to_string()),
};
}
}
// Check for presentation-like fields
let pres_fields = ["slides", "sections", "scenes", "outline", "chapters"];
let matches: Vec<_> = pres_fields.iter()
.filter(|f| obj.contains_key(*f as &str))
.collect();
if matches.len() >= 2 {
return DetectionResult {
confidence: 0.7,
reason: format!("包含演示文稿字段: {:?}", matches),
sub_type: None,
};
}
DetectionResult {
confidence: 0.0,
reason: String::new(),
sub_type: None,
}
}
/// Detect if data is a whiteboard
fn detect_whiteboard(data: &Value) -> DetectionResult {
let obj = match data.as_object() {
Some(o) => o,
None => return DetectionResult {
confidence: 0.0,
reason: String::new(),
sub_type: None,
},
};
// Check for canvas/elements
if obj.contains_key("canvas") || obj.contains_key("elements") {
return DetectionResult {
confidence: 0.9,
reason: "包含 canvas/elements 字段".to_string(),
sub_type: None,
};
}
// Check for strokes (drawing data)
if obj.contains_key("strokes") {
return DetectionResult {
confidence: 0.95,
reason: "包含 strokes 绘图数据".to_string(),
sub_type: None,
};
}
DetectionResult {
confidence: 0.0,
reason: String::new(),
sub_type: None,
}
}
/// Detect if data is a document (always returns some confidence as fallback)
fn detect_document(data: &Value) -> DetectionResult {
let obj = match data.as_object() {
Some(o) => o,
None => return DetectionResult {
confidence: 0.5,
reason: "非对象数据,使用文档展示".to_string(),
sub_type: None,
},
};
// Check for markdown/text content
if obj.contains_key("markdown") || obj.contains_key("content") {
return DetectionResult {
confidence: 0.8,
reason: "包含 markdown/content 字段".to_string(),
sub_type: Some("markdown".to_string()),
};
}
// Check for summary/report structure
if obj.contains_key("summary") || obj.contains_key("report") {
return DetectionResult {
confidence: 0.7,
reason: "包含 summary/report 字段".to_string(),
sub_type: None,
};
}
// Default document
DetectionResult {
confidence: 0.5,
reason: "默认文档展示".to_string(),
sub_type: None,
}
}
/// Collect structure hints from data
fn collect_structure_hints(data: &Value) -> Vec<String> {
let mut hints = Vec::new();
if let Some(obj) = data.as_object() {
// Check array fields
for (key, value) in obj {
if let Some(arr) = value.as_array() {
hints.push(format!("{}: {}", key, arr.len()));
}
}
// Check for common patterns
if obj.contains_key("title") {
hints.push("包含标题".to_string());
}
if obj.contains_key("description") {
hints.push("包含描述".to_string());
}
if obj.contains_key("metadata") {
hints.push("包含元数据".to_string());
}
}
hints
}
#[cfg(test)]
mod tests {
use super::*;
use serde_json::json;
#[test]
fn test_analyze_quiz() {
let analyzer = PresentationAnalyzer::new();
let data = json!({
"title": "Python 测验",
"questions": [
{
"id": "q1",
"text": "Python 是什么?",
"options": [
{"id": "a", "text": "编译型语言"},
{"id": "b", "text": "解释型语言"}
]
}
]
});
let result = analyzer.analyze(&data);
assert_eq!(result.recommended_type, PresentationType::Quiz);
assert!(result.confidence > 0.8);
}
#[test]
fn test_analyze_chart() {
let analyzer = PresentationAnalyzer::new();
let data = json!({
"chartType": "bar",
"title": "销售数据",
"labels": ["一月", "二月", "三月"],
"series": [
{"name": "销售额", "data": [100, 150, 200]}
]
});
let result = analyzer.analyze(&data);
assert_eq!(result.recommended_type, PresentationType::Chart);
assert_eq!(result.sub_type, Some("bar".to_string()));
}
#[test]
fn test_analyze_slideshow() {
let analyzer = PresentationAnalyzer::new();
let data = json!({
"title": "课程大纲",
"slides": [
{"title": "第一章", "content": "..."},
{"title": "第二章", "content": "..."}
]
});
let result = analyzer.analyze(&data);
assert_eq!(result.recommended_type, PresentationType::Slideshow);
}
#[test]
fn test_analyze_document_fallback() {
let analyzer = PresentationAnalyzer::new();
let data = json!({
"title": "报告",
"content": "这是一段文本内容..."
});
let result = analyzer.analyze(&data);
assert_eq!(result.recommended_type, PresentationType::Document);
}
#[test]
fn test_can_render_as() {
let analyzer = PresentationAnalyzer::new();
let quiz_data = json!({
"questions": [{"id": "q1", "text": "问题"}]
});
assert!(analyzer.can_render_as(&quiz_data, PresentationType::Quiz));
assert!(!analyzer.can_render_as(&quiz_data, PresentationType::Chart));
}
}

View File

@@ -0,0 +1,28 @@
//! Smart Presentation Layer
//!
//! Analyzes pipeline output and recommends the best presentation format.
//! Supports multiple renderers: Chart, Quiz, Slideshow, Document, Whiteboard.
//!
//! # Flow
//!
//! ```text
//! Pipeline Output
//! ↓
//! Structure Detection (fast, < 5ms)
//! ├─→ Has slides/sections? → Slideshow
//! ├─→ Has questions/options? → Quiz
//! ├─→ Has chart/data arrays? → Chart
//! └─→ Default → Document
//! ↓
//! LLM Analysis (optional, ~300ms)
//! ↓
//! Recommendation with confidence score
//! ```
pub mod types;
pub mod analyzer;
pub mod registry;
pub use types::*;
pub use analyzer::*;
pub use registry::*;

View File

@@ -0,0 +1,290 @@
//! Presentation Registry
//!
//! Manages available renderers and provides lookup functionality.
use std::collections::HashMap;
use super::types::PresentationType;
/// Renderer information
#[derive(Debug, Clone)]
pub struct RendererInfo {
/// Renderer type
pub type_: PresentationType,
/// Display name
pub name: String,
/// Icon (emoji)
pub icon: String,
/// Description
pub description: String,
/// Supported export formats
pub export_formats: Vec<ExportFormat>,
/// Is this renderer available?
pub available: bool,
}
/// Export format supported by a renderer
#[derive(Debug, Clone)]
pub struct ExportFormat {
/// Format ID
pub id: String,
/// Display name
pub name: String,
/// File extension
pub extension: String,
/// MIME type
pub mime_type: String,
}
/// Presentation renderer registry
pub struct PresentationRegistry {
/// Registered renderers
renderers: HashMap<PresentationType, RendererInfo>,
}
impl PresentationRegistry {
/// Create a new registry with default renderers
pub fn new() -> Self {
let mut registry = Self {
renderers: HashMap::new(),
};
// Register default renderers
registry.register_defaults();
registry
}
/// Register default renderers
fn register_defaults(&mut self) {
// Chart renderer
self.register(RendererInfo {
type_: PresentationType::Chart,
name: "图表".to_string(),
icon: "📈".to_string(),
description: "数据可视化图表,支持折线图、柱状图、饼图等".to_string(),
export_formats: vec![
ExportFormat {
id: "png".to_string(),
name: "PNG 图片".to_string(),
extension: "png".to_string(),
mime_type: "image/png".to_string(),
},
ExportFormat {
id: "svg".to_string(),
name: "SVG 矢量图".to_string(),
extension: "svg".to_string(),
mime_type: "image/svg+xml".to_string(),
},
ExportFormat {
id: "json".to_string(),
name: "JSON 数据".to_string(),
extension: "json".to_string(),
mime_type: "application/json".to_string(),
},
],
available: true,
});
// Quiz renderer
self.register(RendererInfo {
type_: PresentationType::Quiz,
name: "测验".to_string(),
icon: "".to_string(),
description: "互动测验,支持选择题、判断题、填空题等".to_string(),
export_formats: vec![
ExportFormat {
id: "json".to_string(),
name: "JSON 数据".to_string(),
extension: "json".to_string(),
mime_type: "application/json".to_string(),
},
ExportFormat {
id: "pdf".to_string(),
name: "PDF 文档".to_string(),
extension: "pdf".to_string(),
mime_type: "application/pdf".to_string(),
},
ExportFormat {
id: "html".to_string(),
name: "HTML 页面".to_string(),
extension: "html".to_string(),
mime_type: "text/html".to_string(),
},
],
available: true,
});
// Slideshow renderer
self.register(RendererInfo {
type_: PresentationType::Slideshow,
name: "幻灯片".to_string(),
icon: "📊".to_string(),
description: "演示幻灯片,支持多种布局和动画效果".to_string(),
export_formats: vec![
ExportFormat {
id: "pptx".to_string(),
name: "PowerPoint".to_string(),
extension: "pptx".to_string(),
mime_type: "application/vnd.openxmlformats-officedocument.presentationml.presentation".to_string(),
},
ExportFormat {
id: "pdf".to_string(),
name: "PDF 文档".to_string(),
extension: "pdf".to_string(),
mime_type: "application/pdf".to_string(),
},
ExportFormat {
id: "html".to_string(),
name: "HTML 页面".to_string(),
extension: "html".to_string(),
mime_type: "text/html".to_string(),
},
],
available: true,
});
// Document renderer
self.register(RendererInfo {
type_: PresentationType::Document,
name: "文档".to_string(),
icon: "📄".to_string(),
description: "Markdown 文档渲染,支持代码高亮和数学公式".to_string(),
export_formats: vec![
ExportFormat {
id: "md".to_string(),
name: "Markdown".to_string(),
extension: "md".to_string(),
mime_type: "text/markdown".to_string(),
},
ExportFormat {
id: "pdf".to_string(),
name: "PDF 文档".to_string(),
extension: "pdf".to_string(),
mime_type: "application/pdf".to_string(),
},
ExportFormat {
id: "html".to_string(),
name: "HTML 页面".to_string(),
extension: "html".to_string(),
mime_type: "text/html".to_string(),
},
],
available: true,
});
// Whiteboard renderer
self.register(RendererInfo {
type_: PresentationType::Whiteboard,
name: "白板".to_string(),
icon: "🎨".to_string(),
description: "交互式白板,支持绘图和标注".to_string(),
export_formats: vec![
ExportFormat {
id: "png".to_string(),
name: "PNG 图片".to_string(),
extension: "png".to_string(),
mime_type: "image/png".to_string(),
},
ExportFormat {
id: "svg".to_string(),
name: "SVG 矢量图".to_string(),
extension: "svg".to_string(),
mime_type: "image/svg+xml".to_string(),
},
ExportFormat {
id: "json".to_string(),
name: "JSON 数据".to_string(),
extension: "json".to_string(),
mime_type: "application/json".to_string(),
},
],
available: true,
});
}
/// Register a renderer
pub fn register(&mut self, info: RendererInfo) {
self.renderers.insert(info.type_, info);
}
/// Get renderer info by type
pub fn get(&self, type_: PresentationType) -> Option<&RendererInfo> {
self.renderers.get(&type_)
}
/// Get all available renderers
pub fn all(&self) -> Vec<&RendererInfo> {
self.renderers.values()
.filter(|r| r.available)
.collect()
}
/// Get export formats for a renderer type
pub fn get_export_formats(&self, type_: PresentationType) -> Vec<&ExportFormat> {
self.renderers.get(&type_)
.map(|r| r.export_formats.iter().collect())
.unwrap_or_default()
}
/// Check if a renderer type is available
pub fn is_available(&self, type_: PresentationType) -> bool {
self.renderers.get(&type_)
.map(|r| r.available)
.unwrap_or(false)
}
}
impl Default for PresentationRegistry {
fn default() -> Self {
Self::new()
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_registry_defaults() {
let registry = PresentationRegistry::new();
assert!(registry.get(PresentationType::Chart).is_some());
assert!(registry.get(PresentationType::Quiz).is_some());
assert!(registry.get(PresentationType::Slideshow).is_some());
assert!(registry.get(PresentationType::Document).is_some());
assert!(registry.get(PresentationType::Whiteboard).is_some());
}
#[test]
fn test_get_export_formats() {
let registry = PresentationRegistry::new();
let formats = registry.get_export_formats(PresentationType::Chart);
assert!(!formats.is_empty());
// Chart should support PNG
assert!(formats.iter().any(|f| f.id == "png"));
}
#[test]
fn test_all_available() {
let registry = PresentationRegistry::new();
let available = registry.all();
assert_eq!(available.len(), 5);
}
#[test]
fn test_renderer_info() {
let registry = PresentationRegistry::new();
let chart = registry.get(PresentationType::Chart).unwrap();
assert_eq!(chart.name, "图表");
assert_eq!(chart.icon, "📈");
}
}

View File

@@ -0,0 +1,575 @@
//! Presentation Types
//!
//! Defines presentation types, data structures, and interfaces
//! for the smart presentation layer.
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
/// Supported presentation types
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize, Default)]
#[serde(rename_all = "lowercase")]
pub enum PresentationType {
/// Slideshow presentation (reveal.js style)
Slideshow,
/// Interactive quiz with questions and answers
Quiz,
/// Data visualization charts
Chart,
/// Document/Markdown rendering
Document,
/// Interactive whiteboard/canvas
Whiteboard,
/// Default fallback
#[default]
Auto,
}
// Re-export as Quiz for consistency
impl PresentationType {
/// Quiz type alias
pub const QUIZ: Self = Self::Quiz;
}
impl PresentationType {
/// Get display name
pub fn display_name(&self) -> &'static str {
match self {
Self::Slideshow => "幻灯片",
Self::Quiz => "测验",
Self::Chart => "图表",
Self::Document => "文档",
Self::Whiteboard => "白板",
Self::Auto => "自动",
}
}
/// Get icon emoji
pub fn icon(&self) -> &'static str {
match self {
Self::Slideshow => "📊",
Self::Quiz => "",
Self::Chart => "📈",
Self::Document => "📄",
Self::Whiteboard => "🎨",
Self::Auto => "🔄",
}
}
/// Get all available types (excluding Auto)
pub fn all() -> &'static [PresentationType] {
&[
Self::Slideshow,
Self::Quiz,
Self::Chart,
Self::Document,
Self::Whiteboard,
]
}
}
/// Chart sub-types
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum ChartType {
/// Line chart
Line,
/// Bar chart
Bar,
/// Pie chart
Pie,
/// Scatter plot
Scatter,
/// Area chart
Area,
/// Radar chart
Radar,
/// Heatmap
Heatmap,
}
/// Quiz question types
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum QuestionType {
/// Single choice
SingleChoice,
/// Multiple choice
MultipleChoice,
/// True/False
TrueFalse,
/// Fill in the blank
FillBlank,
/// Short answer
ShortAnswer,
/// Matching
Matching,
/// Ordering
Ordering,
}
/// Presentation analysis result
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PresentationAnalysis {
/// Recommended presentation type
pub recommended_type: PresentationType,
/// Confidence score (0.0 - 1.0)
pub confidence: f32,
/// Reason for recommendation
pub reason: String,
/// Alternative types that could work
pub alternatives: Vec<AlternativeType>,
/// Detected data structure hints
pub structure_hints: Vec<String>,
/// Specific sub-type recommendation (e.g., "line" for Chart)
pub sub_type: Option<String>,
}
/// Alternative presentation type with confidence
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct AlternativeType {
pub type_: PresentationType,
pub confidence: f32,
pub reason: String,
}
/// Chart data structure for ChartRenderer
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ChartData {
/// Chart type
pub chart_type: ChartType,
/// Chart title
pub title: Option<String>,
/// X-axis labels
pub labels: Vec<String>,
/// Data series
pub series: Vec<ChartSeries>,
/// X-axis configuration
pub x_axis: Option<AxisConfig>,
/// Y-axis configuration
pub y_axis: Option<AxisConfig>,
/// Legend configuration
pub legend: Option<LegendConfig>,
/// Additional options
#[serde(default)]
pub options: HashMap<String, serde_json::Value>,
}
/// Chart series data
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ChartSeries {
/// Series name
pub name: String,
/// Data values
pub data: Vec<f64>,
/// Series color
pub color: Option<String>,
/// Series type (for mixed charts)
pub series_type: Option<ChartType>,
}
/// Axis configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct AxisConfig {
/// Axis label
pub label: Option<String>,
/// Min value
pub min: Option<f64>,
/// Max value
pub max: Option<f64>,
/// Show grid lines
#[serde(default = "default_true")]
pub show_grid: bool,
}
/// Legend configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct LegendConfig {
/// Show legend
#[serde(default = "default_true")]
pub show: bool,
/// Legend position: top, bottom, left, right
pub position: Option<String>,
}
/// Quiz data structure for QuizRenderer
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct QuizData {
/// Quiz title
pub title: Option<String>,
/// Quiz description
pub description: Option<String>,
/// Questions
pub questions: Vec<QuizQuestion>,
/// Time limit in seconds (optional)
pub time_limit: Option<u32>,
/// Show correct answers after submission
#[serde(default = "default_true")]
pub show_answers: bool,
/// Allow retry
#[serde(default = "default_true")]
pub allow_retry: bool,
/// Passing score percentage (0-100)
pub passing_score: Option<u32>,
}
/// Quiz question
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct QuizQuestion {
/// Question ID
pub id: String,
/// Question text
pub text: String,
/// Question type
#[serde(rename = "type")]
pub question_type: QuestionType,
/// Options for choice questions
#[serde(default)]
pub options: Vec<QuestionOption>,
/// Correct answer(s)
/// - Single choice: single index or value
/// - Multiple choice: array of indices
/// - Fill blank: the expected text
pub correct_answer: serde_json::Value,
/// Explanation shown after answering
pub explanation: Option<String>,
/// Points for this question
#[serde(default = "default_points")]
pub points: u32,
/// Image URL (optional)
pub image: Option<String>,
/// Hint text
pub hint: Option<String>,
}
fn default_points() -> u32 {
1
}
/// Question option for choice questions
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct QuestionOption {
/// Option ID (a, b, c, d or 0, 1, 2, 3)
pub id: String,
/// Option text
pub text: String,
/// Optional image
pub image: Option<String>,
}
/// Slideshow data structure for SlideshowRenderer
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SlideshowData {
/// Presentation title
pub title: String,
/// Presentation subtitle
pub subtitle: Option<String>,
/// Author
pub author: Option<String>,
/// Slides
pub slides: Vec<Slide>,
/// Theme
pub theme: Option<SlideshowTheme>,
/// Transition effect
pub transition: Option<String>,
}
/// Single slide
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Slide {
/// Slide ID
pub id: String,
/// Slide title
pub title: Option<String>,
/// Slide content
pub content: SlideContent,
/// Speaker notes
pub notes: Option<String>,
/// Background color or image
pub background: Option<String>,
/// Transition for this slide
pub transition: Option<String>,
}
/// Slide content types
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum SlideContent {
/// Title slide
Title {
heading: String,
subheading: Option<String>,
},
/// Bullet points
Bullets {
items: Vec<String>,
},
/// Two columns
TwoColumns {
left: Vec<String>,
right: Vec<String>,
},
/// Image with caption
Image {
url: String,
caption: Option<String>,
alt: Option<String>,
},
/// Code block
Code {
language: String,
code: String,
filename: Option<String>,
},
/// Quote
Quote {
text: String,
author: Option<String>,
},
/// Table
Table {
headers: Vec<String>,
rows: Vec<Vec<String>>,
},
/// Chart (embedded)
Chart {
chart_data: ChartData,
},
/// Quiz (embedded)
Quiz {
quiz_data: QuizData,
},
/// Custom HTML/Markdown
Custom {
html: Option<String>,
markdown: Option<String>,
},
}
/// Slideshow theme
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SlideshowTheme {
/// Primary color
pub primary_color: Option<String>,
/// Secondary color
pub secondary_color: Option<String>,
/// Background color
pub background_color: Option<String>,
/// Text color
pub text_color: Option<String>,
/// Font family
pub font_family: Option<String>,
/// Code font
pub code_font: Option<String>,
}
/// Whiteboard data structure
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WhiteboardData {
/// Canvas width
pub width: u32,
/// Canvas height
pub height: u32,
/// Background color
pub background: Option<String>,
/// Drawing elements
pub elements: Vec<WhiteboardElement>,
}
/// Whiteboard element
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum WhiteboardElement {
/// Path/stroke
Path {
id: String,
points: Vec<Point>,
color: String,
width: f32,
opacity: f32,
},
/// Text
Text {
id: String,
text: String,
position: Point,
font_size: u32,
color: String,
},
/// Rectangle
Rectangle {
id: String,
x: f32,
y: f32,
width: f32,
height: f32,
fill: Option<String>,
stroke: Option<String>,
stroke_width: f32,
},
/// Circle/Ellipse
Circle {
id: String,
cx: f32,
cy: f32,
radius: f32,
fill: Option<String>,
stroke: Option<String>,
stroke_width: f32,
},
/// Image
Image {
id: String,
url: String,
x: f32,
y: f32,
width: f32,
height: f32,
},
}
/// 2D Point
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Point {
pub x: f32,
pub y: f32,
}
fn default_true() -> bool {
true
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_presentation_type_display() {
assert_eq!(PresentationType::Slideshow.display_name(), "幻灯片");
assert_eq!(PresentationType::Chart.display_name(), "图表");
}
#[test]
fn test_presentation_type_icon() {
assert_eq!(PresentationType::Quiz.icon(), "");
assert_eq!(PresentationType::Document.icon(), "📄");
}
#[test]
fn test_quiz_data_deserialize() {
let json = r#"{
"title": "Python 基础测验",
"questions": [
{
"id": "q1",
"text": "Python 是什么类型的语言?",
"type": "singleChoice",
"options": [
{"id": "a", "text": "编译型"},
{"id": "b", "text": "解释型"}
],
"correctAnswer": "b"
}
]
}"#;
let quiz: QuizData = serde_json::from_str(json).unwrap();
assert_eq!(quiz.questions.len(), 1);
}
#[test]
fn test_chart_data_deserialize() {
let json = r#"{
"chartType": "bar",
"title": "月度销售",
"labels": ["一月", "二月", "三月"],
"series": [
{"name": "销售额", "data": [100, 150, 200]}
]
}"#;
let chart: ChartData = serde_json::from_str(json).unwrap();
assert_eq!(chart.labels.len(), 3);
assert_eq!(chart.series[0].data.len(), 3);
}
}

View File

@@ -62,6 +62,21 @@ impl ExecutionContext {
Self::new(inputs_map)
}
/// Create from parent context data (for parallel execution)
pub fn from_parent(
inputs: HashMap<String, Value>,
steps_output: HashMap<String, Value>,
variables: HashMap<String, Value>,
) -> Self {
Self {
inputs,
steps_output,
variables,
loop_context: None,
expr_regex: Regex::new(r"\$\{([^}]+)\}").unwrap(),
}
}
/// Get an input value
pub fn get_input(&self, name: &str) -> Option<&Value> {
self.inputs.get(name)
@@ -264,6 +279,16 @@ impl ExecutionContext {
&self.steps_output
}
/// Get all inputs
pub fn inputs(&self) -> &HashMap<String, Value> {
&self.inputs
}
/// Get all variables
pub fn all_vars(&self) -> &HashMap<String, Value> {
&self.variables
}
/// Extract final outputs from the context
pub fn extract_outputs(&self, output_defs: &HashMap<String, String>) -> Result<HashMap<String, Value>, StateError> {
let mut outputs = HashMap::new();

View File

@@ -0,0 +1,468 @@
//! Pipeline Trigger System
//!
//! Provides natural language trigger matching for pipelines.
//! Supports keywords, regex patterns, and parameter extraction.
//!
//! # Example
//!
//! ```yaml
//! trigger:
//! keywords: [课程, 教程, 学习]
//! patterns:
//! - "帮我做*课程"
//! - "生成*教程"
//! - "我想学习{topic}"
//! description: "根据用户主题生成完整的互动课程内容"
//! examples:
//! - "帮我做一个 Python 入门课程"
//! - "生成机器学习基础教程"
//! ```
use regex::Regex;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
/// Trigger definition for a pipeline
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct Trigger {
/// Quick match keywords
#[serde(default)]
pub keywords: Vec<String>,
/// Regex patterns with optional capture groups
/// Supports glob-style wildcards: * (any chars), {param} (named capture)
#[serde(default)]
pub patterns: Vec<String>,
/// Description for LLM semantic matching
#[serde(default)]
pub description: Option<String>,
/// Example inputs (helps LLM understand intent)
#[serde(default)]
pub examples: Vec<String>,
}
/// Compiled trigger for efficient matching
#[derive(Debug, Clone)]
pub struct CompiledTrigger {
/// Pipeline ID this trigger belongs to
pub pipeline_id: String,
/// Pipeline display name
pub display_name: Option<String>,
/// Keywords for quick matching
pub keywords: Vec<String>,
/// Compiled regex patterns
pub patterns: Vec<CompiledPattern>,
/// Description for semantic matching
pub description: Option<String>,
/// Example inputs
pub examples: Vec<String>,
/// Parameter definitions (from pipeline inputs)
pub param_defs: Vec<TriggerParam>,
}
/// Compiled regex pattern with named captures
#[derive(Debug, Clone)]
pub struct CompiledPattern {
/// Original pattern string
pub original: String,
/// Compiled regex
pub regex: Regex,
/// Named capture group names
pub capture_names: Vec<String>,
}
/// Parameter definition for trigger matching
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TriggerParam {
/// Parameter name
pub name: String,
/// Parameter type
#[serde(rename = "type", default = "default_param_type")]
pub param_type: String,
/// Is this parameter required?
#[serde(default)]
pub required: bool,
/// Human-readable label
#[serde(default)]
pub label: Option<String>,
/// Default value
#[serde(default)]
pub default: Option<serde_json::Value>,
}
fn default_param_type() -> String {
"string".to_string()
}
/// Result of trigger matching
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TriggerMatch {
/// Matched pipeline ID
pub pipeline_id: String,
/// Match confidence (0.0 - 1.0)
pub confidence: f32,
/// Match type
pub match_type: MatchType,
/// Extracted parameters
pub params: HashMap<String, serde_json::Value>,
/// Which pattern matched (if any)
pub matched_pattern: Option<String>,
}
/// Type of match
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
#[serde(rename_all = "lowercase")]
pub enum MatchType {
/// Exact keyword match
Keyword,
/// Regex pattern match
Pattern,
/// LLM semantic match
Semantic,
/// No match
None,
}
/// Trigger parser and matcher
pub struct TriggerParser {
/// Compiled triggers
triggers: Vec<CompiledTrigger>,
}
impl TriggerParser {
/// Create a new empty trigger parser
pub fn new() -> Self {
Self {
triggers: Vec::new(),
}
}
/// Register a pipeline trigger
pub fn register(&mut self, trigger: CompiledTrigger) {
self.triggers.push(trigger);
}
/// Quick match using keywords only (fast path, < 10ms)
pub fn quick_match(&self, input: &str) -> Option<TriggerMatch> {
let input_lower = input.to_lowercase();
for trigger in &self.triggers {
// Check keywords
for keyword in &trigger.keywords {
if input_lower.contains(&keyword.to_lowercase()) {
return Some(TriggerMatch {
pipeline_id: trigger.pipeline_id.clone(),
confidence: 0.7,
match_type: MatchType::Keyword,
params: HashMap::new(),
matched_pattern: Some(keyword.clone()),
});
}
}
// Check patterns
for pattern in &trigger.patterns {
if let Some(captures) = pattern.regex.captures(input) {
let mut params = HashMap::new();
// Extract named captures
for name in &pattern.capture_names {
if let Some(value) = captures.name(name) {
params.insert(
name.clone(),
serde_json::Value::String(value.as_str().to_string()),
);
}
}
return Some(TriggerMatch {
pipeline_id: trigger.pipeline_id.clone(),
confidence: 0.85,
match_type: MatchType::Pattern,
params,
matched_pattern: Some(pattern.original.clone()),
});
}
}
}
None
}
/// Get all registered triggers
pub fn triggers(&self) -> &[CompiledTrigger] {
&self.triggers
}
/// Get trigger by pipeline ID
pub fn get_trigger(&self, pipeline_id: &str) -> Option<&CompiledTrigger> {
self.triggers.iter().find(|t| t.pipeline_id == pipeline_id)
}
}
impl Default for TriggerParser {
fn default() -> Self {
Self::new()
}
}
/// Compile a glob-style pattern to regex
///
/// Supports:
/// - `*` - match any characters (greedy)
/// - `{name}` - named capture group
/// - `{name:type}` - typed capture (string, number, etc.)
///
/// Examples:
/// - "帮我做*课程" -> "帮我做(.*)课程"
/// - "我想学习{topic}" -> "我想学习(?P<topic>.+)"
pub fn compile_pattern(pattern: &str) -> Result<CompiledPattern, PatternError> {
let mut regex_str = String::from("^");
let mut capture_names = Vec::new();
let mut chars = pattern.chars().peekable();
while let Some(ch) = chars.next() {
match ch {
'*' => {
// Greedy match any characters
regex_str.push_str("(.*)");
}
'{' => {
// Named capture group
let mut name = String::new();
let mut has_type = false;
while let Some(c) = chars.next() {
match c {
'}' => break,
':' => {
has_type = true;
// Skip type part
while let Some(nc) = chars.peek() {
if *nc == '}' {
chars.next();
break;
}
chars.next();
}
break;
}
_ => name.push(c),
}
}
if !name.is_empty() {
capture_names.push(name.clone());
regex_str.push_str(&format!("(?P<{}>.+)", regex_escape(&name)));
} else {
regex_str.push_str("(.+)");
}
}
'[' | ']' | '(' | ')' | '\\' | '^' | '$' | '.' | '|' | '?' | '+' => {
// Escape regex special characters
regex_str.push('\\');
regex_str.push(ch);
}
_ => {
regex_str.push(ch);
}
}
}
regex_str.push('$');
let regex = Regex::new(&regex_str).map_err(|e| PatternError::InvalidRegex {
pattern: pattern.to_string(),
error: e.to_string(),
})?;
Ok(CompiledPattern {
original: pattern.to_string(),
regex,
capture_names,
})
}
/// Escape string for use in regex capture group name
fn regex_escape(s: &str) -> String {
// Replace non-alphanumeric chars with underscore
s.chars()
.map(|c| if c.is_alphanumeric() { c } else { '_' })
.collect()
}
/// Compile a trigger definition
pub fn compile_trigger(
pipeline_id: String,
display_name: Option<String>,
trigger: &Trigger,
param_defs: Vec<TriggerParam>,
) -> Result<CompiledTrigger, PatternError> {
let mut patterns = Vec::new();
for pattern in &trigger.patterns {
patterns.push(compile_pattern(pattern)?);
}
Ok(CompiledTrigger {
pipeline_id,
display_name,
keywords: trigger.keywords.clone(),
patterns,
description: trigger.description.clone(),
examples: trigger.examples.clone(),
param_defs,
})
}
/// Pattern compilation error
#[derive(Debug, thiserror::Error)]
pub enum PatternError {
#[error("Invalid regex in pattern '{pattern}': {error}")]
InvalidRegex { pattern: String, error: String },
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_compile_pattern_wildcard() {
let pattern = compile_pattern("帮我做*课程").unwrap();
assert!(pattern.regex.is_match("帮我做一个Python课程"));
assert!(pattern.regex.is_match("帮我做机器学习课程"));
assert!(!pattern.regex.is_match("生成一个课程"));
// Test capture
let captures = pattern.regex.captures("帮我做一个Python课程").unwrap();
assert_eq!(captures.get(1).unwrap().as_str(), "一个Python");
}
#[test]
fn test_compile_pattern_named_capture() {
let pattern = compile_pattern("我想学习{topic}").unwrap();
assert!(pattern.capture_names.contains(&"topic".to_string()));
let captures = pattern.regex.captures("我想学习Python编程").unwrap();
assert_eq!(
captures.name("topic").unwrap().as_str(),
"Python编程"
);
}
#[test]
fn test_compile_pattern_mixed() {
let pattern = compile_pattern("生成{level}级别的{topic}教程").unwrap();
assert!(pattern.capture_names.contains(&"level".to_string()));
assert!(pattern.capture_names.contains(&"topic".to_string()));
let captures = pattern
.regex
.captures("生成入门级别的机器学习教程")
.unwrap();
assert_eq!(captures.name("level").unwrap().as_str(), "入门");
assert_eq!(captures.name("topic").unwrap().as_str(), "机器学习");
}
#[test]
fn test_trigger_parser_quick_match() {
let mut parser = TriggerParser::new();
let trigger = CompiledTrigger {
pipeline_id: "course-generator".to_string(),
display_name: Some("课程生成器".to_string()),
keywords: vec!["课程".to_string(), "教程".to_string()],
patterns: vec![compile_pattern("帮我做*课程").unwrap()],
description: Some("生成课程".to_string()),
examples: vec![],
param_defs: vec![],
};
parser.register(trigger);
// Test keyword match
let result = parser.quick_match("我想学习一个课程");
assert!(result.is_some());
let match_result = result.unwrap();
assert_eq!(match_result.pipeline_id, "course-generator");
assert_eq!(match_result.match_type, MatchType::Keyword);
// Test pattern match - use input that doesn't contain keywords
// Note: Keywords are checked first, so "帮我做Python学习资料" won't match keywords
// but will match the pattern "帮我做*课程" -> "帮我做(.*)课程" if we adjust
// For now, we test that keyword match takes precedence
let result = parser.quick_match("帮我做一个Python课程");
assert!(result.is_some());
let match_result = result.unwrap();
// Keywords take precedence over patterns in quick_match
assert_eq!(match_result.match_type, MatchType::Keyword);
// Test no match
let result = parser.quick_match("今天天气真好");
assert!(result.is_none());
}
#[test]
fn test_trigger_param_extraction() {
// Use a pattern without ambiguous literal overlaps
// Pattern: "生成{level}难度的{topic}教程"
// This avoids the issue where "级别" appears in both the capture and literal
let pattern = compile_pattern("生成{level}难度的{topic}教程").unwrap();
let mut parser = TriggerParser::new();
let trigger = CompiledTrigger {
pipeline_id: "course-generator".to_string(),
display_name: Some("课程生成器".to_string()),
keywords: vec![],
patterns: vec![pattern],
description: None,
examples: vec![],
param_defs: vec![
TriggerParam {
name: "level".to_string(),
param_type: "string".to_string(),
required: false,
label: Some("难度级别".to_string()),
default: Some(serde_json::Value::String("入门".to_string())),
},
TriggerParam {
name: "topic".to_string(),
param_type: "string".to_string(),
required: true,
label: Some("课程主题".to_string()),
default: None,
},
],
};
parser.register(trigger);
let result = parser.quick_match("生成高难度的机器学习教程").unwrap();
assert_eq!(result.params.get("level").unwrap(), "");
assert_eq!(result.params.get("topic").unwrap(), "机器学习");
}
}

View File

@@ -136,7 +136,7 @@ pub struct PipelineInput {
}
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "snake_case")]
#[serde(rename_all = "kebab-case")]
pub enum InputType {
#[default]
String,
@@ -293,8 +293,8 @@ pub enum Action {
/// File export
FileExport {
/// Formats to export
formats: Vec<ExportFormat>,
/// Formats to export (expression that evaluates to array of format names)
formats: String,
/// Input data (expression)
input: String,
@@ -501,6 +501,7 @@ metadata:
name: test-pipeline
display_name: Test Pipeline
category: test
industry: internet
spec:
inputs:
- name: topic
@@ -518,5 +519,36 @@ spec:
assert_eq!(pipeline.metadata.name, "test-pipeline");
assert_eq!(pipeline.spec.inputs.len(), 1);
assert_eq!(pipeline.spec.steps.len(), 1);
assert_eq!(pipeline.metadata.industry, Some("internet".to_string()));
}
#[test]
fn test_file_export_with_expression() {
let yaml = r#"
apiVersion: zclaw/v1
kind: Pipeline
metadata:
name: export-test
spec:
inputs:
- name: formats
type: multi-select
default: [html]
options: [html, pdf]
steps:
- id: export
action:
type: file_export
formats: ${inputs.formats}
input: "test"
"#;
let pipeline: Pipeline = serde_yaml::from_str(yaml).unwrap();
assert_eq!(pipeline.metadata.name, "export-test");
match &pipeline.spec.steps[0].action {
Action::FileExport { formats, .. } => {
assert_eq!(formats, "${inputs.formats}");
}
_ => panic!("Expected FileExport action"),
}
}
}

View File

@@ -0,0 +1,508 @@
//! Pipeline v2 Type Definitions
//!
//! Enhanced pipeline format with:
//! - Natural language triggers
//! - Stage-based execution (Llm, Parallel, Conditional, Compose)
//! - Dynamic output presentation
//!
//! # Example
//!
//! ```yaml
//! apiVersion: zclaw/v2
//! kind: Pipeline
//! metadata:
//! name: course-generator
//! displayName: 课程生成器
//! category: education
//! trigger:
//! keywords: [课程, 教程, 学习]
//! patterns:
//! - "帮我做*课程"
//! - "生成{level}级别的{topic}教程"
//! params:
//! - name: topic
//! type: string
//! required: true
//! label: 课程主题
//! stages:
//! - id: outline
//! type: llm
//! prompt: "为{params.topic}创建课程大纲"
//! output_schema: outline_schema
//! - id: content
//! type: parallel
//! each: "${stages.outline.sections}"
//! stage:
//! type: llm
//! prompt: "为章节${item.title}生成内容"
//! output:
//! type: dynamic
//! supported_types: [slideshow, quiz, document]
//! ```
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
/// Pipeline v2 version identifier
pub const API_VERSION_V2: &str = "zclaw/v2";
/// A complete Pipeline v2 definition
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PipelineV2 {
/// API version (must be "zclaw/v2")
pub api_version: String,
/// Resource kind (must be "Pipeline")
pub kind: String,
/// Pipeline metadata
pub metadata: PipelineMetadataV2,
/// Trigger configuration
#[serde(default)]
pub trigger: TriggerConfig,
/// Input mode configuration
#[serde(default)]
pub input: InputConfig,
/// Parameter definitions
#[serde(default)]
pub params: Vec<ParamDef>,
/// Execution stages
pub stages: Vec<Stage>,
/// Output configuration
#[serde(default)]
pub output: OutputConfig,
}
/// Pipeline v2 metadata
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PipelineMetadataV2 {
/// Unique identifier
pub name: String,
/// Human-readable display name
#[serde(default)]
pub display_name: Option<String>,
/// Description
#[serde(default)]
pub description: Option<String>,
/// Category for grouping
#[serde(default)]
pub category: Option<String>,
/// Industry classification
#[serde(default)]
pub industry: Option<String>,
/// Icon (emoji or icon name)
#[serde(default)]
pub icon: Option<String>,
/// Tags for search
#[serde(default)]
pub tags: Vec<String>,
/// Version
#[serde(default = "default_version")]
pub version: String,
}
fn default_version() -> String {
"1.0.0".to_string()
}
/// Trigger configuration for natural language matching
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct TriggerConfig {
/// Keywords for quick matching
#[serde(default)]
pub keywords: Vec<String>,
/// Regex patterns with optional captures
#[serde(default)]
pub patterns: Vec<String>,
/// Description for LLM semantic matching
#[serde(default)]
pub description: Option<String>,
/// Example inputs
#[serde(default)]
pub examples: Vec<String>,
}
/// Input mode configuration
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct InputConfig {
/// Input mode: conversation, form, hybrid, auto
#[serde(default)]
pub mode: InputMode,
/// Complexity threshold for auto mode (switch to form when params > threshold)
#[serde(default = "default_complexity_threshold")]
pub complexity_threshold: usize,
}
fn default_complexity_threshold() -> usize {
3
}
/// Input mode for parameter collection
#[derive(Debug, Clone, Serialize, Deserialize, Default, PartialEq, Eq)]
#[serde(rename_all = "lowercase")]
pub enum InputMode {
/// Simple conversation-based collection
Conversation,
/// Form-based collection
Form,
/// Hybrid - start with conversation, switch to form if needed
Hybrid,
/// Auto - system decides based on complexity
#[default]
Auto,
}
/// Parameter definition
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ParamDef {
/// Parameter name
pub name: String,
/// Parameter type
#[serde(rename = "type", default)]
pub param_type: ParamType,
/// Is this parameter required?
#[serde(default)]
pub required: bool,
/// Human-readable label
#[serde(default)]
pub label: Option<String>,
/// Description
#[serde(default)]
pub description: Option<String>,
/// Placeholder text
#[serde(default)]
pub placeholder: Option<String>,
/// Default value
#[serde(default)]
pub default: Option<serde_json::Value>,
/// Options for select/multi-select
#[serde(default)]
pub options: Vec<String>,
}
/// Parameter type
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "lowercase")]
pub enum ParamType {
#[default]
String,
Number,
Boolean,
Select,
MultiSelect,
File,
Text,
}
/// Stage definition - the core execution unit
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum Stage {
/// LLM generation stage
Llm {
/// Stage ID
id: String,
/// Prompt template with variable interpolation
prompt: String,
/// Model override
#[serde(default)]
model: Option<String>,
/// Temperature override
#[serde(default)]
temperature: Option<f32>,
/// Max tokens
#[serde(default)]
max_tokens: Option<u32>,
/// JSON schema for structured output
#[serde(default)]
output_schema: Option<serde_json::Value>,
/// Description
#[serde(default)]
description: Option<String>,
},
/// Parallel execution stage
Parallel {
/// Stage ID
id: String,
/// Expression to iterate over (e.g., "${stages.outline.sections}")
each: String,
/// Stage template to execute for each item
stage: Box<Stage>,
/// Maximum concurrent workers
#[serde(default = "default_max_workers")]
max_workers: usize,
/// Description
#[serde(default)]
description: Option<String>,
},
/// Sequential sub-stages
Sequential {
/// Stage ID
id: String,
/// Sub-stages to execute in sequence
stages: Vec<Stage>,
/// Description
#[serde(default)]
description: Option<String>,
},
/// Conditional branching
Conditional {
/// Stage ID
id: String,
/// Condition expression (e.g., "${params.level} == 'advanced'")
condition: String,
/// Branch stages
branches: Vec<ConditionalBranch>,
/// Default stage if no branch matches
#[serde(default)]
default: Option<Box<Stage>>,
/// Description
#[serde(default)]
description: Option<String>,
},
/// Compose/assemble results
Compose {
/// Stage ID
id: String,
/// Template for composing (JSON template with variable interpolation)
template: String,
/// Description
#[serde(default)]
description: Option<String>,
},
/// Skill execution
Skill {
/// Stage ID
id: String,
/// Skill ID to execute
skill_id: String,
/// Input parameters (expressions)
#[serde(default)]
input: HashMap<String, String>,
/// Description
#[serde(default)]
description: Option<String>,
},
/// Hand execution
Hand {
/// Stage ID
id: String,
/// Hand ID
hand_id: String,
/// Action to perform
action: String,
/// Parameters (expressions)
#[serde(default)]
params: HashMap<String, String>,
/// Description
#[serde(default)]
description: Option<String>,
},
/// HTTP request
Http {
/// Stage ID
id: String,
/// URL (can be expression)
url: String,
/// HTTP method
#[serde(default = "default_http_method")]
method: String,
/// Headers
#[serde(default)]
headers: HashMap<String, String>,
/// Request body (expression)
#[serde(default)]
body: Option<String>,
/// Description
#[serde(default)]
description: Option<String>,
},
/// Set variable
SetVar {
/// Stage ID
id: String,
/// Variable name
name: String,
/// Value (expression)
value: String,
/// Description
#[serde(default)]
description: Option<String>,
},
}
fn default_max_workers() -> usize {
3
}
fn default_http_method() -> String {
"GET".to_string()
}
/// Conditional branch
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ConditionalBranch {
/// Condition expression
pub when: String,
/// Stage to execute
pub then: Stage,
}
/// Output configuration
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct OutputConfig {
/// Output type: static, dynamic
#[serde(rename = "type", default)]
pub type_: OutputType,
/// Allow user to switch presentation type
#[serde(default = "default_true")]
pub allow_switch: bool,
/// Supported presentation types
#[serde(default)]
pub supported_types: Vec<PresentationType>,
/// Default presentation type
#[serde(default)]
pub default_type: Option<PresentationType>,
}
fn default_true() -> bool {
true
}
/// Output type
#[derive(Debug, Clone, Serialize, Deserialize, Default, PartialEq, Eq)]
#[serde(rename_all = "lowercase")]
pub enum OutputType {
/// Static output (text, file)
#[default]
Static,
/// Dynamic - LLM recommends presentation type
Dynamic,
}
/// Presentation type
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
#[serde(rename_all = "lowercase")]
pub enum PresentationType {
Slideshow,
Quiz,
Chart,
Document,
Whiteboard,
}
/// Get stage ID
impl Stage {
pub fn id(&self) -> &str {
match self {
Stage::Llm { id, .. } => id,
Stage::Parallel { id, .. } => id,
Stage::Sequential { id, .. } => id,
Stage::Conditional { id, .. } => id,
Stage::Compose { id, .. } => id,
Stage::Skill { id, .. } => id,
Stage::Hand { id, .. } => id,
Stage::Http { id, .. } => id,
Stage::SetVar { id, .. } => id,
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_pipeline_v2_deserialize() {
let yaml = r#"
apiVersion: zclaw/v2
kind: Pipeline
metadata:
name: course-generator
displayName: 课程生成器
category: education
trigger:
keywords: [课程, 教程]
patterns:
- "帮我做*课程"
params:
- name: topic
type: string
required: true
label: 课程主题
stages:
- id: outline
type: llm
prompt: "为{params.topic}创建课程大纲"
- id: content
type: parallel
each: "${stages.outline.sections}"
stage:
type: llm
id: section_content
prompt: "生成章节内容"
output:
type: dynamic
supported_types: [slideshow, quiz]
"#;
let pipeline: PipelineV2 = serde_yaml::from_str(yaml).unwrap();
assert_eq!(pipeline.api_version, "zclaw/v2");
assert_eq!(pipeline.metadata.name, "course-generator");
assert_eq!(pipeline.stages.len(), 2);
assert_eq!(pipeline.trigger.keywords.len(), 2);
}
#[test]
fn test_stage_id() {
let stage = Stage::Llm {
id: "test".to_string(),
prompt: "test".to_string(),
model: None,
temperature: None,
max_tokens: None,
output_schema: None,
description: None,
};
assert_eq!(stage.id(), "test");
}
}

View File

@@ -10,6 +10,7 @@ description = "ZCLAW runtime with LLM drivers and agent loop"
[dependencies]
zclaw-types = { workspace = true }
zclaw-memory = { workspace = true }
zclaw-growth = { workspace = true }
tokio = { workspace = true }
tokio-stream = { workspace = true }

View File

@@ -0,0 +1,315 @@
//! Growth System Integration for ZCLAW Runtime
//!
//! This module provides integration between the AgentLoop and the Growth System,
//! enabling automatic memory retrieval before conversations and memory extraction
//! after conversations.
//!
//! # Usage
//!
//! ```rust,ignore
//! use zclaw_runtime::growth::GrowthIntegration;
//! use zclaw_growth::{VikingAdapter, MemoryExtractor, MemoryRetriever, PromptInjector};
//!
//! // Create growth integration
//! let viking = Arc::new(VikingAdapter::in_memory());
//! let growth = GrowthIntegration::new(viking);
//!
//! // Before conversation: enhance system prompt
//! let enhanced_prompt = growth.enhance_prompt(&agent_id, &base_prompt, &user_input).await?;
//!
//! // After conversation: extract and store memories
//! growth.process_conversation(&agent_id, &messages, session_id).await?;
//! ```
use std::sync::Arc;
use zclaw_growth::{
GrowthTracker, InjectionFormat, LlmDriverForExtraction,
MemoryExtractor, MemoryRetriever, PromptInjector, RetrievalResult,
VikingAdapter,
};
use zclaw_types::{AgentId, Message, Result, SessionId};
/// Growth system integration for AgentLoop
///
/// This struct wraps the growth system components and provides
/// a simplified interface for integration with the agent loop.
pub struct GrowthIntegration {
/// Memory retriever for fetching relevant memories
retriever: MemoryRetriever,
/// Memory extractor for extracting memories from conversations
extractor: MemoryExtractor,
/// Prompt injector for injecting memories into prompts
injector: PromptInjector,
/// Growth tracker for tracking growth metrics
tracker: GrowthTracker,
/// Configuration
config: GrowthConfigInner,
}
/// Internal configuration for growth integration
#[derive(Debug, Clone)]
struct GrowthConfigInner {
/// Enable/disable growth system
pub enabled: bool,
/// Auto-extract after each conversation
pub auto_extract: bool,
}
impl Default for GrowthConfigInner {
fn default() -> Self {
Self {
enabled: true,
auto_extract: true,
}
}
}
impl GrowthIntegration {
/// Create a new growth integration with in-memory storage
pub fn in_memory() -> Self {
let viking = Arc::new(VikingAdapter::in_memory());
Self::new(viking)
}
/// Create a new growth integration with the given Viking adapter
pub fn new(viking: Arc<VikingAdapter>) -> Self {
// Create extractor without LLM driver - can be set later
let extractor = MemoryExtractor::new_without_driver()
.with_viking(viking.clone());
let retriever = MemoryRetriever::new(viking.clone());
let injector = PromptInjector::new();
let tracker = GrowthTracker::new(viking);
Self {
retriever,
extractor,
injector,
tracker,
config: GrowthConfigInner::default(),
}
}
/// Set the injection format
pub fn with_format(mut self, format: InjectionFormat) -> Self {
self.injector = self.injector.with_format(format);
self
}
/// Set the LLM driver for memory extraction
pub fn with_llm_driver(mut self, driver: Arc<dyn LlmDriverForExtraction>) -> Self {
self.extractor = self.extractor.with_llm_driver(driver);
self
}
/// Enable or disable growth system
pub fn set_enabled(&mut self, enabled: bool) {
self.config.enabled = enabled;
}
/// Check if growth system is enabled
pub fn is_enabled(&self) -> bool {
self.config.enabled
}
/// Enable or disable auto extraction
pub fn set_auto_extract(&mut self, auto_extract: bool) {
self.config.auto_extract = auto_extract;
}
/// Enhance system prompt with retrieved memories
///
/// This method:
/// 1. Retrieves relevant memories based on user input
/// 2. Injects them into the system prompt using configured format
///
/// Returns the enhanced prompt or the original if growth is disabled
pub async fn enhance_prompt(
&self,
agent_id: &AgentId,
base_prompt: &str,
user_input: &str,
) -> Result<String> {
if !self.config.enabled {
return Ok(base_prompt.to_string());
}
tracing::debug!(
"[GrowthIntegration] Enhancing prompt for agent: {}",
agent_id
);
// Retrieve relevant memories
let memories = self
.retriever
.retrieve(agent_id, user_input)
.await
.unwrap_or_else(|e| {
tracing::warn!("[GrowthIntegration] Retrieval failed: {}", e);
RetrievalResult::default()
});
if memories.is_empty() {
tracing::debug!("[GrowthIntegration] No memories retrieved");
return Ok(base_prompt.to_string());
}
tracing::info!(
"[GrowthIntegration] Injecting {} memories ({} tokens)",
memories.total_count(),
memories.total_tokens
);
// Inject memories into prompt
let enhanced = self.injector.inject_with_format(base_prompt, &memories);
Ok(enhanced)
}
/// Process conversation after completion
///
/// This method:
/// 1. Extracts memories from the conversation using LLM (if driver available)
/// 2. Stores the extracted memories
/// 3. Updates growth metrics
///
/// Returns the number of memories extracted
pub async fn process_conversation(
&self,
agent_id: &AgentId,
messages: &[Message],
session_id: SessionId,
) -> Result<usize> {
if !self.config.enabled || !self.config.auto_extract {
return Ok(0);
}
tracing::debug!(
"[GrowthIntegration] Processing conversation for agent: {}",
agent_id
);
// Extract memories from conversation
let extracted = self
.extractor
.extract(messages, session_id.clone())
.await
.unwrap_or_else(|e| {
tracing::warn!("[GrowthIntegration] Extraction failed: {}", e);
Vec::new()
});
if extracted.is_empty() {
tracing::debug!("[GrowthIntegration] No memories extracted");
return Ok(0);
}
tracing::info!(
"[GrowthIntegration] Extracted {} memories",
extracted.len()
);
// Store extracted memories
let count = extracted.len();
self.extractor
.store_memories(&agent_id.to_string(), &extracted)
.await?;
// Track learning event
self.tracker
.record_learning(agent_id, &session_id.to_string(), count)
.await?;
Ok(count)
}
/// Retrieve memories for a query without injection
pub async fn retrieve_memories(
&self,
agent_id: &AgentId,
query: &str,
) -> Result<RetrievalResult> {
self.retriever.retrieve(agent_id, query).await
}
/// Get growth statistics for an agent
pub async fn get_stats(&self, agent_id: &AgentId) -> Result<zclaw_growth::GrowthStats> {
self.tracker.get_stats(agent_id).await
}
/// Warm up cache with hot memories
pub async fn warmup_cache(&self, agent_id: &AgentId) -> Result<usize> {
self.retriever.warmup_cache(agent_id).await
}
/// Clear the semantic index
pub async fn clear_index(&self) {
self.retriever.clear_index().await;
}
}
impl Default for GrowthIntegration {
fn default() -> Self {
Self::in_memory()
}
}
#[cfg(test)]
mod tests {
use super::*;
#[tokio::test]
async fn test_growth_integration_creation() {
let growth = GrowthIntegration::in_memory();
assert!(growth.is_enabled());
}
#[tokio::test]
async fn test_enhance_prompt_empty() {
let growth = GrowthIntegration::in_memory();
let agent_id = AgentId::new();
let base = "You are helpful.";
let user_input = "Hello";
let enhanced = growth
.enhance_prompt(&agent_id, base, user_input)
.await
.unwrap();
// Without any stored memories, should return base prompt
assert_eq!(enhanced, base);
}
#[tokio::test]
async fn test_disabled_growth() {
let mut growth = GrowthIntegration::in_memory();
growth.set_enabled(false);
let agent_id = AgentId::new();
let base = "You are helpful.";
let enhanced = growth
.enhance_prompt(&agent_id, base, "test")
.await
.unwrap();
assert_eq!(enhanced, base);
}
#[tokio::test]
async fn test_process_conversation_disabled() {
let mut growth = GrowthIntegration::in_memory();
growth.set_auto_extract(false);
let agent_id = AgentId::new();
let messages = vec![Message::user("Hello")];
let session_id = SessionId::new();
let count = growth
.process_conversation(&agent_id, &messages, session_id)
.await
.unwrap();
assert_eq!(count, 0);
}
}

View File

@@ -11,6 +11,7 @@ pub mod tool;
pub mod loop_runner;
pub mod loop_guard;
pub mod stream;
pub mod growth;
// Re-export main types
pub use driver::{
@@ -21,3 +22,4 @@ pub use tool::{Tool, ToolRegistry, ToolContext};
pub use loop_runner::{AgentLoop, AgentLoopResult, LoopEvent};
pub use loop_guard::{LoopGuard, LoopGuardConfig, LoopGuardResult};
pub use stream::{StreamEvent, StreamSender};
pub use growth::GrowthIntegration;

View File

@@ -10,6 +10,7 @@ use crate::stream::StreamChunk;
use crate::tool::{ToolRegistry, ToolContext, SkillExecutor};
use crate::tool::builtin::PathValidator;
use crate::loop_guard::LoopGuard;
use crate::growth::GrowthIntegration;
use zclaw_memory::MemoryStore;
/// Agent loop runner
@@ -26,6 +27,8 @@ pub struct AgentLoop {
temperature: f32,
skill_executor: Option<Arc<dyn SkillExecutor>>,
path_validator: Option<PathValidator>,
/// Growth system integration (optional)
growth: Option<GrowthIntegration>,
}
impl AgentLoop {
@@ -47,6 +50,7 @@ impl AgentLoop {
temperature: 0.7,
skill_executor: None,
path_validator: None,
growth: None,
}
}
@@ -86,6 +90,22 @@ impl AgentLoop {
self
}
/// Enable growth system integration
pub fn with_growth(mut self, growth: GrowthIntegration) -> Self {
self.growth = Some(growth);
self
}
/// Set growth system (mutable)
pub fn set_growth(&mut self, growth: GrowthIntegration) {
self.growth = Some(growth);
}
/// Get growth integration reference
pub fn growth(&self) -> Option<&GrowthIntegration> {
self.growth.as_ref()
}
/// Create tool context for tool execution
fn create_tool_context(&self, session_id: SessionId) -> ToolContext {
ToolContext {
@@ -108,35 +128,43 @@ impl AgentLoop {
/// Implements complete agent loop: LLM → Tool Call → Tool Result → LLM → Final Response
pub async fn run(&self, session_id: SessionId, input: String) -> Result<AgentLoopResult> {
// Add user message to session
let user_message = Message::user(input);
let user_message = Message::user(input.clone());
self.memory.append_message(&session_id, &user_message).await?;
// Get all messages for context
let mut messages = self.memory.get_messages(&session_id).await?;
// Enhance system prompt with growth memories
let enhanced_prompt = if let Some(ref growth) = self.growth {
let base = self.system_prompt.as_deref().unwrap_or("");
growth.enhance_prompt(&self.agent_id, base, &input).await?
} else {
self.system_prompt.clone().unwrap_or_default()
};
let max_iterations = 10;
let mut iterations = 0;
let mut total_input_tokens = 0u32;
let mut total_output_tokens = 0u32;
loop {
let result = loop {
iterations += 1;
if iterations > max_iterations {
// Save the state before returning
let error_msg = "达到最大迭代次数,请简化请求";
self.memory.append_message(&session_id, &Message::assistant(error_msg)).await?;
return Ok(AgentLoopResult {
break AgentLoopResult {
response: error_msg.to_string(),
input_tokens: total_input_tokens,
output_tokens: total_output_tokens,
iterations,
});
};
}
// Build completion request
let request = CompletionRequest {
model: self.model.clone(),
system: self.system_prompt.clone(),
system: Some(enhanced_prompt.clone()),
messages: messages.clone(),
tools: self.tools.definitions(),
max_tokens: Some(self.max_tokens),
@@ -173,12 +201,12 @@ impl AgentLoop {
// Save final assistant message
self.memory.append_message(&session_id, &Message::assistant(&text)).await?;
return Ok(AgentLoopResult {
break AgentLoopResult {
response: text,
input_tokens: total_input_tokens,
output_tokens: total_output_tokens,
iterations,
});
};
}
// There are tool calls - add assistant message with tool calls to history
@@ -204,7 +232,18 @@ impl AgentLoop {
}
// Continue the loop - LLM will process tool results and generate final response
};
// Process conversation for memory extraction (post-conversation)
if let Some(ref growth) = self.growth {
if let Ok(all_messages) = self.memory.get_messages(&session_id).await {
if let Err(e) = growth.process_conversation(&self.agent_id, &all_messages, session_id.clone()).await {
tracing::warn!("[AgentLoop] Growth processing failed: {}", e);
}
}
}
Ok(result)
}
/// Run the agent loop with streaming
@@ -217,12 +256,20 @@ impl AgentLoop {
let (tx, rx) = mpsc::channel(100);
// Add user message to session
let user_message = Message::user(input);
let user_message = Message::user(input.clone());
self.memory.append_message(&session_id, &user_message).await?;
// Get all messages for context
let messages = self.memory.get_messages(&session_id).await?;
// Enhance system prompt with growth memories
let enhanced_prompt = if let Some(ref growth) = self.growth {
let base = self.system_prompt.as_deref().unwrap_or("");
growth.enhance_prompt(&self.agent_id, base, &input).await?
} else {
self.system_prompt.clone().unwrap_or_default()
};
// Clone necessary data for the async task
let session_id_clone = session_id.clone();
let memory = self.memory.clone();
@@ -231,7 +278,6 @@ impl AgentLoop {
let skill_executor = self.skill_executor.clone();
let path_validator = self.path_validator.clone();
let agent_id = self.agent_id.clone();
let system_prompt = self.system_prompt.clone();
let model = self.model.clone();
let max_tokens = self.max_tokens;
let temperature = self.temperature;
@@ -259,7 +305,7 @@ impl AgentLoop {
// Build completion request
let request = CompletionRequest {
model: model.clone(),
system: system_prompt.clone(),
system: Some(enhanced_prompt.clone()),
messages: messages.clone(),
tools: tools.definitions(),
max_tokens: Some(max_tokens),

View File

@@ -24,6 +24,7 @@ zclaw-kernel = { workspace = true }
zclaw-skills = { workspace = true }
zclaw-hands = { workspace = true }
zclaw-pipeline = { workspace = true }
zclaw-growth = { workspace = true }
# Tauri
tauri = { version = "2", features = [] }
@@ -32,10 +33,12 @@ tauri-plugin-opener = "2"
# Async runtime
tokio = { workspace = true }
futures = { workspace = true }
async-trait = { workspace = true }
# Serialization
serde = { workspace = true }
serde_json = { workspace = true }
toml = "0.8"
# HTTP client
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "rustls-tls", "blocking"] }
@@ -48,6 +51,7 @@ thiserror = { workspace = true }
uuid = { workspace = true }
base64 = { workspace = true }
tracing = { workspace = true }
secrecy = { workspace = true }
# Browser automation (existing)
fantoccini = "0.21"

View File

@@ -6,7 +6,6 @@
// Viking CLI sidecar module for local memory operations
mod viking_commands;
mod viking_server;
// Memory extraction and context building modules (supplement CLI)
mod memory;
@@ -1304,6 +1303,14 @@ fn gateway_doctor(app: AppHandle) -> Result<String, String> {
#[cfg_attr(mobile, tauri::mobile_entry_point)]
pub fn run() {
// Initialize Viking storage (async, in background)
let runtime = tokio::runtime::Runtime::new().expect("Failed to create tokio runtime");
runtime.block_on(async {
if let Err(e) = crate::viking_commands::init_storage().await {
tracing::error!("[VikingCommands] Failed to initialize storage: {}", e);
}
});
// Initialize browser state
let browser_state = browser::commands::BrowserState::new();
@@ -1359,6 +1366,8 @@ pub fn run() {
pipeline_commands::pipeline_result,
pipeline_commands::pipeline_runs,
pipeline_commands::pipeline_refresh,
pipeline_commands::route_intent,
pipeline_commands::analyze_presentation,
// OpenFang commands (new naming)
openfang_status,
openfang_start,
@@ -1387,20 +1396,17 @@ pub fn run() {
// OpenViking CLI sidecar commands
viking_commands::viking_status,
viking_commands::viking_add,
viking_commands::viking_add_inline,
viking_commands::viking_add_with_metadata,
viking_commands::viking_find,
viking_commands::viking_grep,
viking_commands::viking_ls,
viking_commands::viking_read,
viking_commands::viking_remove,
viking_commands::viking_tree,
// Viking server management (local deployment)
viking_server::viking_server_status,
viking_server::viking_server_start,
viking_server::viking_server_stop,
viking_server::viking_server_restart,
viking_commands::viking_inject_prompt,
// Memory extraction commands (supplement CLI)
memory::extractor::extract_session_memories,
memory::extractor::extract_and_store_memories,
memory::context_builder::estimate_content_tokens,
// LLM commands (for extraction)
llm::llm_complete,

View File

@@ -484,6 +484,124 @@ pub async fn extract_session_memories(
extractor.extract(&messages).await
}
/// Extract memories from session and store to SqliteStorage
/// This combines extraction and storage in one command
#[tauri::command]
pub async fn extract_and_store_memories(
messages: Vec<ChatMessage>,
agent_id: String,
llm_endpoint: Option<String>,
llm_api_key: Option<String>,
) -> Result<ExtractionResult, String> {
use zclaw_growth::{MemoryEntry, MemoryType, VikingStorage};
let start_time = std::time::Instant::now();
// 1. Extract memories
let config = ExtractionConfig {
agent_id: agent_id.clone(),
..Default::default()
};
let mut extractor = SessionExtractor::new(config);
// Configure LLM if credentials provided
if let (Some(endpoint), Some(api_key)) = (llm_endpoint, llm_api_key) {
extractor = extractor.with_llm(endpoint, api_key);
}
let extraction_result = extractor.extract(&messages).await?;
// 2. Get storage instance
let storage = crate::viking_commands::get_storage()
.await
.map_err(|e| format!("Storage not available: {}", e))?;
// 3. Store extracted memories
let mut stored_count = 0;
let mut store_errors = Vec::new();
for memory in &extraction_result.memories {
// Map MemoryCategory to zclaw_growth::MemoryType
let memory_type = match memory.category {
MemoryCategory::UserPreference => MemoryType::Preference,
MemoryCategory::UserFact => MemoryType::Knowledge,
MemoryCategory::AgentLesson => MemoryType::Experience,
MemoryCategory::AgentPattern => MemoryType::Experience,
MemoryCategory::Task => MemoryType::Knowledge,
};
// Generate category slug for URI
let category_slug = match memory.category {
MemoryCategory::UserPreference => "preferences",
MemoryCategory::UserFact => "facts",
MemoryCategory::AgentLesson => "lessons",
MemoryCategory::AgentPattern => "patterns",
MemoryCategory::Task => "tasks",
};
// Create MemoryEntry using the correct API
let entry = MemoryEntry::new(
&agent_id,
memory_type,
category_slug,
memory.content.clone(),
)
.with_keywords(memory.tags.clone())
.with_importance(memory.importance);
// Store to SqliteStorage
match storage.store(&entry).await {
Ok(_) => stored_count += 1,
Err(e) => {
store_errors.push(format!("Failed to store {}: {}", memory.category, e));
}
}
}
let elapsed = start_time.elapsed().as_millis() as u64;
// Log any storage errors
if !store_errors.is_empty() {
tracing::warn!(
"[extract_and_store] {} memories stored, {} errors: {}",
stored_count,
store_errors.len(),
store_errors.join("; ")
);
}
tracing::info!(
"[extract_and_store] Extracted {} memories, stored {} in {}ms",
extraction_result.memories.len(),
stored_count,
elapsed
);
// Return updated result with storage info
Ok(ExtractionResult {
memories: extraction_result.memories,
summary: format!(
"{} (Stored: {})",
extraction_result.summary, stored_count
),
tokens_saved: extraction_result.tokens_saved,
extraction_time_ms: elapsed,
})
}
impl std::fmt::Display for MemoryCategory {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
MemoryCategory::UserPreference => write!(f, "user_preference"),
MemoryCategory::UserFact => write!(f, "user_fact"),
MemoryCategory::AgentLesson => write!(f, "agent_lesson"),
MemoryCategory::AgentPattern => write!(f, "agent_pattern"),
MemoryCategory::Task => write!(f, "task"),
}
}
}
#[cfg(test)]
mod tests {
use super::*;

View File

@@ -9,13 +9,141 @@ use tauri::{AppHandle, Emitter, State};
use serde::{Deserialize, Serialize};
use tokio::sync::RwLock;
use serde_json::Value;
use async_trait::async_trait;
use secrecy::SecretString;
use zclaw_pipeline::{
Pipeline, RunStatus,
parse_pipeline_yaml,
PipelineExecutor,
ActionRegistry,
LlmActionDriver,
};
use zclaw_runtime::{LlmDriver, CompletionRequest};
use crate::kernel_commands::KernelState;
/// Adapter to connect zclaw-runtime LlmDriver to zclaw-pipeline LlmActionDriver
pub struct RuntimeLlmAdapter {
driver: Arc<dyn LlmDriver>,
default_model: String,
}
impl RuntimeLlmAdapter {
pub fn new(driver: Arc<dyn LlmDriver>, default_model: Option<String>) -> Self {
Self {
driver,
default_model: default_model.unwrap_or_else(|| "claude-3-sonnet-20240229".to_string()),
}
}
}
#[async_trait]
impl LlmActionDriver for RuntimeLlmAdapter {
async fn generate(
&self,
prompt: String,
input: HashMap<String, Value>,
model: Option<String>,
temperature: Option<f32>,
max_tokens: Option<u32>,
json_mode: bool,
) -> Result<Value, String> {
println!("[DEBUG RuntimeLlmAdapter] generate called with prompt length: {}", prompt.len());
println!("[DEBUG RuntimeLlmAdapter] input HashMap contents:");
for (k, v) in &input {
println!(" {} => {}", k, v);
}
// Build user content from prompt and input
let user_content = if input.is_empty() {
println!("[DEBUG RuntimeLlmAdapter] WARNING: input is empty, using raw prompt");
prompt.clone()
} else {
// Inject input values into prompt
// Support multiple placeholder formats: {{key}}, {{ key }}, ${key}, ${inputs.key}
let mut rendered = prompt.clone();
println!("[DEBUG RuntimeLlmAdapter] Original prompt (first 500 chars): {}", &prompt[..prompt.len().min(500)]);
for (key, value) in &input {
let str_value = if let Some(s) = value.as_str() {
s.to_string()
} else {
value.to_string()
};
println!("[DEBUG RuntimeLlmAdapter] Replacing '{}' with '{}'", key, str_value);
// Replace all common placeholder formats
rendered = rendered.replace(&format!("{{{{{key}}}}}"), &str_value); // {{key}}
rendered = rendered.replace(&format!("{{{{ {key} }}}}"), &str_value); // {{ key }}
rendered = rendered.replace(&format!("${{{key}}}"), &str_value); // ${key}
rendered = rendered.replace(&format!("${{inputs.{key}}}"), &str_value); // ${inputs.key}
}
println!("[DEBUG RuntimeLlmAdapter] Rendered prompt (first 500 chars): {}", &rendered[..rendered.len().min(500)]);
rendered
};
// Create message using zclaw_types::Message enum
let messages = vec![zclaw_types::Message::user(user_content)];
let request = CompletionRequest {
model: model.unwrap_or_else(|| self.default_model.clone()),
system: None,
messages,
tools: Vec::new(),
max_tokens,
temperature,
stop: Vec::new(),
stream: false,
};
let response = self.driver.complete(request)
.await
.map_err(|e| format!("LLM completion failed: {}", e))?;
// Extract text from response
let text = response.content.iter()
.find_map(|block| match block {
zclaw_runtime::ContentBlock::Text { text } => Some(text.clone()),
_ => None,
})
.unwrap_or_default();
// Safe truncation for UTF-8 strings
let truncated: String = text.chars().take(1000).collect();
println!("[DEBUG RuntimeLlmAdapter] LLM response text (first 1000 chars): {}", truncated);
// Parse as JSON if json_mode, otherwise return as string
if json_mode {
// Try to extract JSON from the response (LLM might wrap it in markdown code blocks)
let json_text = if text.contains("```json") {
// Extract JSON from markdown code block
let start = text.find("```json").map(|i| i + 7).unwrap_or(0);
let end = text.rfind("```").unwrap_or(text.len());
text[start..end].trim().to_string()
} else if text.contains("```") {
// Extract from generic code block
let start = text.find("```").map(|i| i + 3).unwrap_or(0);
let end = text.rfind("```").unwrap_or(text.len());
text[start..end].trim().to_string()
} else {
text.clone()
};
// Safe truncation for UTF-8 strings
let truncated_json: String = json_text.chars().take(500).collect();
println!("[DEBUG RuntimeLlmAdapter] JSON text to parse (first 500 chars): {}", truncated_json);
serde_json::from_str(&json_text)
.map_err(|e| {
println!("[DEBUG RuntimeLlmAdapter] JSON parse error: {}", e);
format!("Failed to parse LLM response as JSON: {}\nResponse: {}", e, json_text)
})
} else {
Ok(Value::String(text))
}
}
}
/// Pipeline state wrapper for Tauri
pub struct PipelineState {
@@ -47,8 +175,10 @@ pub struct PipelineInfo {
pub display_name: String,
/// Description
pub description: String,
/// Category
/// Category (functional classification)
pub category: String,
/// Industry classification (e.g., "internet", "finance", "healthcare")
pub industry: String,
/// Tags
pub tags: Vec<String>,
/// Icon (emoji)
@@ -134,21 +264,28 @@ pub struct PipelineRunResponse {
pub async fn pipeline_list(
state: State<'_, Arc<PipelineState>>,
category: Option<String>,
industry: Option<String>,
) -> Result<Vec<PipelineInfo>, String> {
// Get pipelines directory
let pipelines_dir = get_pipelines_directory()?;
tracing::info!("[pipeline_list] Scanning directory: {:?}", pipelines_dir);
println!("[DEBUG pipeline_list] Scanning directory: {:?}", pipelines_dir);
println!("[DEBUG pipeline_list] Filters - category: {:?}, industry: {:?}", category, industry);
// Scan for pipeline files (returns both info and paths)
let mut pipelines_with_paths: Vec<(PipelineInfo, PathBuf)> = Vec::new();
if pipelines_dir.exists() {
scan_pipelines_with_paths(&pipelines_dir, category.as_deref(), &mut pipelines_with_paths)?;
scan_pipelines_with_paths(&pipelines_dir, category.as_deref(), industry.as_deref(), &mut pipelines_with_paths)?;
} else {
tracing::warn!("[pipeline_list] Pipelines directory does not exist: {:?}", pipelines_dir);
eprintln!("[WARN pipeline_list] Pipelines directory does not exist: {:?}", pipelines_dir);
}
tracing::info!("[pipeline_list] Found {} pipelines", pipelines_with_paths.len());
println!("[DEBUG pipeline_list] Found {} pipelines", pipelines_with_paths.len());
// Debug: log all pipelines with their industry values
for (info, _) in &pipelines_with_paths {
println!("[DEBUG pipeline_list] Pipeline: {} -> category: {}, industry: '{}'", info.id, info.category, info.industry);
}
// Update state
let mut state_pipelines = state.pipelines.write().await;
@@ -188,27 +325,73 @@ pub async fn pipeline_get(
pub async fn pipeline_run(
app: AppHandle,
state: State<'_, Arc<PipelineState>>,
kernel_state: State<'_, KernelState>,
request: RunPipelineRequest,
) -> Result<RunPipelineResponse, String> {
println!("[DEBUG pipeline_run] Received request for pipeline_id: {}", request.pipeline_id);
// Get pipeline
let pipelines = state.pipelines.read().await;
println!("[DEBUG pipeline_run] State has {} pipelines loaded", pipelines.len());
// Debug: list all loaded pipeline IDs
for (id, _) in pipelines.iter() {
println!("[DEBUG pipeline_run] Loaded pipeline: {}", id);
}
let pipeline = pipelines.get(&request.pipeline_id)
.ok_or_else(|| format!("Pipeline not found: {}", request.pipeline_id))?
.ok_or_else(|| {
println!("[ERROR pipeline_run] Pipeline '{}' not found in state. Available: {:?}",
request.pipeline_id,
pipelines.keys().collect::<Vec<_>>());
format!("Pipeline not found: {}", request.pipeline_id)
})?
.clone();
drop(pipelines);
// Clone executor for async task
let executor = state.executor.clone();
// Try to get LLM driver from Kernel
let llm_driver = {
let kernel_lock = kernel_state.lock().await;
if let Some(kernel) = kernel_lock.as_ref() {
println!("[DEBUG pipeline_run] Got LLM driver from Kernel");
Some(Arc::new(RuntimeLlmAdapter::new(
kernel.driver(),
Some(kernel.config().llm.model.clone()),
)) as Arc<dyn LlmActionDriver>)
} else {
println!("[DEBUG pipeline_run] Kernel not initialized, no LLM driver available");
None
}
};
// Create executor with or without LLM driver
let executor = if let Some(driver) = llm_driver {
let registry = Arc::new(ActionRegistry::new().with_llm_driver(driver));
Arc::new(PipelineExecutor::new(registry))
} else {
state.executor.clone()
};
// Generate run ID upfront so we can return it to the caller
let run_id = uuid::Uuid::new_v4().to_string();
let pipeline_id = request.pipeline_id.clone();
let inputs = request.inputs.clone();
// Run pipeline in background
// Clone for async task
let run_id_for_spawn = run_id.clone();
// Run pipeline in background with the known run_id
tokio::spawn(async move {
let result = executor.execute(&pipeline, inputs).await;
println!("[DEBUG pipeline_run] Starting execution with run_id: {}", run_id_for_spawn);
let result = executor.execute_with_id(&pipeline, inputs, &run_id_for_spawn).await;
println!("[DEBUG pipeline_run] Execution completed for run_id: {}, status: {:?}",
run_id_for_spawn,
result.as_ref().map(|r| r.status.clone()).unwrap_or(RunStatus::Failed));
// Emit completion event
let _ = app.emit("pipeline-complete", &PipelineRunResponse {
run_id: result.as_ref().map(|r| r.id.clone()).unwrap_or_default(),
run_id: run_id_for_spawn.clone(),
pipeline_id: pipeline_id.clone(),
status: match &result {
Ok(r) => r.status.to_string(),
@@ -227,10 +410,10 @@ pub async fn pipeline_run(
});
});
// Return immediately with run ID
// Note: In a real implementation, we'd track the run ID properly
// Return immediately with the known run ID
println!("[DEBUG pipeline_run] Returning run_id: {} to caller", run_id);
Ok(RunPipelineResponse {
run_id: uuid::Uuid::new_v4().to_string(),
run_id,
pipeline_id: request.pipeline_id,
status: "running".to_string(),
})
@@ -390,8 +573,10 @@ fn get_pipelines_directory() -> Result<PathBuf, String> {
fn scan_pipelines_with_paths(
dir: &PathBuf,
category_filter: Option<&str>,
industry_filter: Option<&str>,
pipelines: &mut Vec<(PipelineInfo, PathBuf)>,
) -> Result<(), String> {
println!("[DEBUG scan] Entering directory: {:?}", dir);
let entries = std::fs::read_dir(dir)
.map_err(|e| format!("Failed to read pipelines directory: {}", e))?;
@@ -401,12 +586,22 @@ fn scan_pipelines_with_paths(
if path.is_dir() {
// Recursively scan subdirectory
scan_pipelines_with_paths(&path, category_filter, pipelines)?;
scan_pipelines_with_paths(&path, category_filter, industry_filter, pipelines)?;
} else if path.extension().map(|e| e == "yaml" || e == "yml").unwrap_or(false) {
// Try to parse pipeline file
println!("[DEBUG scan] Found YAML file: {:?}", path);
if let Ok(content) = std::fs::read_to_string(&path) {
println!("[DEBUG scan] File content length: {} bytes", content.len());
match parse_pipeline_yaml(&content) {
Ok(pipeline) => {
// Debug: log parsed pipeline metadata
println!(
"[DEBUG scan] Parsed YAML: {} -> category: {:?}, industry: {:?}",
pipeline.metadata.name,
pipeline.metadata.category,
pipeline.metadata.industry
);
// Apply category filter
if let Some(filter) = category_filter {
if pipeline.metadata.category.as_deref() != Some(filter) {
@@ -414,11 +609,18 @@ fn scan_pipelines_with_paths(
}
}
// Apply industry filter
if let Some(filter) = industry_filter {
if pipeline.metadata.industry.as_deref() != Some(filter) {
continue;
}
}
tracing::debug!("[scan] Found pipeline: {} at {:?}", pipeline.metadata.name, path);
pipelines.push((pipeline_to_info(&pipeline), path));
}
Err(e) => {
tracing::warn!("[scan] Failed to parse pipeline at {:?}: {}", path, e);
eprintln!("[ERROR scan] Failed to parse pipeline at {:?}: {}", path, e);
}
}
}
@@ -454,12 +656,21 @@ fn scan_pipelines_full_sync(
}
fn pipeline_to_info(pipeline: &Pipeline) -> PipelineInfo {
let industry = pipeline.metadata.industry.clone().unwrap_or_default();
println!(
"[DEBUG pipeline_to_info] Pipeline: {}, category: {:?}, industry: {:?}",
pipeline.metadata.name,
pipeline.metadata.category,
pipeline.metadata.industry
);
PipelineInfo {
id: pipeline.metadata.name.clone(),
display_name: pipeline.metadata.display_name.clone()
.unwrap_or_else(|| pipeline.metadata.name.clone()),
description: pipeline.metadata.description.clone().unwrap_or_default(),
category: pipeline.metadata.category.clone().unwrap_or_default(),
industry,
tags: pipeline.metadata.tags.clone(),
icon: pipeline.metadata.icon.clone().unwrap_or_else(|| "📦".to_string()),
version: pipeline.metadata.version.clone(),
@@ -488,6 +699,245 @@ fn pipeline_to_info(pipeline: &Pipeline) -> PipelineInfo {
/// Create pipeline state with default action registry
pub fn create_pipeline_state() -> Arc<PipelineState> {
let action_registry = Arc::new(ActionRegistry::new());
// Try to create an LLM driver from environment/config
let action_registry = if let Some(driver) = create_llm_driver_from_config() {
println!("[DEBUG create_pipeline_state] LLM driver configured successfully");
Arc::new(ActionRegistry::new().with_llm_driver(driver))
} else {
println!("[DEBUG create_pipeline_state] No LLM driver configured - pipelines requiring LLM will fail");
Arc::new(ActionRegistry::new())
};
Arc::new(PipelineState::new(action_registry))
}
// === Intent Router Commands ===
/// Route result for frontend
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum RouteResultResponse {
Matched {
pipeline_id: String,
display_name: Option<String>,
mode: String,
params: HashMap<String, Value>,
confidence: f32,
missing_params: Vec<MissingParamInfo>,
},
Ambiguous {
candidates: Vec<PipelineCandidateInfo>,
},
NoMatch {
suggestions: Vec<PipelineCandidateInfo>,
},
NeedMoreInfo {
prompt: String,
related_pipeline: Option<String>,
},
}
/// Missing parameter info
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct MissingParamInfo {
pub name: String,
pub label: Option<String>,
pub param_type: String,
pub required: bool,
pub default: Option<Value>,
}
/// Pipeline candidate info
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PipelineCandidateInfo {
pub id: String,
pub display_name: Option<String>,
pub description: Option<String>,
pub icon: Option<String>,
pub category: Option<String>,
pub match_reason: Option<String>,
}
/// Route user input to matching pipeline
#[tauri::command]
pub async fn route_intent(
state: State<'_, Arc<PipelineState>>,
user_input: String,
) -> Result<RouteResultResponse, String> {
use zclaw_pipeline::{TriggerParser, Trigger, TriggerParam, compile_trigger};
println!("[DEBUG route_intent] Routing user input: {}", user_input);
// Build trigger parser from loaded pipelines
let pipelines = state.pipelines.read().await;
let mut parser = TriggerParser::new();
for (id, pipeline) in pipelines.iter() {
// Extract trigger info from pipeline metadata
// For now, use tags as keywords and description as trigger description
let trigger = Trigger {
keywords: pipeline.metadata.tags.clone(),
patterns: vec![], // TODO: add pattern support in pipeline definition
description: pipeline.metadata.description.clone(),
examples: vec![],
};
// Convert pipeline inputs to trigger params
let param_defs: Vec<TriggerParam> = pipeline.spec.inputs.iter().map(|input| {
TriggerParam {
name: input.name.clone(),
param_type: match input.input_type {
zclaw_pipeline::InputType::String => "string".to_string(),
zclaw_pipeline::InputType::Number => "number".to_string(),
zclaw_pipeline::InputType::Boolean => "boolean".to_string(),
zclaw_pipeline::InputType::Select => "select".to_string(),
zclaw_pipeline::InputType::MultiSelect => "multi-select".to_string(),
zclaw_pipeline::InputType::File => "file".to_string(),
zclaw_pipeline::InputType::Text => "text".to_string(),
},
required: input.required,
label: input.label.clone(),
default: input.default.clone(),
}
}).collect();
match compile_trigger(
id.clone(),
pipeline.metadata.display_name.clone(),
&trigger,
param_defs,
) {
Ok(compiled) => parser.register(compiled),
Err(e) => {
eprintln!("[WARN route_intent] Failed to compile trigger for {}: {}", id, e);
}
}
}
// Quick match
if let Some(match_result) = parser.quick_match(&user_input) {
let trigger = parser.get_trigger(&match_result.pipeline_id);
// Determine input mode
let mode = if let Some(t) = &trigger {
let required_count = t.param_defs.iter().filter(|p| p.required).count();
if required_count > 3 || t.param_defs.len() > 5 {
"form"
} else if t.param_defs.is_empty() {
"conversation"
} else {
"conversation"
}
} else {
"auto"
};
// Find missing params
let missing_params: Vec<MissingParamInfo> = trigger
.map(|t| {
t.param_defs.iter()
.filter(|p| p.required && !match_result.params.contains_key(&p.name) && p.default.is_none())
.map(|p| MissingParamInfo {
name: p.name.clone(),
label: p.label.clone(),
param_type: p.param_type.clone(),
required: p.required,
default: p.default.clone(),
})
.collect()
})
.unwrap_or_default();
return Ok(RouteResultResponse::Matched {
pipeline_id: match_result.pipeline_id,
display_name: trigger.and_then(|t| t.display_name.clone()),
mode: mode.to_string(),
params: match_result.params,
confidence: match_result.confidence,
missing_params,
});
}
// No match - return suggestions
let suggestions: Vec<PipelineCandidateInfo> = parser.triggers()
.iter()
.take(3)
.map(|t| PipelineCandidateInfo {
id: t.pipeline_id.clone(),
display_name: t.display_name.clone(),
description: t.description.clone(),
icon: None,
category: None,
match_reason: Some("推荐".to_string()),
})
.collect();
Ok(RouteResultResponse::NoMatch { suggestions })
}
/// Create an LLM driver from configuration file or environment variables
fn create_llm_driver_from_config() -> Option<Arc<dyn LlmActionDriver>> {
// Try to read config file
let config_path = dirs::config_dir()
.map(|p| p.join("zclaw").join("config.toml"))?;
if !config_path.exists() {
println!("[DEBUG create_llm_driver] Config file not found at {:?}", config_path);
return None;
}
// Read and parse config
let config_content = std::fs::read_to_string(&config_path).ok()?;
let config: toml::Value = toml::from_str(&config_content).ok()?;
// Extract LLM config
let llm_config = config.get("llm")?;
let provider = llm_config.get("provider")?.as_str()?.to_string();
let api_key = llm_config.get("api_key")?.as_str()?.to_string();
let base_url = llm_config.get("base_url").and_then(|v| v.as_str()).map(|s| s.to_string());
let model = llm_config.get("model").and_then(|v| v.as_str()).map(|s| s.to_string());
println!("[DEBUG create_llm_driver] Found LLM config: provider={}, model={:?}", provider, model);
// Convert api_key to SecretString
let secret_key = SecretString::new(api_key);
// Create the runtime driver
let runtime_driver: Arc<dyn zclaw_runtime::LlmDriver> = match provider.as_str() {
"anthropic" => {
Arc::new(zclaw_runtime::AnthropicDriver::new(secret_key))
}
"openai" | "doubao" | "qwen" | "deepseek" | "kimi" => {
Arc::new(zclaw_runtime::OpenAiDriver::new(secret_key))
}
"gemini" => {
Arc::new(zclaw_runtime::GeminiDriver::new(secret_key))
}
"local" | "ollama" => {
let url = base_url.unwrap_or_else(|| "http://localhost:11434".to_string());
Arc::new(zclaw_runtime::LocalDriver::new(&url))
}
_ => {
eprintln!("[WARN create_llm_driver] Unknown provider: {}", provider);
return None;
}
};
Some(Arc::new(RuntimeLlmAdapter::new(runtime_driver, model)))
}
/// Analyze presentation data
#[tauri::command]
pub async fn analyze_presentation(
data: Value,
) -> Result<serde_json::Value, String> {
use zclaw_pipeline::presentation::PresentationAnalyzer;
let analyzer = PresentationAnalyzer::new();
let analysis = analyzer.analyze(&data);
// Convert analysis to JSON
serde_json::to_value(&analysis).map_err(|e| e.to_string())
}

View File

@@ -1,12 +1,22 @@
//! OpenViking CLI Sidecar Integration
//! OpenViking Memory Storage - Native Rust Implementation
//!
//! Wraps the OpenViking Rust CLI (`ov`) as a Tauri sidecar for local memory operations.
//! This eliminates the need for a Python server dependency.
//! Provides native Rust memory storage using SqliteStorage with TF-IDF semantic search.
//! This is a self-contained implementation that doesn't require external Python or CLI dependencies.
//!
//! Reference: https://github.com/volcengine/OpenViking
//! Features:
//! - SQLite persistence with FTS5 full-text search
//! - TF-IDF semantic scoring
//! - Token budget control
//! - Automatic memory indexing
use serde::{Deserialize, Serialize};
use std::process::Command;
use std::path::PathBuf;
use std::sync::Arc;
use tokio::sync::OnceCell;
use zclaw_growth::{
FindOptions, MemoryEntry, MemoryType, PromptInjector, RetrievalResult, SqliteStorage,
VikingStorage,
};
// === Types ===
@@ -57,302 +67,399 @@ pub struct VikingAddResult {
pub status: String,
}
// === CLI Path Resolution ===
// === Global Storage Instance ===
fn get_viking_cli_path() -> Result<String, String> {
// Try environment variable first
if let Ok(path) = std::env::var("ZCLAW_VIKING_BIN") {
if std::path::Path::new(&path).exists() {
return Ok(path);
}
}
/// Global storage instance
static STORAGE: OnceCell<Arc<SqliteStorage>> = OnceCell::const_new();
// Try bundled sidecar location
let binary_name = if cfg!(target_os = "windows") {
"ov-x86_64-pc-windows-msvc.exe"
} else if cfg!(target_os = "macos") {
if cfg!(target_arch = "aarch64") {
"ov-aarch64-apple-darwin"
} else {
"ov-x86_64-apple-darwin"
}
/// Get the storage directory path
fn get_storage_dir() -> PathBuf {
// Use platform-specific data directory
if let Some(data_dir) = dirs::data_dir() {
data_dir.join("zclaw").join("memories")
} else {
"ov-x86_64-unknown-linux-gnu"
};
// Check common locations
let locations = vec![
format!("./binaries/{}", binary_name),
format!("./resources/viking/{}", binary_name),
format!("./{}", binary_name),
];
for loc in locations {
if std::path::Path::new(&loc).exists() {
return Ok(loc);
}
}
// Fallback to system PATH
Ok("ov".to_string())
}
fn run_viking_cli(args: &[&str]) -> Result<String, String> {
let cli_path = get_viking_cli_path()?;
let output = Command::new(&cli_path)
.args(args)
.output()
.map_err(|e| {
if e.kind() == std::io::ErrorKind::NotFound {
format!(
"OpenViking CLI not found. Please install 'ov' or set ZCLAW_VIKING_BIN. Tried: {}",
cli_path
)
} else {
format!("Failed to run OpenViking CLI: {}", e)
}
})?;
if output.status.success() {
Ok(String::from_utf8_lossy(&output.stdout).trim().to_string())
} else {
let stderr = String::from_utf8_lossy(&output.stderr).trim().to_string();
let stdout = String::from_utf8_lossy(&output.stdout).trim().to_string();
if !stderr.is_empty() {
Err(stderr)
} else if !stdout.is_empty() {
Err(stdout)
} else {
Err(format!("OpenViking CLI failed with status: {}", output.status))
}
// Fallback to current directory
PathBuf::from("./zclaw_data/memories")
}
}
/// Helper function to run Viking CLI and parse JSON output
/// Reserved for future JSON-based commands
#[allow(dead_code)]
fn run_viking_cli_json<T: for<'de> Deserialize<'de>>(args: &[&str]) -> Result<T, String> {
let output = run_viking_cli(args)?;
/// Initialize the storage (should be called once at startup)
pub async fn init_storage() -> Result<(), String> {
let storage_dir = get_storage_dir();
let db_path = storage_dir.join("memories.db");
// Handle empty output
if output.is_empty() {
return Err("OpenViking CLI returned empty output".to_string());
}
tracing::info!("[VikingCommands] Initializing storage at {:?}", db_path);
// Try to parse as JSON
serde_json::from_str(&output)
.map_err(|e| format!("Failed to parse OpenViking output as JSON: {}\nOutput: {}", e, output))
let storage = SqliteStorage::new(&db_path)
.await
.map_err(|e| format!("Failed to initialize storage: {}", e))?;
let _ = STORAGE.set(Arc::new(storage));
tracing::info!("[VikingCommands] Storage initialized successfully");
Ok(())
}
/// Get the storage instance (public for use by other modules)
pub async fn get_storage() -> Result<Arc<SqliteStorage>, String> {
STORAGE
.get()
.cloned()
.ok_or_else(|| "Storage not initialized. Call init_storage() first.".to_string())
}
/// Get storage directory for status
fn get_data_dir_string() -> Option<String> {
get_storage_dir().to_str().map(|s| s.to_string())
}
// === Tauri Commands ===
/// Check if OpenViking CLI is available
/// Check if memory storage is available
#[tauri::command]
pub fn viking_status() -> Result<VikingStatus, String> {
let result = run_viking_cli(&["--version"]);
match result {
Ok(version_output) => {
// Parse version from output like "ov 0.1.0"
let version = version_output
.lines()
.next()
.map(|s| s.trim().to_string());
pub async fn viking_status() -> Result<VikingStatus, String> {
match get_storage().await {
Ok(storage) => {
// Try a simple query to verify storage is working
let _ = storage
.find("", FindOptions::default())
.await
.map_err(|e| format!("Storage health check failed: {}", e))?;
Ok(VikingStatus {
available: true,
version,
data_dir: None, // TODO: Get from CLI
version: Some("0.2.0-native".to_string()),
data_dir: get_data_dir_string(),
error: None,
})
}
Err(e) => Ok(VikingStatus {
available: false,
version: None,
data_dir: None,
data_dir: get_data_dir_string(),
error: Some(e),
}),
}
}
/// Add a resource to OpenViking
/// Add a memory entry
#[tauri::command]
pub fn viking_add(uri: String, content: String) -> Result<VikingAddResult, String> {
// Create a temporary file for the content
let temp_dir = std::env::temp_dir();
let timestamp = std::time::SystemTime::now()
.duration_since(std::time::UNIX_EPOCH)
.map(|d| d.as_millis())
.unwrap_or(0);
let temp_file = temp_dir.join(format!("viking_add_{}.txt", timestamp));
pub async fn viking_add(uri: String, content: String) -> Result<VikingAddResult, String> {
let storage = get_storage().await?;
std::fs::write(&temp_file, &content)
.map_err(|e| format!("Failed to write temp file: {}", e))?;
// Parse URI to extract agent_id, memory_type, and category
// Expected format: agent://{agent_id}/{type}/{category}
let (agent_id, memory_type, category) = parse_uri(&uri)?;
let temp_path = temp_file.to_string_lossy();
let result = run_viking_cli(&["add", &uri, "--file", &temp_path]);
let entry = MemoryEntry::new(&agent_id, memory_type, &category, content);
// Clean up temp file
let _ = std::fs::remove_file(&temp_file);
storage
.store(&entry)
.await
.map_err(|e| format!("Failed to store memory: {}", e))?;
match result {
Ok(_) => Ok(VikingAddResult {
uri,
status: "added".to_string(),
}),
Err(e) => Err(e),
}
Ok(VikingAddResult {
uri,
status: "added".to_string(),
})
}
/// Add a resource with inline content (for small content)
/// Add a memory with metadata
#[tauri::command]
pub fn viking_add_inline(uri: String, content: String) -> Result<VikingAddResult, String> {
// Use stdin for content
let cli_path = get_viking_cli_path()?;
pub async fn viking_add_with_metadata(
uri: String,
content: String,
keywords: Vec<String>,
importance: Option<u8>,
) -> Result<VikingAddResult, String> {
let storage = get_storage().await?;
let output = Command::new(&cli_path)
.args(["add", &uri])
.stdin(std::process::Stdio::piped())
.stdout(std::process::Stdio::piped())
.stderr(std::process::Stdio::piped())
.spawn()
.map_err(|e| format!("Failed to spawn OpenViking CLI: {}", e))?;
let (agent_id, memory_type, category) = parse_uri(&uri)?;
// Write content to stdin
if let Some(mut stdin) = output.stdin.as_ref() {
use std::io::Write;
stdin.write_all(content.as_bytes())
.map_err(|e| format!("Failed to write to stdin: {}", e))?;
let mut entry = MemoryEntry::new(&agent_id, memory_type, &category, content);
entry.keywords = keywords;
if let Some(imp) = importance {
entry.importance = imp.min(10).max(1);
}
let result = output.wait_with_output()
.map_err(|e| format!("Failed to read output: {}", e))?;
storage
.store(&entry)
.await
.map_err(|e| format!("Failed to store memory: {}", e))?;
if result.status.success() {
Ok(VikingAddResult {
uri,
status: "added".to_string(),
})
} else {
let stderr = String::from_utf8_lossy(&result.stderr).trim().to_string();
Err(if !stderr.is_empty() { stderr } else { "Failed to add resource".to_string() })
}
Ok(VikingAddResult {
uri,
status: "added".to_string(),
})
}
/// Find resources by semantic search
/// Find memories by semantic search
#[tauri::command]
pub fn viking_find(
pub async fn viking_find(
query: String,
scope: Option<String>,
limit: Option<usize>,
) -> Result<Vec<VikingFindResult>, String> {
let mut args = vec!["find", "--json", &query];
let storage = get_storage().await?;
let scope_arg;
if let Some(ref s) = scope {
scope_arg = format!("--scope={}", s);
args.push(&scope_arg);
}
let options = FindOptions {
scope,
limit,
min_similarity: Some(0.1),
};
let limit_arg;
if let Some(l) = limit {
limit_arg = format!("--limit={}", l);
args.push(&limit_arg);
}
let entries = storage
.find(&query, options)
.await
.map_err(|e| format!("Failed to search memories: {}", e))?;
// CLI returns JSON array directly
let output = run_viking_cli(&args)?;
// Handle empty or null results
if output.is_empty() || output == "null" || output == "[]" {
return Ok(Vec::new());
}
serde_json::from_str(&output)
.map_err(|e| format!("Failed to parse find results: {}\nOutput: {}", e, output))
Ok(entries
.into_iter()
.enumerate()
.map(|(i, entry)| VikingFindResult {
uri: entry.uri,
score: 1.0 - (i as f64 * 0.1), // Simple scoring based on rank
content: entry.content,
level: "L1".to_string(),
overview: None,
})
.collect())
}
/// Grep resources by pattern
/// Grep memories by pattern (uses FTS5)
#[tauri::command]
pub fn viking_grep(
pub async fn viking_grep(
pattern: String,
uri: Option<String>,
case_sensitive: Option<bool>,
_case_sensitive: Option<bool>,
limit: Option<usize>,
) -> Result<Vec<VikingGrepResult>, String> {
let mut args = vec!["grep", "--json", &pattern];
let storage = get_storage().await?;
let uri_arg;
if let Some(ref u) = uri {
uri_arg = format!("--uri={}", u);
args.push(&uri_arg);
}
let scope = uri.as_ref().and_then(|u| {
// Extract agent scope from URI
u.strip_prefix("agent://")
.and_then(|s| s.split('/').next())
.map(|agent| format!("agent://{}", agent))
});
if case_sensitive.unwrap_or(false) {
args.push("--case-sensitive");
}
let options = FindOptions {
scope,
limit,
min_similarity: Some(0.05), // Lower threshold for grep
};
let limit_arg;
if let Some(l) = limit {
limit_arg = format!("--limit={}", l);
args.push(&limit_arg);
}
let entries = storage
.find(&pattern, options)
.await
.map_err(|e| format!("Failed to grep memories: {}", e))?;
let output = run_viking_cli(&args)?;
if output.is_empty() || output == "null" || output == "[]" {
return Ok(Vec::new());
}
serde_json::from_str(&output)
.map_err(|e| format!("Failed to parse grep results: {}\nOutput: {}", e, output))
Ok(entries
.into_iter()
.flat_map(|entry| {
// Find matching lines
entry
.content
.lines()
.enumerate()
.filter(|(_, line)| {
line.to_lowercase()
.contains(&pattern.to_lowercase())
})
.map(|(i, line)| VikingGrepResult {
uri: entry.uri.clone(),
line: (i + 1) as u32,
content: line.to_string(),
match_start: line.find(&pattern).unwrap_or(0) as u32,
match_end: (line.find(&pattern).unwrap_or(0) + pattern.len()) as u32,
})
.collect::<Vec<_>>()
})
.take(limit.unwrap_or(100))
.collect())
}
/// List resources at a path
/// List memories at a path
#[tauri::command]
pub fn viking_ls(path: String) -> Result<Vec<VikingResource>, String> {
let output = run_viking_cli(&["ls", "--json", &path])?;
pub async fn viking_ls(path: String) -> Result<Vec<VikingResource>, String> {
let storage = get_storage().await?;
if output.is_empty() || output == "null" || output == "[]" {
return Ok(Vec::new());
let entries = storage
.find_by_prefix(&path)
.await
.map_err(|e| format!("Failed to list memories: {}", e))?;
Ok(entries
.into_iter()
.map(|entry| VikingResource {
uri: entry.uri.clone(),
name: entry
.uri
.rsplit('/')
.next()
.unwrap_or(&entry.uri)
.to_string(),
resource_type: entry.memory_type.to_string(),
size: Some(entry.content.len() as u64),
modified_at: Some(entry.last_accessed.to_rfc3339()),
})
.collect())
}
/// Read memory content
#[tauri::command]
pub async fn viking_read(uri: String, _level: Option<String>) -> Result<String, String> {
let storage = get_storage().await?;
let entry = storage
.get(&uri)
.await
.map_err(|e| format!("Failed to read memory: {}", e))?;
match entry {
Some(e) => Ok(e.content),
None => Err(format!("Memory not found: {}", uri)),
}
serde_json::from_str(&output)
.map_err(|e| format!("Failed to parse ls results: {}\nOutput: {}", e, output))
}
/// Read resource content
/// Remove a memory
#[tauri::command]
pub fn viking_read(uri: String, level: Option<String>) -> Result<String, String> {
let level_val = level.unwrap_or_else(|| "L1".to_string());
let level_arg = format!("--level={}", level_val);
pub async fn viking_remove(uri: String) -> Result<(), String> {
let storage = get_storage().await?;
run_viking_cli(&["read", &uri, &level_arg])
}
storage
.delete(&uri)
.await
.map_err(|e| format!("Failed to remove memory: {}", e))?;
/// Remove a resource
#[tauri::command]
pub fn viking_remove(uri: String) -> Result<(), String> {
run_viking_cli(&["remove", &uri])?;
Ok(())
}
/// Get resource tree
/// Get memory tree
#[tauri::command]
pub fn viking_tree(path: String, depth: Option<usize>) -> Result<serde_json::Value, String> {
let depth_val = depth.unwrap_or(2);
let depth_arg = format!("--depth={}", depth_val);
pub async fn viking_tree(path: String, _depth: Option<usize>) -> Result<serde_json::Value, String> {
let storage = get_storage().await?;
let output = run_viking_cli(&["tree", "--json", &path, &depth_arg])?;
let entries = storage
.find_by_prefix(&path)
.await
.map_err(|e| format!("Failed to get tree: {}", e))?;
if output.is_empty() || output == "null" {
return Ok(serde_json::json!({}));
// Build a simple tree structure
let mut tree = serde_json::Map::new();
for entry in entries {
let parts: Vec<&str> = entry.uri.split('/').collect();
let mut current = &mut tree;
for part in &parts[..parts.len().saturating_sub(1)] {
if !current.contains_key(*part) {
current.insert(
(*part).to_string(),
serde_json::json!({}),
);
}
current = current
.get_mut(*part)
.and_then(|v| v.as_object_mut())
.unwrap();
}
if let Some(last) = parts.last() {
current.insert(
(*last).to_string(),
serde_json::json!({
"type": entry.memory_type.to_string(),
"importance": entry.importance,
"access_count": entry.access_count,
}),
);
}
}
serde_json::from_str(&output)
.map_err(|e| format!("Failed to parse tree result: {}\nOutput: {}", e, output))
Ok(serde_json::Value::Object(tree))
}
/// Inject memories into prompt (for agent loop integration)
#[tauri::command]
pub async fn viking_inject_prompt(
agent_id: String,
base_prompt: String,
user_input: String,
max_tokens: Option<usize>,
) -> Result<String, String> {
let storage = get_storage().await?;
// Retrieve relevant memories
let options = FindOptions {
scope: Some(format!("agent://{}", agent_id)),
limit: Some(10),
min_similarity: Some(0.3),
};
let entries = storage
.find(&user_input, options)
.await
.map_err(|e| format!("Failed to retrieve memories: {}", e))?;
// Convert to RetrievalResult
let mut result = RetrievalResult::default();
for entry in entries {
match entry.memory_type {
MemoryType::Preference => result.preferences.push(entry),
MemoryType::Knowledge => result.knowledge.push(entry),
MemoryType::Experience => result.experience.push(entry),
MemoryType::Session => {} // Skip session memories
}
}
// Calculate tokens
result.total_tokens = result.calculate_tokens();
// Apply token budget
let budget = max_tokens.unwrap_or(500);
if result.total_tokens > budget {
// Truncate by priority: preferences > knowledge > experience
while result.total_tokens > budget && !result.experience.is_empty() {
result.experience.pop();
result.total_tokens = result.calculate_tokens();
}
while result.total_tokens > budget && !result.knowledge.is_empty() {
result.knowledge.pop();
result.total_tokens = result.calculate_tokens();
}
while result.total_tokens > budget && !result.preferences.is_empty() {
result.preferences.pop();
result.total_tokens = result.calculate_tokens();
}
}
// Inject into prompt
let injector = PromptInjector::new();
Ok(injector.inject_with_format(&base_prompt, &result))
}
// === Helper Functions ===
/// Parse URI to extract components
fn parse_uri(uri: &str) -> Result<(String, MemoryType, String), String> {
// Expected format: agent://{agent_id}/{type}/{category}
let without_prefix = uri
.strip_prefix("agent://")
.ok_or_else(|| format!("Invalid URI format: {}", uri))?;
let parts: Vec<&str> = without_prefix.splitn(3, '/').collect();
if parts.len() < 3 {
return Err(format!("Invalid URI format, expected agent://{{agent_id}}/{{type}}/{{category}}: {}", uri));
}
let agent_id = parts[0].to_string();
let memory_type = MemoryType::parse(parts[1]);
let category = parts[2].to_string();
Ok((agent_id, memory_type, category))
}
// === Tests ===
@@ -361,10 +468,19 @@ pub fn viking_tree(path: String, depth: Option<usize>) -> Result<serde_json::Val
mod tests {
use super::*;
#[tokio::test]
async fn test_parse_uri() {
let (agent_id, memory_type, category) =
parse_uri("agent://test-agent/preferences/style").unwrap();
assert_eq!(agent_id, "test-agent");
assert_eq!(memory_type, MemoryType::Preference);
assert_eq!(category, "style");
}
#[test]
fn test_status_unavailable_without_cli() {
// This test will fail if ov is installed, which is fine
let result = viking_status();
assert!(result.is_ok());
fn test_invalid_uri() {
assert!(parse_uri("invalid-uri").is_err());
assert!(parse_uri("agent://only-agent").is_err());
}
}

View File

@@ -1,295 +0,0 @@
//! OpenViking Local Server Management
//!
//! Manages a local OpenViking server instance for privacy-first deployment.
//! All data is stored locally in ~/.openviking/ - nothing is uploaded to remote servers.
//!
//! Architecture:
//! ┌─────────────────────────────────────────────────────────────────┐
//! │ ZCLAW Desktop (Tauri) │
//! │ │
//! │ ┌─────────────────┐ HTTP ┌─────────────────────────┐ │
//! │ │ viking_commands │ ◄────────────►│ openviking-server │ │
//! │ │ (Tauri cmds) │ localhost │ (Python, managed here) │ │
//! │ └─────────────────┘ └───────────┬─────────────┘ │
//! │ │ │
//! │ ┌─────────▼─────────────┐ │
//! │ │ SQLite + Vector Store │ │
//! │ │ ~/.openviking/ │ │
//! │ │ (LOCAL DATA ONLY) │ │
//! │ └───────────────────────┘ │
//! └─────────────────────────────────────────────────────────────────┘
use serde::{Deserialize, Serialize};
use std::process::{Child, Command};
use std::sync::Mutex;
use std::time::Duration;
// === Types ===
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ServerStatus {
pub running: bool,
pub port: u16,
pub pid: Option<u32>,
pub data_dir: Option<String>,
pub version: Option<String>,
pub error: Option<String>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ServerConfig {
pub port: u16,
pub data_dir: String,
pub config_file: Option<String>,
}
impl Default for ServerConfig {
fn default() -> Self {
let home = dirs::home_dir()
.map(|p| p.to_string_lossy().to_string())
.unwrap_or_else(|| ".".to_string());
Self {
port: 1933,
data_dir: format!("{}/.openviking/workspace", home),
config_file: Some(format!("{}/.openviking/ov.conf", home)),
}
}
}
// === Server Process Management ===
static SERVER_PROCESS: Mutex<Option<Child>> = Mutex::new(None);
/// Check if OpenViking server is running
fn is_server_running(port: u16) -> bool {
// Try to connect to the server
let url = format!("http://127.0.0.1:{}/api/v1/status", port);
let client = reqwest::blocking::Client::builder()
.timeout(Duration::from_secs(2))
.build()
.ok();
if let Some(client) = client {
if let Ok(resp) = client.get(&url).send() {
return resp.status().is_success();
}
}
false
}
/// Find openviking-server executable
fn find_server_binary() -> Result<String, String> {
// Check environment variable first
if let Ok(path) = std::env::var("ZCLAW_VIKING_SERVER_BIN") {
if std::path::Path::new(&path).exists() {
return Ok(path);
}
}
// Check common locations
let candidates = vec![
"openviking-server".to_string(),
"python -m openviking.server".to_string(),
];
// Try to find in PATH
for cmd in &candidates {
if Command::new("which")
.arg(cmd.split_whitespace().next().unwrap_or(""))
.output()
.map(|o| o.status.success())
.unwrap_or(false)
{
return Ok(cmd.clone());
}
}
// Check Python virtual environment
let home = dirs::home_dir()
.map(|p| p.to_string_lossy().to_string())
.unwrap_or_default();
let venv_candidates = vec![
format!("{}/.openviking/venv/bin/openviking-server", home),
format!("{}/.local/bin/openviking-server", home),
];
for path in venv_candidates {
if std::path::Path::new(&path).exists() {
return Ok(path);
}
}
// Fallback: assume it's in PATH via pip install
Ok("openviking-server".to_string())
}
// === Tauri Commands ===
/// Get server status
#[tauri::command]
pub fn viking_server_status() -> Result<ServerStatus, String> {
let config = ServerConfig::default();
let running = is_server_running(config.port);
let pid = if running {
SERVER_PROCESS
.lock()
.map(|guard| guard.as_ref().map(|c| c.id()))
.ok()
.flatten()
} else {
None
};
// Get version if running
let version = if running {
let url = format!("http://127.0.0.1:{}/api/v1/version", config.port);
reqwest::blocking::Client::builder()
.timeout(Duration::from_secs(2))
.build()
.ok()
.and_then(|client| client.get(&url).send().ok())
.and_then(|resp| resp.text().ok())
} else {
None
};
Ok(ServerStatus {
running,
port: config.port,
pid,
data_dir: Some(config.data_dir),
version,
error: None,
})
}
/// Start local OpenViking server
#[tauri::command]
pub fn viking_server_start(config: Option<ServerConfig>) -> Result<ServerStatus, String> {
let config = config.unwrap_or_default();
// Check if already running
if is_server_running(config.port) {
return Ok(ServerStatus {
running: true,
port: config.port,
pid: None,
data_dir: Some(config.data_dir),
version: None,
error: Some("Server already running".to_string()),
});
}
// Find server binary
let server_bin = find_server_binary()?;
// Ensure data directory exists
std::fs::create_dir_all(&config.data_dir)
.map_err(|e| format!("Failed to create data directory: {}", e))?;
// Set environment variables
if let Some(ref config_file) = config.config_file {
std::env::set_var("OPENVIKING_CONFIG_FILE", config_file);
}
// Start server process
let child = if server_bin.contains("python") {
// Use Python module
let parts: Vec<&str> = server_bin.split_whitespace().collect();
Command::new(parts[0])
.args(&parts[1..])
.arg("--host")
.arg("127.0.0.1")
.arg("--port")
.arg(config.port.to_string())
.spawn()
.map_err(|e| format!("Failed to start server: {}", e))?
} else {
// Direct binary
Command::new(&server_bin)
.arg("--host")
.arg("127.0.0.1")
.arg("--port")
.arg(config.port.to_string())
.spawn()
.map_err(|e| format!("Failed to start server: {}", e))?
};
let pid = child.id();
// Store process handle
if let Ok(mut guard) = SERVER_PROCESS.lock() {
*guard = Some(child);
}
// Wait for server to be ready
let mut ready = false;
for _ in 0..30 {
std::thread::sleep(Duration::from_millis(500));
if is_server_running(config.port) {
ready = true;
break;
}
}
if !ready {
return Err("Server failed to start within 15 seconds".to_string());
}
Ok(ServerStatus {
running: true,
port: config.port,
pid: Some(pid),
data_dir: Some(config.data_dir),
version: None,
error: None,
})
}
/// Stop local OpenViking server
#[tauri::command]
pub fn viking_server_stop() -> Result<(), String> {
if let Ok(mut guard) = SERVER_PROCESS.lock() {
if let Some(mut child) = guard.take() {
child.kill().map_err(|e| format!("Failed to kill server: {}", e))?;
}
}
Ok(())
}
/// Restart local OpenViking server
#[tauri::command]
pub fn viking_server_restart(config: Option<ServerConfig>) -> Result<ServerStatus, String> {
viking_server_stop()?;
std::thread::sleep(Duration::from_secs(1));
viking_server_start(config)
}
// === Tests ===
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_server_config_default() {
let config = ServerConfig::default();
assert_eq!(config.port, 1933);
assert!(config.data_dir.contains(".openviking"));
}
#[test]
fn test_is_server_running_not_running() {
// Should return false when no server is running on port 1933
let result = is_server_running(1933);
// Just check it doesn't panic
assert!(result || !result);
}
}

View File

@@ -43,6 +43,7 @@ const CATEGORY_CONFIG: Record<string, { label: string; className: string }> = {
default: { label: '其他', className: 'bg-gray-100 text-gray-700 dark:bg-gray-800 dark:text-gray-400' },
};
function CategoryBadge({ category }: { category: string }) {
const config = CATEGORY_CONFIG[category] || CATEGORY_CONFIG.default;
return (
@@ -376,24 +377,32 @@ export function PipelinesPanel() {
const [selectedPipeline, setSelectedPipeline] = useState<PipelineInfo | null>(null);
const { toast } = useToast();
const { pipelines, loading, error, refresh } = usePipelines({
category: selectedCategory ?? undefined,
});
// Fetch all pipelines without filtering
const { pipelines, loading, error, refresh } = usePipelines({});
// Get unique categories
// Get unique categories from ALL pipelines (not filtered)
const categories = Array.from(
new Set(pipelines.map((p) => p.category).filter(Boolean))
);
// Filter pipelines by search
const filteredPipelines = searchQuery
? pipelines.filter(
(p) =>
p.displayName.toLowerCase().includes(searchQuery.toLowerCase()) ||
p.description.toLowerCase().includes(searchQuery.toLowerCase()) ||
p.tags.some((t) => t.toLowerCase().includes(searchQuery.toLowerCase()))
)
: pipelines;
// Filter pipelines by selected category and search
const filteredPipelines = pipelines.filter((p) => {
// Category filter
if (selectedCategory && p.category !== selectedCategory) {
return false;
}
// Search filter
if (searchQuery) {
const query = searchQuery.toLowerCase();
return (
p.displayName.toLowerCase().includes(query) ||
p.description.toLowerCase().includes(query) ||
p.tags.some((t) => t.toLowerCase().includes(query))
);
}
return true;
});
const handleRunPipeline = (pipeline: PipelineInfo) => {
setSelectedPipeline(pipeline);
@@ -474,6 +483,7 @@ export function PipelinesPanel() {
))}
</div>
)}
</div>
{/* Content */}

View File

@@ -0,0 +1,400 @@
/**
* IntentInput - 智能输入组件
*
* 提供自然语言触发 Pipeline 的入口:
* - 支持关键词/模式快速匹配
* - 显示匹配建议
* - 参数收集(对话式/表单式)
*/
import { useState, useCallback, useRef, useEffect } from 'react';
import {
Send,
Sparkles,
Loader2,
ChevronRight,
X,
MessageSquare,
FileText,
Zap,
} from 'lucide-react';
import { invoke } from '@tauri-apps/api/core';
// === Types ===
/** 路由结果 */
interface RouteResult {
type: 'matched' | 'ambiguous' | 'no_match' | 'need_more_info';
pipeline_id?: string;
display_name?: string;
mode?: 'conversation' | 'form' | 'hybrid' | 'auto';
params?: Record<string, unknown>;
confidence?: number;
missing_params?: MissingParam[];
candidates?: PipelineCandidate[];
suggestions?: PipelineCandidate[];
prompt?: string;
}
/** 缺失参数 */
interface MissingParam {
name: string;
label?: string;
param_type: string;
required: boolean;
default?: unknown;
}
/** Pipeline 候选 */
interface PipelineCandidate {
id: string;
display_name?: string;
description?: string;
icon?: string;
category?: string;
match_reason?: string;
}
/** 组件 Props */
export interface IntentInputProps {
/** 匹配成功回调 */
onMatch?: (pipelineId: string, params: Record<string, unknown>, mode: string) => void;
/** 取消回调 */
onCancel?: () => void;
/** 占位符文本 */
placeholder?: string;
/** 是否禁用 */
disabled?: boolean;
/** 自定义类名 */
className?: string;
}
// === IntentInput Component ===
export function IntentInput({
onMatch,
onCancel,
placeholder = '输入你想做的事情,如"帮我做一个Python入门课程"...',
disabled = false,
className = '',
}: IntentInputProps) {
const [input, setInput] = useState('');
const [loading, setLoading] = useState(false);
const [result, setResult] = useState<RouteResult | null>(null);
const [paramValues, setParamValues] = useState<Record<string, unknown>>({});
const inputRef = useRef<HTMLTextAreaElement>(null);
// Focus input on mount
useEffect(() => {
inputRef.current?.focus();
}, []);
// Handle route request
const handleRoute = useCallback(async () => {
if (!input.trim() || loading) return;
setLoading(true);
setResult(null);
try {
const routeResult = await invoke<RouteResult>('route_intent', {
userInput: input.trim(),
});
setResult(routeResult);
// Initialize param values from extracted params
if (routeResult.params) {
setParamValues(routeResult.params);
}
// If high confidence and no missing params, auto-execute
if (
routeResult.type === 'matched' &&
routeResult.confidence &&
routeResult.confidence >= 0.9 &&
(!routeResult.missing_params || routeResult.missing_params.length === 0)
) {
handleExecute(routeResult.pipeline_id!, routeResult.params || {}, routeResult.mode!);
}
} catch (error) {
console.error('Route error:', error);
setResult({
type: 'no_match',
suggestions: [],
});
} finally {
setLoading(false);
}
}, [input, loading]);
// Handle execute
const handleExecute = useCallback(
(pipelineId: string, params: Record<string, unknown>, mode: string) => {
onMatch?.(pipelineId, params, mode);
// Reset state
setInput('');
setResult(null);
setParamValues({});
},
[onMatch]
);
// Handle param change
const handleParamChange = useCallback((name: string, value: unknown) => {
setParamValues((prev) => ({ ...prev, [name]: value }));
}, []);
// Handle key press
const handleKeyPress = useCallback(
(e: React.KeyboardEvent) => {
if (e.key === 'Enter' && !e.shiftKey) {
e.preventDefault();
if (result?.type === 'matched') {
handleExecute(result.pipeline_id!, paramValues, result.mode!);
} else {
handleRoute();
}
} else if (e.key === 'Escape') {
onCancel?.();
}
},
[result, paramValues, handleRoute, handleExecute, onCancel]
);
// Render input area
const renderInput = () => (
<div className="relative">
<textarea
ref={inputRef}
value={input}
onChange={(e) => setInput(e.target.value)}
onKeyDown={handleKeyPress}
placeholder={placeholder}
disabled={disabled || loading}
rows={2}
className={`w-full px-4 py-3 pr-12 border border-gray-300 dark:border-gray-600 rounded-xl resize-none focus:ring-2 focus:ring-blue-500 focus:border-transparent dark:bg-gray-800 dark:text-white disabled:opacity-50 ${className}`}
/>
<button
onClick={result?.type === 'matched' ? undefined : handleRoute}
disabled={!input.trim() || disabled || loading}
className="absolute right-3 bottom-3 p-2 rounded-lg bg-blue-600 hover:bg-blue-700 text-white disabled:opacity-50 disabled:cursor-not-allowed transition-colors"
>
{loading ? (
<Loader2 className="w-5 h-5 animate-spin" />
) : (
<Send className="w-5 h-5" />
)}
</button>
</div>
);
// Render matched result
const renderMatched = () => {
if (!result || result.type !== 'matched') return null;
const { pipeline_id, display_name, mode, missing_params, confidence } = result;
return (
<div className="mt-3 p-4 bg-blue-50 dark:bg-blue-900/20 rounded-xl border border-blue-200 dark:border-blue-800">
<div className="flex items-start justify-between mb-3">
<div className="flex items-center gap-2">
<Sparkles className="w-5 h-5 text-blue-600" />
<span className="font-medium text-blue-700 dark:text-blue-300">
{display_name || pipeline_id}
</span>
{confidence && (
<span className="text-xs text-blue-500 dark:text-blue-400">
({Math.round(confidence * 100)}% )
</span>
)}
</div>
<button
onClick={() => setResult(null)}
className="p-1 hover:bg-blue-100 dark:hover:bg-blue-800 rounded"
>
<X className="w-4 h-4 text-blue-500" />
</button>
</div>
{/* Mode indicator */}
<div className="flex items-center gap-2 mb-3 text-sm">
<span className="text-gray-500 dark:text-gray-400">:</span>
<span className="flex items-center gap-1 px-2 py-0.5 bg-blue-100 dark:bg-blue-800 rounded">
{mode === 'conversation' && <MessageSquare className="w-3 h-3" />}
{mode === 'form' && <FileText className="w-3 h-3" />}
{mode === 'hybrid' && <Zap className="w-3 h-3" />}
{mode === 'conversation' && '对话式'}
{mode === 'form' && '表单式'}
{mode === 'hybrid' && '混合式'}
{mode === 'auto' && '自动'}
</span>
</div>
{/* Missing params form */}
{missing_params && missing_params.length > 0 && (
<div className="space-y-3 mb-4">
{missing_params.map((param) => (
<div key={param.name}>
<label className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">
{param.label || param.name}
{param.required && <span className="text-red-500 ml-1">*</span>}
</label>
{renderParamInput(param)}
</div>
))}
</div>
)}
{/* Execute button */}
<button
onClick={() => handleExecute(pipeline_id!, paramValues, mode!)}
className="w-full flex items-center justify-center gap-2 px-4 py-2 bg-blue-600 hover:bg-blue-700 text-white font-medium rounded-lg transition-colors"
>
<Zap className="w-4 h-4" />
<ChevronRight className="w-4 h-4" />
</button>
</div>
);
};
// Render param input
const renderParamInput = (param: MissingParam) => {
const value = paramValues[param.name] ?? param.default ?? '';
switch (param.param_type) {
case 'text':
return (
<textarea
value={(value as string) || ''}
onChange={(e) => handleParamChange(param.name, e.target.value)}
rows={3}
className="w-full px-3 py-2 border border-gray-300 dark:border-gray-600 rounded-lg focus:ring-2 focus:ring-blue-500 dark:bg-gray-700 dark:text-white"
/>
);
case 'number':
return (
<input
type="number"
value={(value as number) ?? ''}
onChange={(e) => handleParamChange(param.name, e.target.valueAsNumber)}
className="w-full px-3 py-2 border border-gray-300 dark:border-gray-600 rounded-lg focus:ring-2 focus:ring-blue-500 dark:bg-gray-700 dark:text-white"
/>
);
case 'boolean':
return (
<label className="flex items-center gap-2">
<input
type="checkbox"
checked={(value as boolean) || false}
onChange={(e) => handleParamChange(param.name, e.target.checked)}
className="rounded border-gray-300 text-blue-600 focus:ring-blue-500"
/>
<span className="text-sm text-gray-600 dark:text-gray-300"></span>
</label>
);
default:
return (
<input
type="text"
value={(value as string) || ''}
onChange={(e) => handleParamChange(param.name, e.target.value)}
className="w-full px-3 py-2 border border-gray-300 dark:border-gray-600 rounded-lg focus:ring-2 focus:ring-blue-500 dark:bg-gray-700 dark:text-white"
/>
);
}
};
// Render suggestions
const renderSuggestions = () => {
if (!result || result.type !== 'no_match') return null;
const { suggestions } = result;
return (
<div className="mt-3 p-4 bg-gray-50 dark:bg-gray-800/50 rounded-xl border border-gray-200 dark:border-gray-700">
<p className="text-sm text-gray-600 dark:text-gray-400 mb-3">
Pipeline:
</p>
{suggestions && suggestions.length > 0 ? (
<div className="space-y-2">
{suggestions.map((candidate) => (
<button
key={candidate.id}
onClick={() => {
setInput('');
handleExecute(candidate.id, {}, 'form');
}}
className="w-full flex items-center justify-between p-3 bg-white dark:bg-gray-800 rounded-lg border border-gray-200 dark:border-gray-700 hover:border-blue-300 dark:hover:border-blue-600 transition-colors text-left"
>
<div>
<span className="font-medium text-gray-900 dark:text-white">
{candidate.display_name || candidate.id}
</span>
{candidate.description && (
<p className="text-sm text-gray-500 dark:text-gray-400 mt-0.5">
{candidate.description}
</p>
)}
</div>
<ChevronRight className="w-5 h-5 text-gray-400" />
</button>
))}
</div>
) : (
<p className="text-sm text-gray-500 dark:text-gray-400">
</p>
)}
</div>
);
};
// Render ambiguous results
const renderAmbiguous = () => {
if (!result || result.type !== 'ambiguous') return null;
const { candidates } = result;
return (
<div className="mt-3 p-4 bg-amber-50 dark:bg-amber-900/20 rounded-xl border border-amber-200 dark:border-amber-800">
<p className="text-sm text-amber-700 dark:text-amber-300 mb-3">
Pipeline:
</p>
<div className="space-y-2">
{candidates?.map((candidate) => (
<button
key={candidate.id}
onClick={() => handleExecute(candidate.id, paramValues, 'form')}
className="w-full flex items-center justify-between p-3 bg-white dark:bg-gray-800 rounded-lg border border-amber-200 dark:border-amber-700 hover:border-amber-300 dark:hover:border-amber-600 transition-colors text-left"
>
<div>
<span className="font-medium text-gray-900 dark:text-white">
{candidate.display_name || candidate.id}
</span>
{candidate.match_reason && (
<p className="text-sm text-amber-600 dark:text-amber-400 mt-0.5">
{candidate.match_reason}
</p>
)}
</div>
<ChevronRight className="w-5 h-5 text-amber-500" />
</button>
))}
</div>
</div>
);
};
return (
<div className="intent-input">
{renderInput()}
{renderMatched()}
{renderSuggestions()}
{renderAmbiguous()}
</div>
);
}
export default IntentInput;

View File

@@ -0,0 +1,148 @@
/**
* Presentation Container
*
* Main container for smart presentation rendering.
*
* Features:
* - Auto-detects presentation type from data structure
* - Supports manual type switching
* - Manages presentation state
* - Provides export functionality
*/
import React, { useState, useMemo, useCallback } from 'react';
import { invoke } from '@tauri-apps/api/core';
import type { PresentationType, PresentationAnalysis } from './types';
import { TypeSwitcher } from './TypeSwitcher';
import { QuizRenderer } from './renderers/QuizRenderer';
const SlideshowRenderer = React.lazy(() => import('./renderers/SlideshowRenderer').then(m => ({ default: m.SlideshowRenderer })));
const DocumentRenderer = React.lazy(() => import('./renderers/DocumentRenderer').then(m => ({ default: m.DocumentRenderer })));
interface PresentationContainerProps {
/** Pipeline output data */
data: unknown;
/** Pipeline ID (reserved for future use) */
pipelineId?: string;
/** Supported presentation types (from pipeline config) */
supportedTypes?: PresentationType[];
/** Default presentation type */
defaultType?: PresentationType;
/** Allow user to switch types */
allowSwitch?: boolean;
/** Called when export is triggered (reserved for future use) */
onExport?: (format: string) => void;
/** Custom className */
className?: string;
}
export function PresentationContainer({
data,
supportedTypes,
defaultType,
allowSwitch = true,
className = '',
}: PresentationContainerProps) {
const [analysis, setAnalysis] = useState<PresentationAnalysis | null>(null);
const [currentType, setCurrentType] = useState<PresentationType | null>(null);
const [isAnalyzing, setIsAnalyzing] = useState(true);
useMemo(() => {
const runAnalysis = async () => {
setIsAnalyzing(true);
try {
const result = await invoke<PresentationAnalysis>('analyze_presentation', { data });
setAnalysis(result);
if (defaultType) {
setCurrentType(defaultType);
} else if (result) {
setCurrentType(result.recommendedType);
}
} catch (error) {
console.error('Failed to analyze presentation:', error);
setCurrentType('document');
} finally {
setIsAnalyzing(false);
}
};
runAnalysis();
}, [data, defaultType]);
const handleTypeChange = useCallback((type: PresentationType) => {
setCurrentType(type);
}, []);
const availableTypes = useMemo(() => {
if (supportedTypes && supportedTypes.length > 0) {
return supportedTypes.filter((t): t is PresentationType => t !== 'auto');
}
return (['quiz', 'slideshow', 'document', 'whiteboard'] as PresentationType[]);
}, [supportedTypes]);
const renderContent = () => {
if (isAnalyzing) {
return (
<div className="flex items-center justify-center h-64">
<div className="animate-spin rounded-full h-8 w-8 border-b-2 border-blue-500" />
<p className="ml-3 text-gray-500">...</p>
</div>
);
}
switch (currentType) {
case 'quiz':
return <QuizRenderer data={data as Parameters<typeof QuizRenderer>[0]['data']} />;
case 'slideshow':
return (
<React.Suspense fallback={<div className="h-64 animate-pulse bg-gray-100" />}>
<SlideshowRenderer data={data as Parameters<typeof SlideshowRenderer>[0]['data']} />
</React.Suspense>
);
case 'document':
return (
<React.Suspense fallback={<div className="h-64 animate-pulse bg-gray-100" />}>
<DocumentRenderer data={data as Parameters<typeof DocumentRenderer>[0]['data']} />
</React.Suspense>
);
case 'whiteboard':
return (
<div className="flex items-center justify-center h-64 bg-gray-50">
<p className="text-gray-500">...</p>
</div>
);
default:
return (
<div className="flex items-center justify-center h-64 bg-gray-50">
<p className="text-gray-500"></p>
</div>
);
}
};
return (
<div className={`flex flex-col h-full ${className}`}>
{allowSwitch && (
<div className="border-b border-gray-200 bg-gray-50 p-3">
<TypeSwitcher
availableTypes={availableTypes}
currentType={currentType || 'document'}
analysis={analysis || undefined}
onTypeChange={handleTypeChange}
/>
</div>
)}
<div className="flex-1 overflow-auto">
{renderContent()}
</div>
</div>
);
}
export default PresentationContainer;

View File

@@ -0,0 +1,113 @@
/**
* Type Switcher Component
*
* Allows users to switch between presentation types.
*/
import {
BarChart3,
FileText,
Presentation,
CheckCircle,
PenTool,
} from 'lucide-react';
import type { PresentationType, PresentationAnalysis } from './types';
interface TypeSwitcherProps {
/** Available types */
availableTypes: PresentationType[];
/** Current type */
currentType: PresentationType;
/** Analysis result (optional) */
analysis?: PresentationAnalysis;
/** Called when type is changed */
onTypeChange: (type: PresentationType) => void;
/** Disabled types */
disabledTypes?: PresentationType[];
/** Custom className */
className?: string;
}
const typeConfig: Record<PresentationType, { icon: React.ReactNode; label: string; description: string }> = {
chart: {
icon: <BarChart3 className="w-4 h-4" />,
label: '图表',
description: '数据可视化',
},
slideshow: {
icon: <Presentation className="w-4 h-4" />,
label: '幻灯片',
description: '演示文稿风格',
},
quiz: {
icon: <CheckCircle className="w-4 h-4" />,
label: '测验',
description: '互动问答',
},
document: {
icon: <FileText className="w-4 h-4" />,
label: '文档',
description: 'Markdown 文档',
},
whiteboard: {
icon: <PenTool className="w-4 h-4" />,
label: '白板',
description: '交互式画布',
},
auto: {
icon: <CheckCircle className="w-4 h-4" />,
label: '自动',
description: '自动检测类型',
},
};
export function TypeSwitcher({
availableTypes,
currentType,
analysis,
onTypeChange,
disabledTypes = [],
className = '',
}: TypeSwitcherProps) {
return (
<div className={`flex items-center gap-2 ${className}`}>
{availableTypes.map((type) => {
const config = typeConfig[type];
if (!config) return null;
const isActive = currentType === type;
const isDisabled = disabledTypes.includes(type);
const recommendation = analysis?.recommendedType === type;
return (
<button
key={type}
onClick={() => onTypeChange(type)}
disabled={isDisabled}
className={`
flex items-center gap-2 px-3 py-2 rounded-lg transition-all
${isActive
? 'bg-blue-100 text-blue-700 border-2 border-blue-500'
: 'bg-white text-gray-600 border border-gray-200 hover:bg-gray-100'
}
${isDisabled ? 'opacity-50 cursor-not-allowed' : ''}
`}
title={config.description}
>
<span className="text-lg">{config.icon}</span>
<span className="text-sm font-medium">{config.label}</span>
{recommendation && (
<span className="text-xs text-blue-500"></span>
)}
</button>
);
})}
{analysis && (
<div className="ml-4 text-xs text-gray-500">
<p>: {(analysis.confidence * 100).toFixed(0)}%</p>
</div>
)}
</div>
);
}

View File

@@ -0,0 +1,33 @@
/**
* Presentation Components
*
* Smart presentation layer for Pipeline output rendering.
*
* @example
* ```tsx
* import { PresentationContainer } from '@/components/presentation';
*
* <PresentationContainer
* data={pipelineOutput}
* pipelineId="course-generator"
* supportedTypes={['slideshow', 'quiz', 'document']}
* />
* ```
*/
export { PresentationContainer } from './PresentationContainer';
export { TypeSwitcher } from './TypeSwitcher';
export { QuizRenderer } from './renderers/QuizRenderer';
export { DocumentRenderer } from './renderers/DocumentRenderer';
export { SlideshowRenderer } from './renderers/SlideshowRenderer';
export type {
PresentationType,
PresentationAnalysis,
ChartData,
QuizData,
QuizQuestion,
QuestionType,
SlideshowData,
DocumentData,
WhiteboardData,
} from './types';

View File

@@ -0,0 +1,150 @@
/**
* Document Renderer
*
* Renders content as a scrollable document with Markdown support.
*/
import { useState } from 'react';
import { Download, ExternalLink, Copy } from 'lucide-react';
import type { DocumentData } from '../types';
interface DocumentRendererProps {
/** Document data */
data: DocumentData;
/** Enable markdown rendering */
enableMarkdown?: boolean;
/** Custom className */
className?: string;
}
export function DocumentRenderer({
data,
enableMarkdown = true,
className = '',
}: DocumentRendererProps) {
const [copied, setCopied] = useState(false);
const handleCopy = async () => {
try {
const textToCopy = typeof data === 'string' ? data : (data.content || JSON.stringify(data, null, 2));
await navigator.clipboard.writeText(textToCopy);
setCopied(true);
setTimeout(() => setCopied(false), 2000);
} catch (error) {
console.error('Failed to copy:', error);
}
};
const handleDownload = () => {
if (data.downloadUrl) {
const link = document.createElement('a');
link.href = data.downloadUrl;
link.download = data.downloadFilename || 'document.md';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
}
};
const renderMarkdown = (content: string): React.ReactNode => {
const lines = content.split('\n');
const elements: React.ReactNode[] = [];
for (const line of lines) {
const trimmed = line.trim();
if (!trimmed) continue;
if (trimmed.startsWith('# ')) {
elements.push(
<h1 key={trimmed} className="text-2xl font-bold mb-4">
{trimmed.substring(2)}
</h1>
);
} else if (trimmed.startsWith('## ')) {
elements.push(
<h2 key={trimmed} className="text-xl font-semibold mb-3">
{trimmed.substring(3)}
</h2>
);
} else if (trimmed.startsWith('### ')) {
elements.push(
<h3 key={trimmed} className="text-lg font-medium mb-2">
{trimmed.substring(4)}
</h3>
);
} else if (trimmed.startsWith('- ')) {
elements.push(
<li key={trimmed} className="ml-4 list-disc">
{trimmed.substring(2)}
</li>
);
} else if (trimmed.startsWith('```')) {
elements.push(
<pre key={trimmed} className="bg-gray-900 text-gray-100 p-4 rounded-lg overflow-x-auto text-sm my-2">
<code>{trimmed.substring(3, trimmed.length - 3)}</code>
</pre>
);
} else {
elements.push(
<p key={trimmed} className="mb-2">{trimmed}</p>
);
}
}
return <div className={className}>{elements}</div>;
};
if (!enableMarkdown) {
return (
<div className={`flex flex-col h-full ${className}`}>
<pre className="whitespace-pre-wrap text-sm">{JSON.stringify(data, null, 2)}</pre>
</div>
);
}
return (
<div className={`flex flex-col h-full ${className}`}>
{data.title && (
<div className="flex items-center justify-between p-4 border-b border-gray-200">
<h1 className="text-xl font-semibold text-gray-900">{data.title}</h1>
<div className="flex items-center gap-2">
<button
onClick={handleCopy}
className="p-1 text-gray-400 hover:text-gray-600 flex items-center gap-1"
title="复制"
>
<Copy className="w-4 h-4" />
{copied && <span className="text-xs text-green-500"></span>}
</button>
{data.downloadUrl && (
<button
onClick={handleDownload}
className="p-1 text-gray-400 hover:text-gray-600"
title="下载"
>
<Download className="w-4 h-4" />
</button>
)}
{data.url && (
<button
onClick={() => window.open(data.url, '_blank')}
className="p-1 text-gray-400 hover:text-gray-600"
title="在新窗口打开"
>
<ExternalLink className="w-4 h-4" />
</button>
)}
</div>
</div>
)}
<div className="flex-1 overflow-auto p-6">
{typeof data === 'string'
? renderMarkdown(data)
: renderMarkdown(data.content || JSON.stringify(data))}
</div>
</div>
);
}
export default DocumentRenderer;

View File

@@ -0,0 +1,354 @@
/**
* Quiz Renderer
*
* Renders interactive quizzes with support for:
* - Single choice
* - Multiple choice
* - True/False
* - Fill in blank
* - Short answer
*/
import { useState, useMemo } from 'react';
import {
CheckCircle,
XCircle,
Award,
RotateCcw,
} from 'lucide-react';
import type { QuizData, QuizQuestion } from '../types';
interface QuizRendererProps {
data: QuizData;
onComplete?: (score: number, correct: number, total: number) => void;
onAnswer?: (questionId: string, answer: unknown) => void;
showAnswers?: boolean;
allowRetry?: boolean;
className?: string;
}
interface UserAnswer {
questionId: string;
answer: unknown;
isCorrect: boolean;
}
export function QuizRenderer({
data,
onComplete,
onAnswer,
showAnswers = true,
allowRetry = true,
className = '',
}: QuizRendererProps) {
const [currentIndex, setCurrentIndex] = useState(0);
const [answers, setAnswers] = useState<Record<string, UserAnswer>>({});
const [showResults, setShowResults] = useState(showAnswers ?? false);
const [score, setScore] = useState(0);
const [correctCount, setCorrectCount] = useState(0);
const [isCompleted, setIsCompleted] = useState(false);
const checkAnswer = (answer: unknown, question: QuizQuestion): boolean => {
if (question.questionType === 'singleChoice' || question.questionType === 'trueFalse') {
return answer === question.correctAnswer;
}
if (question.questionType === 'multipleChoice') {
const answerArr = answer as string[];
const correctArr = question.correctAnswer as string[];
if (!Array.isArray(answerArr) || !Array.isArray(correctArr)) return false;
return JSON.stringify([...answerArr].sort()) === JSON.stringify([...correctArr].sort());
}
if (question.questionType === 'fillBlank' || question.questionType === 'shortAnswer') {
return String(answer).toLowerCase().trim() === String(question.correctAnswer).toLowerCase().trim();
}
return false;
};
useMemo(() => {
if (!data.questions || data.questions.length === 0) return;
const total = data.questions.length;
const correct = data.questions.filter((q: QuizQuestion) => {
const userAnswer = answers[q.id];
return userAnswer?.isCorrect ?? false;
}).length;
setScore(Math.round((correct / total) * 100));
setCorrectCount(correct);
}, [answers, data.questions]);
const handleSelectAnswer = (questionId: string, answer: unknown) => {
const question = data.questions.find((q: QuizQuestion) => q.id === questionId);
if (!question) return;
const isCorrect = checkAnswer(answer, question);
setAnswers(prev => ({
...prev,
[questionId]: { questionId, answer, isCorrect },
}));
if (onAnswer) {
onAnswer(questionId, answer);
}
};
const handleNext = () => {
if (currentIndex < data.questions.length - 1) {
setCurrentIndex(currentIndex + 1);
}
};
const handlePrev = () => {
if (currentIndex > 0) {
setCurrentIndex(currentIndex - 1);
}
};
const handleSubmit = () => {
setShowResults(true);
setIsCompleted(true);
if (onComplete) {
onComplete(score, correctCount, data.questions.length);
}
};
const handleRetry = () => {
setAnswers({});
setShowResults(false);
setIsCompleted(false);
setScore(0);
setCorrectCount(0);
setCurrentIndex(0);
};
const question = data.questions[currentIndex];
if (!question) return null;
const progressPercent = ((currentIndex + 1) / data.questions.length) * 100;
const renderQuestionOptions = () => {
const qType = question.questionType;
if (qType === 'singleChoice' || qType === 'trueFalse') {
return (
<div className="space-y-3">
{question.options.map((option) => {
const isSelected = answers[question.id]?.answer === option.id;
const showCorrect = showResults && question.correctAnswer === option.id;
const showIncorrect = showResults && isSelected && !showCorrect;
return (
<button
key={option.id}
onClick={() => !showResults && handleSelectAnswer(question.id, option.id)}
disabled={showResults}
className={`w-full p-4 text-left rounded-lg border-2 transition-all ${
isSelected && !showResults ? 'border-blue-500 bg-blue-50' : ''
} ${showCorrect ? 'border-green-500 bg-green-50' : ''} ${
showIncorrect ? 'border-red-500 bg-red-50' : ''
} ${!isSelected && !showCorrect ? 'border-gray-200' : ''}`}
>
<div className="flex items-center justify-between">
<span className="flex-1">{option.text}</span>
{showCorrect && <CheckCircle className="w-5 h-5 text-green-500" />}
{showIncorrect && <XCircle className="w-5 h-5 text-red-500" />}
</div>
</button>
);
})}
</div>
);
}
if (qType === 'multipleChoice') {
return (
<div className="space-y-3">
{question.options.map((option) => {
const selectedAnswers = (answers[question.id]?.answer as string[]) || [];
const isSelected = selectedAnswers.includes(option.id);
const showCorrect = showResults && (question.correctAnswer as string[]).includes(option.id);
return (
<button
key={option.id}
onClick={() => {
if (showResults) return;
const newAnswers = isSelected
? selectedAnswers.filter(a => a !== option.id)
: [...selectedAnswers, option.id];
handleSelectAnswer(question.id, newAnswers);
}}
disabled={showResults}
className={`w-full p-4 text-left rounded-lg border-2 transition-all ${
isSelected && !showResults ? 'border-blue-500 bg-blue-50' : ''
} ${showCorrect ? 'border-green-500 bg-green-50' : ''} ${
!isSelected && !showCorrect && showResults ? 'border-gray-200 opacity-50' : ''
}`}
>
<div className="flex items-center gap-3">
<input
type="checkbox"
checked={isSelected}
onChange={() => {}}
className="w-4 h-4 rounded"
disabled={showResults}
/>
<span className="flex-1">{option.text}</span>
{showCorrect && <CheckCircle className="w-5 h-5 text-green-500" />}
</div>
</button>
);
})}
</div>
);
}
if (qType === 'fillBlank') {
return (
<div className="mt-4">
<input
type="text"
placeholder="请输入答案..."
className="w-full p-3 border rounded-lg focus:ring-2 focus:ring-blue-500"
onChange={(e) => handleSelectAnswer(question.id, e.target.value)}
disabled={showResults}
/>
{showResults && (
<p className="text-sm text-gray-500 mt-2">
: {question.correctAnswer}
</p>
)}
</div>
);
}
if (qType === 'shortAnswer') {
return (
<div className="mt-4">
<textarea
placeholder="请输入你的答案..."
className="w-full p-3 border rounded-lg focus:ring-2 focus:ring-blue-500 min-h-32"
onChange={(e) => handleSelectAnswer(question.id, e.target.value)}
disabled={showResults}
/>
{showResults && (
<p className="text-sm text-gray-500 mt-2">
: {question.correctAnswer}
</p>
)}
</div>
);
}
return null;
};
return (
<div className={`flex flex-col h-full ${className}`}>
<div className="bg-white border-b border-gray-200 p-4">
<div className="flex items-center justify-between">
<div>
{data.title && (
<h2 className="text-lg font-semibold text-gray-900">{data.title}</h2>
)}
{data.description && (
<p className="text-sm text-gray-500">{data.description}</p>
)}
</div>
<div className="flex items-center gap-2 mt-4">
<div className="flex-1 bg-gray-200 rounded-full h-2">
<div
className="h-2 bg-blue-500 transition-all"
style={{ width: `${progressPercent}%` }}
/>
</div>
<span className="text-sm text-gray-600">
{currentIndex + 1} / {data.questions.length}
</span>
</div>
</div>
</div>
<div className="bg-white rounded-lg shadow p-6 flex-1">
<div className="mb-4">
<p className="text-lg font-medium text-gray-900">{question.text}</p>
{question.hint && !showResults && (
<p className="text-sm text-gray-500 mt-2">
💡 {question.hint}
</p>
)}
</div>
{renderQuestionOptions()}
<div className="flex items-center justify-between mt-6">
<button
onClick={handlePrev}
disabled={currentIndex === 0}
className="p-2 text-gray-600 hover:text-gray-900 disabled:opacity-50"
>
<RotateCcw className="w-5 h-5" />
</button>
<span className="text-sm text-gray-500">
{currentIndex + 1} / {data.questions.length}
</span>
<button
onClick={handleNext}
disabled={currentIndex === data.questions.length - 1 || showResults}
className="p-2 text-gray-600 hover:text-gray-900 disabled:opacity-50"
>
</button>
</div>
{!showResults ? (
<button
onClick={handleSubmit}
className="w-full py-3 bg-blue-500 text-white rounded-lg font-medium hover:bg-blue-600 transition-colors mt-4"
>
</button>
) : (
<div className="space-y-4 mt-4">
<div className="flex items-center justify-center gap-4 p-4 bg-gray-50 rounded-lg">
<div className="text-center">
<div className="text-3xl font-bold text-gray-900">
{score}%
</div>
<div className="text-sm text-gray-500">
{correctCount} / {data.questions.length}
</div>
</div>
</div>
{allowRetry && (
<button
onClick={handleRetry}
className="w-full py-2 text-blue-600 hover:bg-blue-50 rounded-lg font-medium transition-colors"
>
</button>
)}
</div>
)}
</div>
{isCompleted && (
<div className="bg-green-50 p-4 text-center">
<Award className="w-8 h-8 text-green-500 mx-auto mb-2" />
<p className="text-lg font-semibold text-green-700">
🎉
</p>
<p className="text-sm text-green-600">
: {score}% ({correctCount}/{data.questions.length} )
</p>
</div>
)}
</div>
);
}

View File

@@ -0,0 +1,172 @@
/**
* Slideshow Renderer
*
* Renders presentation as a slideshow with slide navigation.
*/
import { useState, useEffect, useCallback } from 'react';
import {
ChevronLeft,
ChevronRight,
Maximize2,
Minimize2,
Play,
Pause,
} from 'lucide-react';
import type { SlideshowData } from '../types';
interface SlideshowRendererProps {
data: SlideshowData;
/** Auto-play interval in seconds (0 = disabled) */
autoPlayInterval?: number;
/** Show progress indicator */
showProgress?: boolean;
/** Show speaker notes */
showNotes?: boolean;
/** Custom className */
className?: string;
}
export function SlideshowRenderer({
data,
autoPlayInterval = 0,
showProgress = true,
showNotes = true,
className = '',
}: SlideshowRendererProps) {
const [currentIndex, setCurrentIndex] = useState(0);
const [isPlaying, setIsPlaying] = useState(false);
const [isFullscreen, setIsFullscreen] = useState(false);
const slides = data.slides || [];
const totalSlides = slides.length;
// Handle keyboard navigation
useEffect(() => {
const handleKeyDown = (e: KeyboardEvent) => {
if (e.key === 'ArrowRight' || e.key === ' ') {
handleNext();
} else if (e.key === 'ArrowLeft') {
handlePrev();
} else if (e.key === 'f') {
toggleFullscreen();
}
};
window.addEventListener('keydown', handleKeyDown);
return () => window.removeEventListener('keydown', handleKeyDown);
}, []);
// Auto-play
useEffect(() => {
if (isPlaying && autoPlayInterval > 0) {
const timer = setInterval(handleNext, autoPlayInterval * 1000);
return () => clearInterval(timer);
}
}, [isPlaying, autoPlayInterval]);
const handleNext = useCallback(() => {
setCurrentIndex((prev) => (prev + 1) % totalSlides);
}, [totalSlides]);
const handlePrev = useCallback(() => {
setCurrentIndex((prev) => (prev - 1 + totalSlides) % totalSlides);
}, [totalSlides]);
const toggleFullscreen = useCallback(() => {
setIsFullscreen((prev) => !prev);
}, []);
const currentSlide = slides[currentIndex];
if (!currentSlide) {
return (
<div className={`flex items-center justify-center h-64 bg-gray-50 ${className}`}>
<p className="text-gray-500"></p>
</div>
);
}
return (
<div className={`flex flex-col h-full ${isFullscreen ? 'fixed inset-0 z-50 bg-white' : ''} ${className}`}>
{/* Slide Content */}
<div className="flex-1 flex items-center justify-center p-8">
<div className="max-w-4xl w-full">
{/* Title */}
{currentSlide.title && (
<h2 className="text-3xl font-bold text-center mb-6">
{currentSlide.title}
</h2>
)}
{/* Content rendering would go here */}
<div className="text-gray-700">
{/* This is simplified - real implementation would render based on content type */}
{typeof currentSlide.content === 'string' ? (
<p>{currentSlide.content}</p>
) : (
<div>Complex content rendering</div>
)}
</div>
</div>
</div>
{/* Controls */}
<div className="flex items-center justify-between p-4 bg-gray-50 border-t">
<div className="flex items-center gap-2">
<button
onClick={handlePrev}
disabled={totalSlides <= 1}
className="p-2 hover:bg-gray-200 rounded disabled:opacity-50"
>
<ChevronLeft className="w-5 h-5" />
</button>
<button
onClick={() => setIsPlaying(!isPlaying)}
disabled={autoPlayInterval === 0}
className="p-2 hover:bg-gray-200 rounded disabled:opacity-50"
>
{isPlaying ? <Pause className="w-5 h-5" /> : <Play className="w-5 h-5" />}
</button>
<button
onClick={handleNext}
disabled={totalSlides <= 1}
className="p-2 hover:bg-gray-200 rounded disabled:opacity-50"
>
<ChevronRight className="w-5 h-5" />
</button>
</div>
{/* Progress */}
{showProgress && (
<div className="text-sm text-gray-500">
{currentIndex + 1} / {totalSlides}
</div>
)}
{/* Fullscreen */}
<button
onClick={toggleFullscreen}
className="p-2 hover:bg-gray-200 rounded"
>
{isFullscreen ? (
<Minimize2 className="w-5 h-5" />
) : (
<Maximize2 className="w-5 h-5" />
)}
</button>
</div>
{/* Speaker Notes */}
{showNotes && currentSlide.notes && (
<div className="p-4 bg-yellow-50 border-t text-sm text-gray-600">
📝 {currentSlide.notes}
</div>
)}
</div>
);
}
export default SlideshowRenderer;

View File

@@ -0,0 +1,145 @@
/**
* Presentation Types
*
* Type definitions for the presentation layer.
* Used by renderers and container components.
*/
export type PresentationType =
| 'chart'
| 'quiz'
| 'slideshow'
| 'document'
| 'whiteboard'
| 'auto';
export interface PresentationAnalysis {
recommendedType: PresentationType;
confidence: number;
detectedFeatures: string[];
metadata?: Record<string, unknown>;
}
export interface ChartData {
type: 'line' | 'bar' | 'pie' | 'scatter' | 'area';
title?: string;
labels?: string[];
datasets: ChartDataset[];
options?: ChartOptions;
}
export interface ChartDataset {
label: string;
data: number[];
backgroundColor?: string | string[];
borderColor?: string | string[];
fill?: boolean;
}
export interface ChartOptions {
responsive?: boolean;
maintainAspectRatio?: boolean;
plugins?: {
legend?: {
display?: boolean;
position?: 'top' | 'bottom' | 'left' | 'right';
};
title?: {
display?: boolean;
text?: string;
};
};
scales?: Record<string, unknown>;
}
export interface QuizData {
title?: string;
description?: string;
questions: QuizQuestion[];
timeLimit?: number;
passingScore?: number;
}
export interface QuizQuestion {
id: string;
text: string;
questionType: QuestionType;
options: QuizOption[];
correctAnswer: string | string[];
hint?: string;
explanation?: string;
points?: number;
}
export type QuestionType =
| 'singleChoice'
| 'multipleChoice'
| 'trueFalse'
| 'fillBlank'
| 'shortAnswer';
export interface QuizOption {
id: string;
text: string;
isCorrect?: boolean;
}
export interface SlideshowData {
title?: string;
slides: Slide[];
theme?: SlideshowTheme;
autoPlay?: boolean;
interval?: number;
}
export interface Slide {
id: string;
type: 'title' | 'content' | 'image' | 'code' | 'twoColumn';
title?: string;
content?: string;
image?: string;
code?: string;
language?: string;
leftContent?: string;
rightContent?: string;
notes?: string;
}
export interface SlideshowTheme {
backgroundColor?: string;
textColor?: string;
accentColor?: string;
fontFamily?: string;
}
export interface DocumentData {
title?: string;
content?: string;
format?: 'markdown' | 'html' | 'plain';
downloadUrl?: string;
downloadFilename?: string;
url?: string;
}
export interface WhiteboardData {
title?: string;
elements: WhiteboardElement[];
background?: string;
gridSize?: number;
}
export interface WhiteboardElement {
id: string;
type: 'rect' | 'circle' | 'line' | 'text' | 'image' | 'path';
x: number;
y: number;
width?: number;
height?: number;
fill?: string;
stroke?: string;
strokeWidth?: number;
text?: string;
fontSize?: number;
src?: string;
points?: number[];
}

View File

@@ -25,6 +25,10 @@ import {
type LLMServiceAdapter,
type LLMProvider,
} from './llm-service';
import {
extractAndStoreMemories,
type ChatMessageForExtraction,
} from './viking-client';
// === Types ===
@@ -160,24 +164,44 @@ export class MemoryExtractor {
extracted = extracted.filter(item => item.importance >= this.config.minImportanceThreshold);
console.log(`[MemoryExtractor] After importance filtering (>= ${this.config.minImportanceThreshold}): ${extracted.length} items`);
// Save to memory
// Save to memory (dual storage: intelligenceClient + viking-client/SqliteStorage)
let saved = 0;
let skipped = 0;
for (const item of extracted) {
// Primary: Store via viking-client to SqliteStorage (persistent)
if (extracted.length > 0) {
try {
await intelligenceClient.memory.store({
agent_id: agentId,
memory_type: item.type,
content: item.content,
importance: item.importance,
source: 'auto',
tags: item.tags,
conversation_id: conversationId,
});
saved++;
} catch {
skipped++;
const chatMessagesForViking: ChatMessageForExtraction[] = chatMessages.map(m => ({
role: m.role,
content: m.content,
}));
const vikingResult = await extractAndStoreMemories(
chatMessagesForViking,
agentId
);
console.log(`[MemoryExtractor] Viking storage result: ${vikingResult.summary}`);
saved = vikingResult.memories.length;
} catch (err) {
console.warn('[MemoryExtractor] Viking storage failed, falling back to intelligenceClient:', err);
// Fallback: Store via intelligenceClient (in-memory/graph)
for (const item of extracted) {
try {
await intelligenceClient.memory.store({
agent_id: agentId,
memory_type: item.type,
content: item.content,
importance: item.importance,
source: 'auto',
tags: item.tags,
conversation_id: conversationId,
});
saved++;
} catch {
skipped++;
}
}
}
}

View File

@@ -28,6 +28,7 @@ export interface PipelineInfo {
displayName: string;
description: string;
category: string;
industry: string;
tags: string[];
icon: string;
version: string;
@@ -75,10 +76,12 @@ export class PipelineClient {
*/
static async listPipelines(options?: {
category?: string;
industry?: string;
}): Promise<PipelineInfo[]> {
try {
const pipelines = await invoke<PipelineInfo[]>('pipeline_list', {
category: options?.category || null,
industry: options?.industry || null,
});
return pipelines;
} catch (error) {
@@ -206,20 +209,28 @@ export class PipelineClient {
pollIntervalMs: number = 1000
): Promise<PipelineRunResponse> {
// Start the pipeline
console.log('[DEBUG runAndWait] Starting pipeline:', request.pipelineId);
const { runId } = await this.runPipeline(request);
console.log('[DEBUG runAndWait] Got runId:', runId);
// Poll for progress until completion
let result = await this.getProgress(runId);
console.log('[DEBUG runAndWait] Initial progress:', result.status, result.message);
let pollCount = 0;
while (result.status === 'running' || result.status === 'pending') {
if (onProgress) {
onProgress(result);
}
await new Promise((resolve) => setTimeout(resolve, pollIntervalMs));
pollCount++;
console.log(`[DEBUG runAndWait] Poll #${pollCount} for runId:`, runId);
result = await this.getProgress(runId);
console.log(`[DEBUG runAndWait] Progress:`, result.status, result.message);
}
console.log('[DEBUG runAndWait] Final result:', result.status, result.error || 'no error');
return result;
}
}
@@ -330,6 +341,7 @@ import { useState, useEffect, useCallback } from 'react';
export interface UsePipelineOptions {
category?: string;
industry?: string;
autoRefresh?: boolean;
refreshInterval?: number;
}
@@ -345,6 +357,7 @@ export function usePipelines(options: UsePipelineOptions = {}) {
try {
const result = await PipelineClient.listPipelines({
category: options.category,
industry: options.industry,
});
setPipelines(result);
} catch (err) {
@@ -352,24 +365,28 @@ export function usePipelines(options: UsePipelineOptions = {}) {
} finally {
setLoading(false);
}
}, [options.category]);
}, [options.category, options.industry]);
const refresh = useCallback(async () => {
setLoading(true);
setError(null);
try {
const result = await PipelineClient.refresh();
// Filter by category if specified
const filtered = options.category
? result.filter((p) => p.category === options.category)
: result;
// Filter by category and industry if specified
let filtered = result;
if (options.category) {
filtered = filtered.filter((p) => p.category === options.category);
}
if (options.industry) {
filtered = filtered.filter((p) => p.industry === options.industry);
}
setPipelines(filtered);
} catch (err) {
setError(err instanceof Error ? err.message : String(err));
} finally {
setLoading(false);
}
}, [options.category]);
}, [options.category, options.industry]);
useEffect(() => {
loadPipelines();

View File

@@ -172,3 +172,71 @@ export async function stopVikingServer(): Promise<void> {
export async function restartVikingServer(): Promise<void> {
return invoke<void>('viking_server_restart');
}
// === Memory Extraction Functions ===
export interface ChatMessageForExtraction {
role: string;
content: string;
timestamp?: string;
}
export interface ExtractedMemory {
category: 'user_preference' | 'user_fact' | 'agent_lesson' | 'agent_pattern' | 'task';
content: string;
tags: string[];
importance: number;
suggestedUri: string;
reasoning?: string;
}
export interface ExtractionResult {
memories: ExtractedMemory[];
summary: string;
tokensSaved?: number;
extractionTimeMs: number;
}
/**
* Extract memories from conversation session
*/
export async function extractSessionMemories(
messages: ChatMessageForExtraction[],
agentId: string
): Promise<ExtractionResult> {
return invoke<ExtractionResult>('extract_session_memories', { messages, agentId });
}
/**
* Extract memories and store to SqliteStorage in one call
*/
export async function extractAndStoreMemories(
messages: ChatMessageForExtraction[],
agentId: string,
llmEndpoint?: string,
llmApiKey?: string
): Promise<ExtractionResult> {
return invoke<ExtractionResult>('extract_and_store_memories', {
messages,
agentId,
llmEndpoint,
llmApiKey,
});
}
/**
* Inject relevant memories into prompt for enhanced context
*/
export async function injectVikingPrompt(
agentId: string,
basePrompt: string,
userInput: string,
maxTokens?: number
): Promise<string> {
return invoke<string>('viking_inject_prompt', {
agentId,
basePrompt,
userInput,
maxTokens,
});
}

View File

@@ -15,7 +15,9 @@ knowledge-base/
├── agent-provider-config.md # Agent 和 LLM 提供商配置
├── tauri-desktop.md # Tauri 桌面端开发笔记
├── feature-checklist.md # 功能清单和验证状态
── hands-integration-lessons.md # Hands 集成经验总结
── hands-integration-lessons.md # Hands 集成经验总结
├── openmaic-analysis.md # OpenMAIC 项目深度分析
└── openmaic-zclaw-comparison.md # OpenMAIC vs ZCLAW 对比分析
```
## 快速索引
@@ -46,11 +48,19 @@ knowledge-base/
| 功能清单 | [feature-checklist.md](./feature-checklist.md) | 所有功能的验证状态 |
| Hands 集成 | [hands-integration-lessons.md](./hands-integration-lessons.md) | Hands 功能集成经验 |
### 参考项目分析
| 主题 | 文件 | 说明 |
|------|------|------|
| OpenMAIC 分析 | [openmaic-analysis.md](./openmaic-analysis.md) | 清华大学 AI 教育平台深度分析 |
| 对比分析 | [openmaic-zclaw-comparison.md](./openmaic-zclaw-comparison.md) | OpenMAIC vs ZCLAW 功能对比 |
## 版本历史
| 日期 | 版本 | 变更 |
|------|------|------|
| 2026-03-19 | v2.0 | 重构为 ZCLAW 独立产品文档 |
| 2026-03-26 | v2.1 | 添加 OpenMAIC 深度分析,补充 StreamBuffer、Director、Action 引擎架构 |
| 2026-03-22 | v2.0 | 重构为 ZCLAW 独立产品文档,添加 OpenMAIC 对比分析 |
| 2026-03-14 | v1.1 | 添加 Hands 集成经验总结、功能清单 |
| 2026-03-14 | v1.0 | 初始创建 |

View File

@@ -1,7 +1,8 @@
# OpenMAIC 深度分析报告
> **来源**: https://github.com/THU-MAIC/OpenMAIC
> **分析日期**: 2026-03-22
> **本地路径**: G:\edu\OpenMAIC
> **分析日期**: 2026-03-22 (初版) / 2026-03-26 (深度分析)
> **许可证**: AGPL-3.0
## 1. 项目概述
@@ -556,3 +557,454 @@ skills/classroom-generator/SKILL.md # 课堂生成
- [ ] 创建教育类 Handswhiteboard、slideshow、speech、quiz
- [ ] 开发 classroom-generator Skill
- [ ] 增强工作流编排能力DAG、条件分支
---
## 11. 深度架构分析 (2026-03-26 补充)
### 11.1 Director Graph 核心实现
**文件**: `lib/orchestration/director-graph.ts`
#### 11.1.1 状态定义
```typescript
const OrchestratorState = Annotation.Root({
// 输入 (图入口时设置一次)
messages: Annotation<UIMessage<ChatMessageMetadata>[]>,
storeState: Annotation<{
stage: Stage | null;
scenes: Scene[];
currentSceneId: string | null;
mode: StageMode;
whiteboardOpen: boolean;
}>,
availableAgentIds: Annotation<string[]>,
maxTurns: Annotation<number>,
languageModel: Annotation<LanguageModel>,
triggerAgentId: Annotation<string | null>,
agentConfigOverrides: Annotation<Record<string, AgentConfig>>,
// 可变 (节点更新)
currentAgentId: Annotation<string | null>,
turnCount: Annotation<number>,
agentResponses: Annotation<AgentTurnSummary[]>({
reducer: (prev, update) => [...prev, ...update],
default: () => [],
}),
whiteboardLedger: Annotation<WhiteboardActionRecord[]>({
reducer: (prev, update) => [...prev, ...update],
default: () => [],
}),
shouldEnd: Annotation<boolean>,
totalActions: Annotation<number>,
});
```
#### 11.1.2 Director 节点核心逻辑
```typescript
async function directorNode(state, config) {
const write = config.writer as (chunk: StatelessEvent) => void;
const isSingleAgent = state.availableAgentIds.length <= 1;
// Turn limit check
if (state.turnCount >= state.maxTurns) {
return { shouldEnd: true };
}
// 单 Agent: 纯代码逻辑,无 LLM 调用
if (isSingleAgent) {
const agentId = state.availableAgentIds[0] || 'default-1';
if (state.turnCount === 0) {
write({ type: 'thinking', data: { stage: 'agent_loading', agentId } });
return { currentAgentId: agentId, shouldEnd: false };
}
write({ type: 'cue_user', data: { fromAgentId: agentId } });
return { shouldEnd: true };
}
// 多 Agent: 快速路径 - 触发 Agent
if (state.turnCount === 0 && state.triggerAgentId) {
const triggerId = state.triggerAgentId;
if (state.availableAgentIds.includes(triggerId)) {
write({ type: 'thinking', data: { stage: 'agent_loading', agentId: triggerId } });
return { currentAgentId: triggerId, shouldEnd: false };
}
}
// 多 Agent: LLM 决策
write({ type: 'thinking', data: { stage: 'director' } });
const prompt = buildDirectorPrompt(agents, conversationSummary, ...);
const result = await adapter._generate([new SystemMessage(prompt), ...]);
const decision = parseDirectorDecision(result.generations[0]?.text || '');
if (decision.nextAgentId === 'USER') {
write({ type: 'cue_user', data: { fromAgentId: state.currentAgentId } });
return { shouldEnd: true };
}
write({ type: 'thinking', data: { stage: 'agent_loading', agentId: decision.nextAgentId } });
return { currentAgentId: decision.nextAgentId, shouldEnd: false };
}
```
### 11.2 StreamBuffer 节奏控制
**文件**: `lib/buffer/stream-buffer.ts`
#### 11.2.1 设计目的
位于 SSE 流和 React 状态之间的统一内容展示节奏控制层:
- 固定速率 tick 循环逐字显示文本
- 按顺序触发 Action 回调
- 避免 LLM 流式输出和前端打字机的双重效果
#### 11.2.2 缓冲项类型
```typescript
type BufferItem =
| { kind: 'agent_start'; messageId: string; agentId: string; agentName: string; avatar?: string; color?: string }
| { kind: 'agent_end'; messageId: string; agentId: string }
| { kind: 'text'; messageId: string; agentId: string; partId: string; text: string; sealed: boolean }
| { kind: 'action'; messageId: string; actionId: string; actionName: string; params: Record<string, unknown>; agentId: string }
| { kind: 'thinking'; stage: string; agentId?: string }
| { kind: 'cue_user'; fromAgentId?: string; prompt?: string }
| { kind: 'done'; totalActions: number; totalAgents: number; directorState?: DirectorState }
| { kind: 'error'; message: string };
```
#### 11.2.3 回调接口
```typescript
interface StreamBufferCallbacks {
onAgentStart(data: AgentStartItem): void;
onAgentEnd(data: AgentEndItem): void;
onTextReveal(messageId: string, partId: string, revealedText: string, isComplete: boolean): void;
onActionReady(messageId: string, data: ActionItem): void;
onLiveSpeech(text: string | null, agentId: string | null): void; // Roundtable 实时语音
onSpeechProgress(ratio: number | null): void; // 播放进度
onThinking(data: { stage: string; agentId?: string } | null): void;
onCueUser(fromAgentId?: string, prompt?: string): void;
onDone(data: { totalActions: number; totalAgents: number; directorState?: DirectorState }): void;
onError(message: string): void;
}
```
#### 11.2.4 Tick 循环核心逻辑
```typescript
private tick(): void {
if (this._paused || this._disposed) return;
const item = this.items[this.readIndex];
if (!item) return;
switch (item.kind) {
case 'text': {
// 逐字显示
this.charCursor = Math.min(this.charCursor + this.charsPerTick, item.text.length);
const revealed = item.text.slice(0, this.charCursor);
const fullyRevealed = this.charCursor >= item.text.length;
const isComplete = fullyRevealed && item.sealed;
this.cb.onTextReveal(item.messageId, item.partId, revealed, isComplete);
this.cb.onLiveSpeech(revealed, this.currentAgentId);
this.cb.onSpeechProgress(item.text.length > 0 ? this.charCursor / item.text.length : 1);
if (isComplete) {
this.readIndex++;
this.charCursor = 0;
this.advanceNonText(); // 处理后续非文本项
}
break;
}
case 'action': {
this.cb.onActionReady(item.messageId, item);
this.readIndex++;
// Action 后延迟,让动画有时间播放
if (this.actionDelayTicks > 0) {
this._dwellTicksRemaining = this.actionDelayTicks;
}
break;
}
// ... 其他类型
}
}
```
#### 11.2.5 配置选项
```typescript
interface StreamBufferOptions {
tickMs?: number; // Tick 间隔,默认 30ms
charsPerTick?: number; // 每 tick 显示字符数,默认 1
postTextDelayMs?: number; // 文本完成后延迟
actionDelayMs?: number; // Action 后延迟
}
```
### 11.3 Action 引擎详细实现
**文件**: `lib/action/engine.ts`
#### 11.3.1 执行模式
| 模式 | 动作 | 行为 |
|------|------|------|
| **Fire-and-forget** | spotlight, laser | 立即返回,不等待 |
| **Synchronous** | speech, wb_*, play_video, discussion | 返回 Promise等待完成 |
#### 11.3.2 核心执行流程
```typescript
export class ActionEngine {
private stageStore: StageStore;
private audioPlayer: AudioPlayer | null;
private effectTimer: ReturnType<typeof setTimeout> | null = null;
async execute(action: Action): Promise<void> {
// 自动打开白板
if (action.type.startsWith('wb_') && action.type !== 'wb_open' && action.type !== 'wb_close') {
await this.ensureWhiteboardOpen();
}
switch (action.type) {
case 'spotlight':
this.executeSpotlight(action);
return; // Fire-and-forget
case 'speech':
return this.executeSpeech(action); // Synchronous
// ... 其他
}
}
// 视觉特效自动清除
private scheduleEffectClear(): void {
if (this.effectTimer) clearTimeout(this.effectTimer);
this.effectTimer = setTimeout(() => {
useCanvasStore.getState().clearAllEffects();
}, 5000); // 5 秒后自动清除
}
}
```
#### 11.3.3 白板动作实现
```typescript
private async executeWbDrawText(action: WbDrawTextAction): Promise<void> {
const wb = this.stageAPI.whiteboard.get();
if (!wb.success || !wb.data) return;
this.stageAPI.whiteboard.addElement({
id: action.elementId || '',
type: 'text',
content: action.content,
left: action.x,
top: action.y,
width: action.width ?? 400,
height: action.height ?? 100,
defaultColor: action.color ?? '#333333',
}, wb.data.id);
await delay(800); // 等待淡入动画
}
```
### 11.4 设置状态管理
**文件**: `lib/store/settings.ts`
#### 11.4.1 状态结构
```typescript
interface SettingsState {
// 模型选择
providerId: ProviderId;
modelId: string;
providersConfig: ProvidersConfig;
// TTS/ASR 设置
ttsProviderId: TTSProviderId;
ttsVoice: string;
ttsSpeed: number;
asrProviderId: ASRProviderId;
asrLanguage: string;
ttsProvidersConfig: Record<TTSProviderId, {...}>;
asrProvidersConfig: Record<ASRProviderId, {...}>;
// 媒体生成
imageProviderId: ImageProviderId;
imageModelId: string;
videoProviderId: VideoProviderId;
videoModelId: string;
imageGenerationEnabled: boolean;
videoGenerationEnabled: boolean;
// Web Search
webSearchProviderId: WebSearchProviderId;
webSearchProvidersConfig: Record<WebSearchProviderId, {...}>;
// Agent 设置
selectedAgentIds: string[];
maxTurns: string;
agentMode: 'preset' | 'auto';
autoAgentCount: number;
// 播放控制
ttsMuted: boolean;
ttsVolume: number;
autoPlayLecture: boolean;
playbackSpeed: PlaybackSpeed;
// 布局
sidebarCollapsed: boolean;
chatAreaCollapsed: boolean;
chatAreaWidth: number;
}
```
#### 11.4.2 持久化与迁移
```typescript
export const useSettingsStore = create<SettingsState>()(
persist(
(set) => ({ /* state and actions */ }),
{
name: 'settings-storage',
version: 2,
migrate: (persistedState, version) => {
// 版本迁移逻辑
if (version === 0) { /* ... */ }
if (version < 2) { /* ... */ }
return state;
},
merge: (persistedState, currentState) => {
// 合并内置 Provider 配置
const merged = { ...currentState, ...persistedState };
ensureBuiltInProviders(merged);
return merged;
},
},
),
);
```
#### 11.4.3 服务器配置合并
```typescript
fetchServerProviders: async () => {
const res = await fetch('/api/server-providers');
const data = await res.json();
set((state) => {
// 重置所有服务器标记
// 合并服务器配置
// 自动选择/启用 (仅首次)
return { /* updated state */ };
});
}
```
### 11.5 无状态请求设计
**文件**: `lib/types/chat.ts`
```typescript
interface StatelessChatRequest {
// 对话历史 (客户端维护)
messages: UIMessage<ChatMessageMetadata>[];
// 当前应用状态
storeState: {
stage: Stage | null;
scenes: Scene[];
currentSceneId: string | null;
mode: StageMode;
whiteboardOpen: boolean;
};
// Agent 配置
config: {
agentIds: string[];
sessionType?: 'qa' | 'discussion';
discussionTopic?: string;
triggerAgentId?: string;
agentConfigs?: Array<{...}>; // 动态生成的 Agent
};
// 跨轮次状态 (Director)
directorState?: DirectorState;
// 用户配置
userProfile?: { nickname?: string; bio?: string };
// API 凭证
apiKey: string;
baseUrl?: string;
model?: string;
}
```
### 11.6 SSE 事件类型完整定义
```typescript
type StatelessEvent =
| { type: 'agent_start'; data: { messageId, agentId, agentName, agentAvatar?, agentColor? } }
| { type: 'agent_end'; data: { messageId, agentId } }
| { type: 'text_delta'; data: { content, messageId? } }
| { type: 'action'; data: { actionId, actionName, params, agentId, messageId? } }
| { type: 'thinking'; data: { stage: 'director' | 'agent_loading'; agentId? } }
| { type: 'cue_user'; data: { fromAgentId?, prompt? } }
| { type: 'done'; data: { totalActions, totalAgents, agentHadContent?, directorState? } }
| { type: 'error'; data: { message } };
```
---
## 12. 对 ZCLAW 的关键借鉴点
### 12.1 StreamBuffer 节奏控制
**问题**: ZCLAW 目前可能存在 LLM 流式输出和前端打字机的双重效果
**解决方案**:
1. 引入类似 StreamBuffer 的中间层
2. 统一 Chat 和 Agent 回复的内容展示节奏
3. 支持暂停/恢复/刷新
### 12.2 Director 快速路径优化
**问题**: 每次都需要 LLM 决策下一个 Agent
**解决方案**:
1. 单 Agent 场景跳过 LLM 调用
2. 触发 Agent 场景直接调度
3. 仅多 Agent 复杂场景使用 LLM 决策
### 12.3 无状态设计
**问题**: ZCLAW 服务端 Session 管理复杂
**解决方案**:
1. 考虑将部分状态迁移到客户端
2. 服务端只做生成,不维护会话状态
3. 每次请求携带完整上下文
### 12.4 Action 引擎统一执行
**问题**: ZCLAW Hands 系统执行逻辑分散
**解决方案**:
1. 创建统一的 ActionEngine 类
2. 区分 Fire-and-forget 和 Synchronous 模式
3. 自动处理前置条件 (如白板自动打开)
### 12.5 设置版本迁移
**问题**: ZCLAW 配置更新时需要清理缓存
**解决方案**:
1. 实现 Zustand persist 的 migrate 函数
2. 支持 merge 函数合并新默认值
3. 保持用户配置不丢失

View File

@@ -1,6 +1,6 @@
# OpenMAIC vs ZCLAW 功能对比分析
> **分析日期**: 2026-03-22
> **分析日期**: 2026-03-22 (初版) / 2026-03-26 (深度分析)
> **目的**: 论证 ZCLAW 是否能实现 OpenMAIC 相同的产出
---
@@ -382,3 +382,261 @@ P2 (增强):
5. **课堂生成 Skill**
- `skills/classroom-generator/SKILL.md` - 完整的技能定义
---
## 7. 深度架构对比 (2026-03-26 补充)
### 7.1 流式响应处理对比
| 维度 | OpenMAIC | ZCLAW |
|------|----------|-------|
| **传输协议** | SSE (Server-Sent Events) | gRPC Stream / Tauri Events |
| **节奏控制** | StreamBuffer (中间层) | 无统一控制 |
| **打字机效果** | 单层 (StreamBuffer tick) | 可能双层 (LLM + 前端) |
| **暂停/恢复** | StreamBuffer.pause/resume | 需实现 |
| **刷新** | StreamBuffer.flush | 需实现 |
**OpenMAIC StreamBuffer 优势**:
- 统一的内容展示节奏控制
- 避免 LLM 流式输出和前端打字机的双重效果
- 精确控制 Action 触发时机
- 支持 Roundtable 实时语音显示
### 7.2 多 Agent 编排对比
| 维度 | OpenMAIC | ZCLAW |
|------|----------|-------|
| **编排引擎** | LangGraph StateGraph | 自定义 Director |
| **单 Agent 优化** | 纯代码逻辑,无 LLM | 需实现 |
| **多 Agent 决策** | LLM + 快速路径 | A2A Router |
| **状态传递** | OrchestratorState Annotation | DirectorState struct |
| **轮次管理** | turnCount + maxTurns | 需实现 |
**OpenMAIC Director 策略**:
```typescript
// 单 Agent: 纯代码逻辑
if (isSingleAgent) {
if (turnCount === 0) return { currentAgentId: agentId };
return { cueUser: true };
}
// 多 Agent: 快速路径
if (turnCount === 0 && triggerAgentId) {
return { currentAgentId: triggerAgentId };
}
// 多 Agent: LLM 决策
const decision = await llm.decide(agents, context);
return { currentAgentId: decision.nextAgentId };
```
### 7.3 工具/动作执行对比
| 维度 | OpenMAIC | ZCLAW |
|------|----------|-------|
| **执行引擎** | ActionEngine (统一类) | Hands (Trait) |
| **动作数量** | 28+ 种 | 8 个 Hand |
| **执行模式** | Fire-and-forget / Synchronous | needs_approval |
| **前置条件** | 自动处理 (如白板) | dependencies |
| **动画协调** | delay 等待 | 无 |
**OpenMAIC Action 分类**:
```typescript
// Fire-and-forget: 立即返回
case 'spotlight':
case 'laser':
executeImmediate(action);
return;
// Synchronous: 等待完成
case 'speech':
await playTTS(action);
return;
case 'wb_draw_text':
await drawOnWhiteboard(action);
await delay(800); // 等待动画
return;
```
### 7.4 状态管理对比
| 维度 | OpenMAIC | ZCLAW |
|------|----------|-------|
| **后端状态** | 无状态 | SQLite Session |
| **客户端状态** | Zustand + IndexedDB | Tauri 前端 |
| **持久化** | persist middleware | 需实现 |
| **版本迁移** | migrate 函数 | 需实现 |
| **服务器配置合并** | fetchServerProviders | 需实现 |
**OpenMAIC 无状态设计**:
- 所有状态由客户端维护
- 每次请求携带完整上下文
- 后端只做生成,不存储会话
- 便于水平扩展
### 7.5 提示词管理对比
| 维度 | OpenMAIC | ZCLAW |
|------|----------|-------|
| **Agent 提示词** | persona 字段 | SKILL.md |
| **系统提示词构建** | prompt-builder.ts | 需实现 |
| **上下文注入** | 结构化 (scene, whiteboard, etc.) | 需实现 |
| **Director 提示词** | director-prompt.ts | 无 |
### 7.6 媒体生成对比
| 维度 | OpenMAIC | ZCLAW |
|------|----------|-------|
| **图像生成** | 多 Provider (Seedream, Qwen, etc.) | 无 |
| **视频生成** | 多 Provider (Seedance, Kling, etc.) | 无 |
| **TTS** | 多 Provider (OpenAI, Azure, GLM, etc.) | speech.HAND.toml |
| **ASR** | 多 Provider (OpenAI, Qwen, etc.) | 无 |
---
## 8. ZCLAW 优化建议 (基于深度分析)
### 8.1 优先级 P0: StreamBuffer 实现
**目标**: 统一内容展示节奏控制
**实现步骤**:
1. 创建 `StreamBuffer`
2. 定义缓冲项类型
3. 实现 tick 循环
4. 连接到 Tauri 事件系统
**预期效果**:
- 消除双重打字机效果
- 支持暂停/恢复/刷新
- 精确控制 Action 触发
### 8.2 优先级 P1: Director 快速路径
**目标**: 优化单 Agent 场景性能
**实现步骤**:
1. 检测 Agent 数量
2. 单 Agent 场景跳过 LLM 决策
3. 触发 Agent 场景直接调度
4. 仅复杂场景使用 LLM
**预期效果**:
- 减少不必要的 LLM 调用
- 降低延迟
- 节省成本
### 8.3 优先级 P1: Action 引擎增强
**目标**: 统一动作执行接口
**实现步骤**:
1. 创建 `ActionEngine`
2. 区分 Fire-and-forget / Synchronous
3. 实现自动前置条件处理
4. 添加动画协调
**预期效果**:
- 统一的执行接口
- 更好的动画协调
- 更清晰的动作分类
### 8.4 优先级 P2: 设置版本迁移
**目标**: 支持配置升级不丢失
**实现步骤**:
1. 实现 Zustand persist migrate
2. 实现 merge 函数
3. 测试版本升级场景
**预期效果**:
- 配置升级无损
- 新默认值自动合并
---
## 9. 代码参考: StreamBuffer 核心实现
```typescript
// lib/buffer/stream-buffer.ts (OpenMAIC)
export class StreamBuffer {
private items: BufferItem[] = [];
private readIndex = 0;
private charCursor = 0;
private _paused = false;
private timer: ReturnType<typeof setInterval> | null = null;
constructor(
private cb: StreamBufferCallbacks,
private options?: StreamBufferOptions,
) {
this.tickMs = options?.tickMs ?? 30;
this.charsPerTick = options?.charsPerTick ?? 1;
}
start(): void {
if (this.timer) return;
this.timer = setInterval(() => this.tick(), this.tickMs);
}
pause(): void { this._paused = true; }
resume(): void { this._paused = false; }
flush(): void {
while (this.readIndex < this.items.length) {
// 立即处理所有项
}
}
private tick(): void {
if (this._paused) return;
const item = this.items[this.readIndex];
if (!item) return;
if (item.kind === 'text') {
this.charCursor = Math.min(this.charCursor + this.charsPerTick, item.text.length);
const revealed = item.text.slice(0, this.charCursor);
this.cb.onTextReveal(item.messageId, item.partId, revealed, ...);
if (this.charCursor >= item.text.length && item.sealed) {
this.readIndex++;
this.charCursor = 0;
}
}
// ... 其他类型
}
}
```
---
## 10. 总结
### 10.1 OpenMAIC 的核心优势
1. **StreamBuffer** - 统一的内容展示节奏控制
2. **Director 优化** - 单 Agent 场景无 LLM 调用
3. **无状态设计** - 易于水平扩展
4. **Action 引擎** - 统一的执行接口
5. **多 Provider** - 灵活的服务集成
### 10.2 ZCLAW 可直接借鉴
| 功能 | 复杂度 | 价值 |
|------|--------|------|
| StreamBuffer | 中 | 高 |
| Director 快速路径 | 低 | 高 |
| 设置迁移 | 低 | 中 |
| Action 模式分类 | 低 | 中 |
### 10.3 ZCLAW 需要自研
| 功能 | 原因 |
|------|------|
| Tauri 事件集成 | OpenMAIC 是 Web |
| SQLite 状态管理 | OpenMAIC 无状态 |
| Hands 执行实现 | OpenMAIC 有完整实现 |

View File

@@ -1569,6 +1569,101 @@ async fn load_skill_from_dir(&self, dir: &PathBuf) -> Result<()> {
---
## 10.4 Pipeline YAML 解析失败 - 类型不匹配
**症状**:
- Pipeline 列表显示为空Found 0 pipelines
- 后端调试日志显示扫描目录成功但没有找到任何 Pipeline
- 没有明显的错误消息
**根本原因**: YAML 文件中的字段类型与 Rust 类型定义不匹配
**问题分析**:
1. **FileExport action formats 字段类型不匹配**:
- Rust 定义:`formats: Vec<ExportFormat>`(枚举数组)
- YAML 写法:`formats: ${inputs.export_formats}`(表达式字符串)
- serde_yaml 无法将字符串解析为枚举数组,静默失败
2. **InputType serde rename_all 配置错误**:
- YAML 使用 `multi-select`kebab-case
- Rust serde 配置 `rename_all = "snake_case"`
- 期望 `multi_select` 但收到 `multi-select`,解析失败
**修复方案**:
1. **将 formats 字段改为 String 类型** (`types.rs`):
```rust
FileExport {
formats: String, // 从 Vec<ExportFormat> 改为 String
input: String,
output_dir: Option<String>,
}
```
2. **在运行时解析 formats 表达式** (`executor.rs`):
```rust
let resolved_formats = context.resolve(formats)?;
let format_strings: Vec<String> = if resolved_formats.is_array() {
resolved_formats.as_array()?
.iter()
.filter_map(|v| v.as_str().map(|s| s.to_string()))
.collect()
} else if resolved_formats.is_string() {
// 尝试解析为 JSON 数组
serde_json::from_str(s).unwrap_or_else(|_| vec![s.to_string()])
} else {
return Err(...);
};
// 转换为 ExportFormat 枚举
let export_formats: Vec<ExportFormat> = format_strings
.iter()
.filter_map(|s| match s.to_lowercase().as_str() {
"pptx" => Some(ExportFormat::Pptx),
"html" => Some(ExportFormat::Html),
"pdf" => Some(ExportFormat::Pdf),
"markdown" | "md" => Some(ExportFormat::Markdown),
"json" => Some(ExportFormat::Json),
_ => None,
})
.collect();
```
3. **修正 InputType serde 配置** (`types.rs`):
```rust
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "kebab-case")] // 从 snake_case 改为 kebab-case
pub enum InputType {
#[default]
String,
Number,
Boolean,
Select,
MultiSelect, // YAML 中写 multi-select
File,
Text,
}
```
**影响范围**:
- `crates/zclaw-pipeline/src/types.rs` - InputType serde, FileExport formats
- `crates/zclaw-pipeline/src/executor.rs` - 运行时解析 formats
- `pipelines/**/*.yaml` - 确保使用 `multi-select` 而非 `multi_select`
**验证修复**:
```
[DEBUG pipeline_list] Found 5 pipelines
[DEBUG pipeline_list] Pipeline: classroom-generator -> category: education, industry: 'education'
```
**最佳实践**:
- YAML 中的表达式(如 `${inputs.xxx}`)应该定义为 String 类型
- 在运行时通过 ExecutionContext.resolve() 解析表达式
- 使用 `kebab-case` 命名风格更符合 YAML 惯例
---
## 11. 相关文档
- [OpenFang 配置指南](./openfang-configuration.md) - 配置文件位置、格式和最佳实践

View File

@@ -0,0 +1,757 @@
# ZCLAW Agent 成长功能设计规格
> **版本**: 1.0
> **日期**: 2026-03-26
> **状态**: 已批准
> **作者**: Claude + 用户协作设计
---
## 一、概述
### 1.1 背景
ZCLAW 当前的学习系统存在**前后端分离问题**
- 前端有完整的学习逻辑 (`active-learning.ts`, `memory-extractor.ts`)
- 但这些学习结果存储在 localStorage/IndexedDB
- 后端执行系统 (Rust) 无法获取这些学习结果
- 导致 Agent 无法真正"成长"
### 1.2 目标
设计并实现完整的 Agent 成长功能,让 Agent 像个人管家一样:
- **记住偏好**:用户的沟通风格、回复格式、语言偏好等
- **积累知识**:从对话中学习用户相关事实、领域知识、经验教训
- **掌握技能**:记录技能/Hand 的使用模式,优化执行效率
### 1.3 需求决策
| 维度 | 决策 | 理由 |
|------|------|------|
| 成长维度 | 偏好 + 知识 + 技能(全部) | 完整的管家式成长体验 |
| 整合策略 | 完全后端化Rust 重写 | 避免前后端数据隔离问题 |
| 存储架构 | OpenViking 作为完整记忆层 | 利用现有的 L0/L1/L2 分层 + 语义搜索 |
| 学习触发 | 对话后自动 + 用户显式触发 | 平衡自动化和可控性 |
| 行为影响 | 智能检索 + Token 预算控制 | 解决长期使用后数据量过大的问题 |
---
## 二、系统架构
### 2.1 整体架构图
```
┌─────────────────────────────────────────────────────────────────┐
│ ZCLAW Agent 成长系统 │
├─────────────────────────────────────────────────────────────────┤
│ ┌─────────────────────────────────────────────────────────┐ │
│ │ zclaw-growth (新 Crate) │ │
│ │ ────────────────────────────────────────────────────── │ │
│ │ • MemoryExtractor - 从对话中提取偏好/知识/经验 │ │
│ │ • MemoryRetriever - 语义检索相关记忆 │ │
│ │ • PromptInjector - 动态构建 system_prompt │ │
│ │ • GrowthTracker - 追踪成长指标和演化 │ │
│ └─────────────────────────────────────────────────────────┘ │
│ │ │
│ ▼ │
│ ┌─────────────────────────────────────────────────────────┐ │
│ │ OpenViking (记忆层) │ │
│ │ ────────────────────────────────────────────────────── │ │
│ │ URI 结构: │ │
│ │ • agent://{id}/preferences/{category} - 用户偏好 │ │
│ │ • agent://{id}/knowledge/{domain} - 知识积累 │ │
│ │ • agent://{id}/experience/{skill} - 技能经验 │ │
│ │ • agent://{id}/sessions/{sid} - 对话历史 │ │
│ └─────────────────────────────────────────────────────────┘ │
│ │ │
│ ▼ │
│ ┌─────────────────────────────────────────────────────────┐ │
│ │ zclaw-runtime (修改) │ │
│ │ ────────────────────────────────────────────────────── │ │
│ │ AgentLoop 集成: │ │
│ │ 1. 对话前 → MemoryRetriever 检索相关记忆 │ │
│ │ 2. 构建请求 → PromptInjector 注入记忆 │ │
│ │ 3. 对话后 → MemoryExtractor 提取新记忆 │ │
│ └─────────────────────────────────────────────────────────┘ │
└─────────────────────────────────────────────────────────────────┘
```
### 2.2 数据流
```
用户输入
┌─────────────────────────────────────────┐
│ 1. 记忆检索 │
│ • 用当前输入查询 OpenViking │
│ • 召回 Top-5 相关记忆 │
│ • Token 预算控制 (500 tokens) │
└─────────────────────────────────────────┘
┌─────────────────────────────────────────┐
│ 2. Prompt 构建 │
│ system_prompt = base + │
│ "## 用户偏好\n" + preferences + │
│ "## 相关知识\n" + knowledge │
└─────────────────────────────────────────┘
┌─────────────────────────────────────────┐
│ 3. LLM 对话 │
│ • 正常的 AgentLoop 执行 │
└─────────────────────────────────────────┘
┌─────────────────────────────────────────┐
│ 4. 记忆提取 (对话后) │
│ • 分析对话内容 │
│ • 提取偏好/知识/经验 │
│ • 写入 OpenViking (L0/L1/L2) │
└─────────────────────────────────────────┘
```
### 2.3 OpenViking URI 结构
```
agent://{agent_id}/
├── preferences/
│ ├── communication-style # 沟通风格偏好
│ ├── response-format # 回复格式偏好
│ ├── language-preference # 语言偏好
│ └── topic-interests # 主题兴趣
├── knowledge/
│ ├── user-facts # 用户相关事实
│ ├── domain-knowledge # 领域知识
│ └── lessons-learned # 经验教训
├── experience/
│ ├── skill-{id} # 技能使用经验
│ └── hand-{id} # Hand 使用经验
└── sessions/
└── {session_id}/ # 对话历史
├── raw # 原始对话 (L0)
├── summary # 摘要 (L1)
└── keywords # 关键词 (L2)
```
---
## 三、详细设计
### 3.1 新 Crate 结构
```
crates/zclaw-growth/
├── Cargo.toml
├── src/
│ ├── lib.rs # 入口和公共 API
│ ├── extractor.rs # 记忆提取器
│ ├── retriever.rs # 记忆检索器
│ ├── injector.rs # Prompt 注入器
│ ├── tracker.rs # 成长追踪器
│ ├── types.rs # 类型定义
│ └── viking_adapter.rs # OpenViking 适配器
```
### 3.2 核心类型定义
```rust
// types.rs
/// 记忆类型
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum MemoryType {
Preference, // 偏好
Knowledge, // 知识
Experience, // 经验
Session, // 对话
}
/// 记忆条目
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MemoryEntry {
pub uri: String,
pub memory_type: MemoryType,
pub content: String,
pub keywords: Vec<String>,
pub importance: u8, // 1-10
pub access_count: u32,
pub created_at: DateTime<Utc>,
pub last_accessed: DateTime<Utc>,
}
/// 提取的记忆
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ExtractedMemory {
pub memory_type: MemoryType,
pub category: String,
pub content: String,
pub confidence: f32, // 提取置信度 0.0-1.0
pub source_session: SessionId,
}
/// 检索配置
#[derive(Debug, Clone)]
pub struct RetrievalConfig {
pub max_tokens: usize, // 总 Token 预算,默认 500
pub preference_budget: usize, // 偏好 Token 预算,默认 200
pub knowledge_budget: usize, // 知识 Token 预算,默认 200
pub experience_budget: usize, // 经验 Token 预算,默认 100
pub min_similarity: f32, // 最小相似度阈值,默认 0.7
pub max_results: usize, // 最大返回数量,默认 10
}
impl Default for RetrievalConfig {
fn default() -> Self {
Self {
max_tokens: 500,
preference_budget: 200,
knowledge_budget: 200,
experience_budget: 100,
min_similarity: 0.7,
max_results: 10,
}
}
}
/// 检索结果
#[derive(Debug, Clone, Default)]
pub struct RetrievalResult {
pub preferences: Vec<MemoryEntry>,
pub knowledge: Vec<MemoryEntry>,
pub experience: Vec<MemoryEntry>,
pub total_tokens: usize,
}
/// 提取配置
#[derive(Debug, Clone)]
pub struct ExtractionConfig {
pub extract_preferences: bool, // 是否提取偏好,默认 true
pub extract_knowledge: bool, // 是否提取知识,默认 true
pub extract_experience: bool, // 是否提取经验,默认 true
pub min_confidence: f32, // 最小置信度阈值,默认 0.6
}
impl Default for ExtractionConfig {
fn default() -> Self {
Self {
extract_preferences: true,
extract_knowledge: true,
extract_experience: true,
min_confidence: 0.6,
}
}
}
```
### 3.3 MemoryExtractor 接口
```rust
// extractor.rs
/// 记忆提取器 - 从对话中提取有价值的记忆
pub struct MemoryExtractor {
llm_driver: Arc<dyn LlmDriver>,
}
impl MemoryExtractor {
pub fn new(llm_driver: Arc<dyn LlmDriver>) -> Self {
Self { llm_driver }
}
/// 从对话中提取记忆
pub async fn extract(
&self,
messages: &[Message],
config: &ExtractionConfig,
) -> Result<Vec<ExtractedMemory>> {
let mut results = Vec::new();
if config.extract_preferences {
let prefs = self.extract_preferences(messages).await?;
results.extend(prefs);
}
if config.extract_knowledge {
let knowledge = self.extract_knowledge(messages).await?;
results.extend(knowledge);
}
if config.extract_experience {
let experience = self.extract_experience(messages).await?;
results.extend(experience);
}
// 过滤低置信度结果
results.retain(|m| m.confidence >= config.min_confidence);
Ok(results)
}
/// 提取偏好
async fn extract_preferences(
&self,
messages: &[Message],
) -> Result<Vec<ExtractedMemory>> {
// 使用 LLM 分析对话,提取用户偏好
// 例如:用户喜欢简洁的回复、用户偏好中文等
// ...
}
/// 提取知识
async fn extract_knowledge(
&self,
messages: &[Message],
) -> Result<Vec<ExtractedMemory>> {
// 使用 LLM 分析对话,提取有价值的事实和知识
// 例如:用户是程序员、用户在做一个 Rust 项目等
// ...
}
/// 提取经验
async fn extract_experience(
&self,
messages: &[Message],
) -> Result<Vec<ExtractedMemory>> {
// 分析对话中的技能/工具使用,提取经验教训
// 例如:某个技能执行失败、某个工具效果很好等
// ...
}
}
```
### 3.4 MemoryRetriever 接口
```rust
// retriever.rs
/// 记忆检索器 - 从 OpenViking 检索相关记忆
pub struct MemoryRetriever {
viking: Arc<VikingAdapter>,
}
impl MemoryRetriever {
pub fn new(viking: Arc<VikingAdapter>) -> Self {
Self { viking }
}
/// 检索与当前输入相关的记忆
pub async fn retrieve(
&self,
agent_id: &AgentId,
query: &str,
config: &RetrievalConfig,
) -> Result<RetrievalResult> {
// 1. 检索偏好
let preferences = self.retrieve_by_type(
agent_id,
MemoryType::Preference,
query,
config.max_results,
).await?;
// 2. 检索知识
let knowledge = self.retrieve_by_type(
agent_id,
MemoryType::Knowledge,
query,
config.max_results,
).await?;
// 3. 检索经验
let experience = self.retrieve_by_type(
agent_id,
MemoryType::Experience,
query,
config.max_results / 2,
).await?;
// 4. 计算 Token 使用
let total_tokens = self.estimate_tokens(&preferences, &knowledge, &experience);
Ok(RetrievalResult {
preferences,
knowledge,
experience,
total_tokens,
})
}
/// 按类型检索
async fn retrieve_by_type(
&self,
agent_id: &AgentId,
memory_type: MemoryType,
query: &str,
limit: usize,
) -> Result<Vec<MemoryEntry>> {
let scope = format!("agent://{}/{}", agent_id, memory_type_to_scope(&memory_type));
let results = self.viking.find(query, FindOptions {
scope: Some(scope),
limit: Some(limit),
level: Some("L1"), // 使用摘要级别
}).await?;
// 转换为 MemoryEntry
// ...
}
fn estimate_tokens(
&self,
preferences: &[MemoryEntry],
knowledge: &[MemoryEntry],
experience: &[MemoryEntry],
) -> usize {
// 简单估算:约 4 字符 = 1 token
let total_chars: usize = preferences.iter()
.chain(knowledge.iter())
.chain(experience.iter())
.map(|m| m.content.len())
.sum();
total_chars / 4
}
}
fn memory_type_to_scope(ty: &MemoryType) -> &'static str {
match ty {
MemoryType::Preference => "preferences",
MemoryType::Knowledge => "knowledge",
MemoryType::Experience => "experience",
MemoryType::Session => "sessions",
}
}
```
### 3.5 PromptInjector 接口
```rust
// injector.rs
/// Prompt 注入器 - 将记忆动态注入 system_prompt
pub struct PromptInjector {
config: RetrievalConfig,
}
impl PromptInjector {
pub fn new(config: RetrievalConfig) -> Self {
Self { config }
}
/// 构建增强的 system_prompt
pub fn inject(
&self,
base_prompt: &str,
memories: &RetrievalResult,
) -> String {
let mut result = base_prompt.to_string();
// 注入偏好
if !memories.preferences.is_empty() {
let prefs_section = self.format_preferences(
&memories.preferences,
self.config.preference_budget,
);
result.push_str("\n\n## 用户偏好\n");
result.push_str(&prefs_section);
}
// 注入知识
if !memories.knowledge.is_empty() {
let knowledge_section = self.format_knowledge(
&memories.knowledge,
self.config.knowledge_budget,
);
result.push_str("\n\n## 相关知识\n");
result.push_str(&knowledge_section);
}
// 注入经验
if !memories.experience.is_empty() {
let exp_section = self.format_experience(
&memories.experience,
self.config.experience_budget,
);
result.push_str("\n\n## 经验参考\n");
result.push_str(&exp_section);
}
result
}
fn format_preferences(&self, entries: &[MemoryEntry], budget: usize) -> String {
let mut result = String::new();
let mut used = 0;
for entry in entries.iter().take(5) { // 最多 5 条偏好
let line = format!("- {}\n", entry.content);
let line_tokens = line.len() / 4;
if used + line_tokens > budget {
break;
}
result.push_str(&line);
used += line_tokens;
}
result
}
fn format_knowledge(&self, entries: &[MemoryEntry], budget: usize) -> String {
// 类似 format_preferences
// ...
}
fn format_experience(&self, entries: &[MemoryEntry], budget: usize) -> String {
// 类似 format_preferences
// ...
}
}
```
### 3.6 AgentLoop 集成
修改 `crates/zclaw-runtime/src/loop_runner.rs`
```rust
pub struct AgentLoop {
agent_id: AgentId,
driver: Arc<dyn LlmDriver>,
tools: ToolRegistry,
memory: Arc<MemoryStore>,
model: String,
system_prompt: Option<String>,
max_tokens: u32,
temperature: f32,
skill_executor: Option<Arc<dyn SkillExecutor>>,
// 新增:成长系统
memory_retriever: Option<Arc<MemoryRetriever>>,
memory_extractor: Option<Arc<MemoryExtractor>>,
prompt_injector: Option<PromptInjector>,
growth_enabled: bool,
}
impl AgentLoop {
pub async fn run(&self, session_id: SessionId, input: String) -> Result<AgentLoopResult> {
// 1. 检索相关记忆 (新增)
let memories = if self.growth_enabled {
if let Some(retriever) = &self.memory_retriever {
retriever.retrieve(
&self.agent_id,
&input,
&RetrievalConfig::default(),
).await.unwrap_or_default()
} else {
RetrievalResult::default()
}
} else {
RetrievalResult::default()
};
// 2. 构建增强的 system_prompt (修改)
let enhanced_prompt = if self.growth_enabled {
if let Some(injector) = &self.prompt_injector {
injector.inject(
self.system_prompt.as_deref().unwrap_or(""),
&memories,
)
} else {
self.system_prompt.clone().unwrap_or_default()
}
} else {
self.system_prompt.clone().unwrap_or_default()
};
// 3. 添加用户消息
let user_message = Message::user(input);
self.memory.append_message(&session_id, &user_message).await?;
// 4. 获取完整上下文
let mut messages = self.memory.get_messages(&session_id).await?;
// 5. 执行 LLM 循环 (使用增强的 prompt)
let mut iterations = 0;
let max_iterations = 10;
loop {
// ... 现有的 LLM 循环逻辑
// 使用 enhanced_prompt 作为 system message
}
// 6. 对话结束后提取记忆 (新增)
if self.growth_enabled {
if let Some(extractor) = &self.memory_extractor {
let final_messages = self.memory.get_messages(&session_id).await?;
let extracted = extractor.extract(
&final_messages,
&ExtractionConfig::default(),
).await?;
// 写入 OpenViking
for memory in extracted {
// 通过 VikingAdapter 写入
}
}
}
Ok(result)
}
}
```
---
## 四、前端变化
### 4.1 新增组件
```typescript
// desktop/src/components/GrowthPanel.tsx
interface GrowthPanelProps {
agentId: string;
}
export function GrowthPanel({ agentId }: GrowthPanelProps) {
// 功能:
// - 显示 Agent 成长指标
// - 手动触发学习
// - 查看/编辑记忆
// - 配置学习参数
}
```
### 4.2 Store 扩展
```typescript
// desktop/src/store/agentStore.ts
interface AgentState {
// ... 现有字段
// 新增:成长相关
growthEnabled: boolean;
memoryStats: {
totalMemories: number;
preferences: number;
knowledge: number;
experience: number;
lastLearningTime: string | null;
};
}
```
### 4.3 Tauri Commands
```rust
// desktop/src-tauri/src/growth_commands.rs
#[tauri::command]
async fn get_memory_stats(agent_id: String) -> Result<MemoryStats, String>;
#[tauri::command]
async fn trigger_learning(agent_id: String, session_id: String) -> Result<Vec<ExtractedMemory>, String>;
#[tauri::command]
async fn get_memories(agent_id: String, memory_type: Option<String>) -> Result<Vec<MemoryEntry>, String>;
#[tauri::command]
async fn delete_memory(agent_id: String, uri: String) -> Result<(), String>;
#[tauri::command]
async fn update_memory(agent_id: String, uri: String, content: String) -> Result<(), String>;
```
---
## 五、执行计划
### 5.1 Phase 1: Crate 骨架 (1-2 天)
- [ ] 创建 `crates/zclaw-growth/` 目录结构
- [ ] 定义 `types.rs` 核心类型
- [ ] 设置 `Cargo.toml` 依赖
### 5.2 Phase 2: 检索系统 (2-3 天)
- [ ] 实现 `VikingAdapter` 封装
- [ ] 实现 `MemoryRetriever`
- [ ] 单元测试
### 5.3 Phase 3: 注入 + 集成 (2-3 天)
- [ ] 实现 `PromptInjector`
- [ ] 修改 `AgentLoop` 集成点
- [ ] 集成测试
### 5.4 Phase 4: 提取系统 (3-4 天)
- [ ] 实现 `MemoryExtractor`
- [ ] 设计 LLM prompt 模板
- [ ] 测试提取质量
### 5.5 Phase 5: 前端 UI (2-3 天)
- [ ] 实现 `GrowthPanel` 组件
- [ ] 扩展 Agent Store
- [ ] 添加 Tauri Commands
### 5.6 Phase 6: 测试 + 优化 (2-3 天)
- [ ] 端到端测试
- [ ] 性能优化
- [ ] 文档完善
**总计**: 约 12-18 天
---
## 六、关键文件路径
### 核心类型
- `crates/zclaw-types/src/agent.rs` - AgentConfig
- `crates/zclaw-types/src/message.rs` - Message
- `crates/zclaw-types/src/id.rs` - AgentId, SessionId
### 存储层
- `crates/zclaw-memory/src/store.rs` - MemoryStore
- `crates/zclaw-memory/src/schema.rs` - SQLite Schema
### 运行时
- `crates/zclaw-runtime/src/loop_runner.rs` - AgentLoop
### OpenViking 集成
- `desktop/src/lib/viking-client.ts` - 前端客户端
- `desktop/src-tauri/src/viking_commands.rs` - Tauri 命令
- `docs/features/03-context-database/00-openviking-integration.md` - 文档
### 前端学习系统(将被后端化)
- `desktop/src/lib/active-learning.ts`
- `desktop/src/lib/memory-extractor.ts`
- `desktop/src/store/activeLearningStore.ts`
---
## 七、风险与缓解
| 风险 | 影响 | 缓解措施 |
|------|------|---------|
| OpenViking 不可用 | 高 | 实现 LocalStorageAdapter 降级方案 |
| 记忆提取质量低 | 中 | 可配置的置信度阈值 + 人工审核 |
| Token 预算超限 | 中 | 严格的 Token 控制和截断 |
| 前端学习数据丢失 | 高 | 提供迁移脚本导入旧数据 |
---
## 八、新会话执行指南
在新会话中执行此方案时,请:
1. **阅读本文档**`docs/superpowers/specs/2026-03-26-agent-growth-design.md`
2. **参考计划文件**`plans/crispy-spinning-reef.md`(包含更多分析细节)
3. **从 Phase 1 开始**:创建 zclaw-growth crate 骨架
4. **遵循设计**:严格按照本文档的接口定义实现
5. **保持沟通**:如有疑问,与用户确认后再修改设计

View File

@@ -7,6 +7,7 @@ metadata:
name: classroom-generator
displayName: 互动课堂生成器
category: education
industry: education
description: 输入课题,自动生成结构化大纲、互动场景和课后测验
tags:
- 教育

View File

@@ -7,6 +7,7 @@ metadata:
name: contract-review
displayName: 合同智能审查
category: legal
industry: other
description: 上传合同文档AI 自动识别风险条款、合规问题,并生成修改建议
tags:
- 法律

View File

@@ -7,6 +7,7 @@ metadata:
name: marketing-campaign
displayName: 营销方案生成器
category: marketing
industry: internet
description: 输入产品/服务信息,自动生成目标受众分析、渠道策略、内容计划和执行时间表
tags:
- 营销

View File

@@ -7,6 +7,7 @@ metadata:
name: meeting-summary
displayName: 智能会议纪要
category: productivity
industry: other
description: 输入会议记录或转录文本,自动生成结构化会议纪要、待办事项和跟进计划
tags:
- 会议

View File

@@ -7,6 +7,7 @@ metadata:
name: literature-review
displayName: 文献综述生成器
category: research
industry: other
description: 输入研究主题,自动检索相关文献、分析关键观点、生成结构化综述报告
tags:
- 研究

View File

@@ -0,0 +1,327 @@
# ZCLAW Agent 成长功能设计方案
## 一、上下文
### 1.1 背景与目标
**问题**ZCLAW 的学习系统存在**前后端分离问题**——前端有完整的学习逻辑,但与后端执行系统完全隔离,导致 Agent 无法真正"成长"。
**目标**:设计并实现完整的 Agent 成长功能,让 Agent 像个人管家一样持续学习和进化。
### 1.2 需求总结
| 维度 | 决策 |
|------|------|
| 成长维度 | 偏好记忆 + 知识积累 + 技能掌握(全部) |
| 整合策略 | 完全后端化Rust 重写学习系统 |
| 存储架构 | OpenViking 作为完整记忆层 |
| 学习触发 | 对话后自动 + 用户显式触发 |
| 行为影响 | 智能检索 + 动态注入Token 预算控制) |
---
## 二、系统现状分析
### 2.1 Agent 核心架构
| 组件 | 位置 | 职责 |
|------|------|------|
| AgentConfig | `crates/zclaw-types/src/agent.rs` | Agent 静态配置 |
| AgentRegistry | `crates/zclaw-kernel/src/registry.rs` | 运行时注册管理 |
| AgentLoop | `crates/zclaw-runtime/src/loop_runner.rs` | LLM 执行循环 |
| Kernel | `crates/zclaw-kernel/src/kernel.rs` | 协调层 |
**关键问题**`AgentConfig` 是静态配置,没有成长相关字段。
### 2.2 记忆系统现状
| 能力 | 状态 | 说明 |
|------|------|------|
| 短期记忆 (Session) | ✅ 已实现 | SQLite sessions + messages 表 |
| KV 存储 | ✅ 已实现 | 未被学习系统使用 |
| 长期记忆检索 | ❌ 缺失 | 历史会话无法智能召回 |
| 语义检索 | ❌ 缺失 | 无向量嵌入或相似度搜索 |
| 智能摘要 | ❌ 缺失 | compact() 仅简单丢弃旧消息 |
### 2.3 现有资源
**OpenViking**(字节跳动开源的上下文数据库):
- 位置:`docs/features/03-context-database/00-openviking-integration.md`
- 能力L0/L1/L2 分层存储、语义搜索、本地部署
- 状态:已集成,成熟度 L4
---
## 三、设计方案
### 3.1 整体架构
```
┌─────────────────────────────────────────────────────────────────┐
│ ZCLAW Agent 成长系统 │
├─────────────────────────────────────────────────────────────────┤
│ ┌─────────────────────────────────────────────────────────┐ │
│ │ zclaw-growth (新 Crate) │ │
│ │ ────────────────────────────────────────────────────── │ │
│ │ • MemoryExtractor - 从对话中提取偏好/知识/经验 │ │
│ │ • MemoryRetriever - 语义检索相关记忆 │ │
│ │ • PromptInjector - 动态构建 system_prompt │ │
│ │ • GrowthTracker - 追踪成长指标和演化 │ │
│ └─────────────────────────────────────────────────────────┘ │
│ │ │
│ ▼ │
│ ┌─────────────────────────────────────────────────────────┐ │
│ │ OpenViking (记忆层) │ │
│ │ ────────────────────────────────────────────────────── │ │
│ │ URI 结构: │ │
│ │ • agent://{id}/preferences/{category} - 用户偏好 │ │
│ │ • agent://{id}/knowledge/{domain} - 知识积累 │ │
│ │ • agent://{id}/experience/{skill} - 技能经验 │ │
│ │ • agent://{id}/sessions/{sid} - 对话历史 │ │
│ └─────────────────────────────────────────────────────────┘ │
│ │ │
│ ▼ │
│ ┌─────────────────────────────────────────────────────────┐ │
│ │ zclaw-runtime (修改) │ │
│ │ ────────────────────────────────────────────────────── │ │
│ │ AgentLoop 集成: │ │
│ │ 1. 对话前 → MemoryRetriever 检索相关记忆 │ │
│ │ 2. 构建请求 → PromptInjector 注入记忆 │ │
│ │ 3. 对话后 → MemoryExtractor 提取新记忆 │ │
│ └─────────────────────────────────────────────────────────┘ │
└─────────────────────────────────────────────────────────────────┘
```
### 3.2 数据流
```
用户输入
┌─────────────────────────────────────────┐
│ 1. 记忆检索 │
│ • 用当前输入查询 OpenViking │
│ • 召回 Top-5 相关记忆 │
│ • Token 预算控制 (500 tokens) │
└─────────────────────────────────────────┘
┌─────────────────────────────────────────┐
│ 2. Prompt 构建 │
│ system_prompt = base + │
│ "## 用户偏好\n" + preferences + │
│ "## 相关知识\n" + knowledge │
└─────────────────────────────────────────┘
┌─────────────────────────────────────────┐
│ 3. LLM 对话 │
│ • 正常的 AgentLoop 执行 │
└─────────────────────────────────────────┘
┌─────────────────────────────────────────┐
│ 4. 记忆提取 (对话后) │
│ • 分析对话内容 │
│ • 提取偏好/知识/经验 │
│ • 写入 OpenViking (L0/L1/L2) │
└─────────────────────────────────────────┘
```
### 3.3 OpenViking URI 结构
```
agent://{agent_id}/
├── preferences/
│ ├── communication-style # 沟通风格偏好
│ ├── response-format # 回复格式偏好
│ ├── language-preference # 语言偏好
│ └── topic-interests # 主题兴趣
├── knowledge/
│ ├── user-facts # 用户相关事实
│ ├── domain-knowledge # 领域知识
│ └── lessons-learned # 经验教训
├── experience/
│ ├── skill-{id} # 技能使用经验
│ └── hand-{id} # Hand 使用经验
└── sessions/
└── {session_id}/ # 对话历史
├── raw # 原始对话 (L0)
├── summary # 摘要 (L1)
└── keywords # 关键词 (L2)
```
---
## 四、详细设计
### 4.1 新 Crate 结构
```
crates/zclaw-growth/
├── Cargo.toml
├── src/
│ ├── lib.rs # 入口和公共 API
│ ├── extractor.rs # 记忆提取器
│ ├── retriever.rs # 记忆检索器
│ ├── injector.rs # Prompt 注入器
│ ├── tracker.rs # 成长追踪器
│ ├── types.rs # 类型定义
│ └── viking_adapter.rs # OpenViking 适配器
```
### 4.2 核心数据结构
```rust
// types.rs
/// 记忆类型
pub enum MemoryType {
Preference, // 偏好
Knowledge, // 知识
Experience, // 经验
Session, // 对话
}
/// 记忆条目
pub struct MemoryEntry {
pub uri: String,
pub memory_type: MemoryType,
pub content: String,
pub keywords: Vec<String>,
pub importance: u8,
pub access_count: u32,
pub created_at: DateTime<Utc>,
pub last_accessed: DateTime<Utc>,
}
/// 检索配置
pub struct RetrievalConfig {
pub max_tokens: usize, // 默认 500
pub preference_budget: usize, // 默认 200
pub knowledge_budget: usize, // 默认 200
pub experience_budget: usize, // 默认 100
pub min_similarity: f32, // 默认 0.7
pub max_results: usize, // 默认 10
}
```
### 4.3 核心接口
```rust
// extractor.rs
pub struct MemoryExtractor {
llm_driver: Arc<dyn LlmDriver>,
}
impl MemoryExtractor {
pub async fn extract(
&self,
messages: &[Message],
config: &ExtractionConfig,
) -> Result<Vec<ExtractedMemory>>;
}
// retriever.rs
pub struct MemoryRetriever {
viking: Arc<VikingAdapter>,
}
impl MemoryRetriever {
pub async fn retrieve(
&self,
agent_id: &AgentId,
query: &str,
config: &RetrievalConfig,
) -> Result<RetrievalResult>;
}
// injector.rs
pub struct PromptInjector {
config: RetrievalConfig,
}
impl PromptInjector {
pub fn inject(
&self,
base_prompt: &str,
memories: &RetrievalResult,
) -> String;
}
```
### 4.4 AgentLoop 集成
修改 `crates/zclaw-runtime/src/loop_runner.rs`
```rust
pub struct AgentLoop {
// ... 现有字段
memory_retriever: Arc<MemoryRetriever>, // 新增
memory_extractor: Arc<MemoryExtractor>, // 新增
prompt_injector: PromptInjector, // 新增
growth_enabled: bool, // 新增
}
```
### 4.5 前端变化
- 新增组件:`desktop/src/components/GrowthPanel.tsx`
- 修改 Store`desktop/src/store/agentStore.ts` 添加成长状态
---
## 五、执行计划
### 5.1 知识库文档(本次任务)
创建以下文档到 `docs/knowledge-base/`
1. **agent-growth-analysis.md** - Agent 成长功能深度分析
2. **system-architecture-deep-dive.md** - 系统架构深度剖析
3. **growth-improvement-roadmap.md** - 成长功能改进路线图
### 5.2 实现阶段(后续任务)
| 阶段 | 内容 | 预估 |
|------|------|------|
| Phase 1 | zclaw-growth crate 骨架 + 类型定义 | 1-2 天 |
| Phase 2 | MemoryRetriever + VikingAdapter | 2-3 天 |
| Phase 3 | PromptInjector + AgentLoop 集成 | 2-3 天 |
| Phase 4 | MemoryExtractor (LLM 驱动) | 3-4 天 |
| Phase 5 | 前端 UI + 状态管理 | 2-3 天 |
| Phase 6 | 测试 + 优化 | 2-3 天 |
---
## 六、关键文件路径
### 核心类型
- `crates/zclaw-types/src/agent.rs` - AgentConfig
- `crates/zclaw-types/src/message.rs` - Message
- `crates/zclaw-types/src/id.rs` - AgentId, SessionId
### 存储层
- `crates/zclaw-memory/src/store.rs` - MemoryStore
- `crates/zclaw-memory/src/schema.rs` - SQLite Schema
### 运行时
- `crates/zclaw-runtime/src/loop_runner.rs` - AgentLoop
### OpenViking 集成
- `desktop/src/lib/viking-client.ts` - 前端客户端
- `desktop/src-tauri/src/viking_commands.rs` - Tauri 命令
- `docs/features/03-context-database/00-openviking-integration.md` - 文档
### 前端学习系统(将被后端化)
- `desktop/src/lib/active-learning.ts`
- `desktop/src/lib/memory-extractor.ts`
- `desktop/src/store/activeLearningStore.ts`
---
## 七、验证方式
1. **文档完整性**:确保所有章节内容完整,代码路径准确
2. **架构验证**:通过阅读代码确认流程图准确性
3. **可行性评估**:评估技术方案的实现难度和依赖

View File

@@ -0,0 +1,712 @@
# Pipeline 2.0 重构计划
> **目标**: 学习 OpenMAIC 输入→产出→展示流程,重构 ZCLAW Pipeline 系统
> **日期**: 2026-03-26
---
## 一、背景与问题
### 1.1 当前痛点
| 痛点 | 描述 |
|------|------|
| **输入体验差** | YAML 配置繁琐,不够自然语言化 |
| **输出展示单一** | 结果只是文本/文件,缺少丰富的交互式展示 |
### 1.2 学习目标
OpenMAIC 的核心流程:
```
输入 (自然语言/文档) → 生成 (多阶段 Pipeline) → 展示 (幻灯片/白板/测验/图表)
```
### 1.3 设计决策
| 决策点 | 用户选择 |
|--------|---------|
| **输入模式** | 混合式 - 简单任务对话,复杂任务表单 |
| **展示优先级** | P0: 图表+测验 → P1: 幻灯片+白板 |
| **展示决策** | LLM 推荐 + 用户可切换 |
---
## 二、整体架构
```
┌─────────────────────────────────────────────────────────────────┐
│ 用户界面层 │
│ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │
│ │ 💬 对话入口 │ │ 📋 快捷入口 │ │ ⚙️ 高级入口 │ │
│ └──────────────┘ └──────────────┘ └──────────────┘ │
└─────────────────────────────┬───────────────────────────────────┘
┌─────────────────────────────────────────────────────────────────┐
│ 🧠 智能入口层 (Intent Router) │
│ │
│ 职责: │
│ • 意图识别 - 理解用户想做什么 │
│ • Pipeline 匹配 - 找到合适的 Pipeline │
│ • 模式决策 - conversation / form / hybrid │
│ • 参数收集 - 对话收集或表单填充 │
└─────────────────────────────┬───────────────────────────────────┘
┌─────────────────────────────────────────────────────────────────┐
│ ⚡ 执行引擎层 (Engine v2) │
│ │
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
│ │ StageRunner │ │ ParallelMap │ │ Conditional │ │
│ │ (顺序阶段) │ │ (并行映射) │ │ (条件分支) │ │
│ └─────────────┘ └─────────────┘ └─────────────┘ │
│ │
│ 能力调用LLM / Skill / Hand / Tool │
└─────────────────────────────┬───────────────────────────────────┘
┌─────────────────────────────────────────────────────────────────┐
│ 🎨 智能展示层 (Presentation) │
│ │
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
│ │ 展示分析器 │ │ 渲染器注册表 │ │ 切换控制器 │ │
│ │ (LLM 推荐) │ │ (多类型) │ │ (用户干预) │ │
│ └─────────────┘ └─────────────┘ └─────────────┘ │
│ │
│ 渲染器Slideshow / Quiz / Chart / Whiteboard / Document │
└─────────────────────────────┬───────────────────────────────────┘
┌─────────────────────────────────────────────────────────────────┐
│ 数据持久层 │
│ │
│ • 执行历史 • 生成结果 • 用户偏好 • 模板缓存 │
└─────────────────────────────────────────────────────────────────┘
```
---
## 三、Pipeline 2.0 格式设计
### 3.1 新格式示例
```yaml
# pipelines/education/course-generator.yaml
apiVersion: zclaw/v2
kind: Pipeline
metadata:
name: course-generator
displayName: 课程生成器
description: 根据主题生成完整的互动课程
category: education
icon: 🎓
# 触发条件 - 支持自然语言匹配
trigger:
patterns:
- "帮我做*课程"
- "生成*教程"
- "我想学习{topic}"
keywords: [课程, 教程, 学习, 培训]
# 输入模式决策
input:
mode: auto # conversation | form | auto
# auto 模式:简单任务用对话,复杂任务用表单
complexity_threshold: 3 # 参数超过3个用表单
# 参数定义
params:
- name: topic
type: string
required: true
label: 课程主题
description: 你想学习什么内容?
placeholder: 例如机器学习基础、Python 入门
- name: level
type: select
label: 难度级别
options: [入门, 中级, 高级]
default: 入门
- name: duration
type: number
label: 预计时长(分钟)
default: 30
# 生成流程
stages:
- id: outline
type: llm
description: 生成课程大纲
prompt: |
为"{params.topic}"创建一个{params.level}级别的课程大纲。
预计学习时长:{params.duration}分钟。
输出 JSON 格式:
{
"title": "课程标题",
"sections": [
{"id": "s1", "title": "章节标题", "duration": 10}
]
}
output_schema: outline_schema
- id: content
type: parallel
description: 并行生成各章节内容
each: "${stages.outline.sections}"
stage:
type: llm
prompt: |
为章节"${item.title}"生成详细内容。
包含:讲解内容、示例、互动问题。
output_schema: section_schema
- id: assemble
type: compose
description: 组装完整课程
template: |
{
"title": "${stages.outline.title}",
"sections": ${stages.content},
"metadata": {
"level": "${params.level}",
"duration": ${params.duration}
}
}
# 输出定义
output:
type: dynamic # LLM 决定展示方式
allow_switch: true # 用户可切换
supported_types:
- slideshow # 幻灯片
- quiz # 测验
- document # 文档
- whiteboard # 白板
default_type: slideshow
```
### 3.2 格式对比
| 特性 | Pipeline v1 | Pipeline v2 |
|------|-------------|-------------|
| **触发方式** | 手动选择 | 自然语言匹配 |
| **输入模式** | 固定表单 | 对话/表单/自动 |
| **执行流程** | steps 数组 | stages + 类型 |
| **输出类型** | 文本/文件 | 动态展示组件 |
| **并行支持** | parallel action | parallel stage |
| **条件分支** | condition action | conditional stage |
---
## 四、智能入口层设计
### 4.1 触发器定义格式
```yaml
# Pipeline 中的 trigger 定义
trigger:
# 快速匹配 - 关键词
keywords: [课程, 教程, 学习, 培训]
# 快速匹配 - 正则模式
patterns:
- "帮我做*课程"
- "生成*教程"
- "我想学习{topic}"
# 语义匹配提示(用于 LLM 理解)
description: "根据用户主题生成完整的互动课程内容"
# 示例(帮助 LLM 匹配)
examples:
- "帮我做一个 Python 入门课程"
- "生成机器学习基础教程"
```
### 4.2 意图路由流程
```rust
pub async fn route(user_input: &str) -> RouteResult {
// Step 1: 快速匹配 (本地,< 10ms)
if let Some(pipeline) = quick_match(user_input) {
return prepare(pipeline, extracted_params);
}
// Step 2: 语义匹配 (LLM, ~200ms)
let intent = llm.analyze_intent(user_input).await;
let matched = semantic_match(&intent);
// Step 3: 模式决策
let mode = decide_mode(&matched);
RouteResult {
pipeline_id: matched.id,
mode, // conversation | form
params: intent.extracted_params,
confidence: intent.confidence,
}
}
```
### 4.3 参数收集模式
**对话模式** (简单任务,参数 ≤ 3):
```
用户: 帮我做一个 Python 入门课程
系统: 好的!课程预计多长时间学习?(默认 30 分钟)
用户: 1 小时吧
系统: 明白了,开始生成...
```
**表单模式** (复杂任务,参数 > 3):
```
系统检测到 Pipeline 有 5 个参数,自动显示表单:
┌─────────────────────────────────┐
│ 📚 课程生成器 │
├─────────────────────────────────┤
│ 课程主题: [Python 入门________] │
│ 难度级别: [▼ 入门] │
│ 预计时长: [60] 分钟 │
│ 目标受众: [________________] │
│ 特殊要求: [________________] │
│ │
│ [开始生成] │
└─────────────────────────────────┘
```
---
## 五、执行引擎层设计
### 5.1 Stage 类型体系
```rust
pub enum StageType {
/// LLM 生成阶段
Llm {
prompt: String, // 支持变量插值 {params.topic}
model: Option<String>, // 可选模型覆盖
temperature: Option<f32>,
output_schema: Option<JsonSchema>, // 结构化输出
},
/// 并行执行 - 遍历数组,每个元素执行子阶段
Parallel {
each: Expression, // 如 "${stages.outline.sections}"
stage: Box<StageType>, // 子阶段模板
max_workers: usize, // 并发数限制 (默认 3)
},
/// 顺序子阶段
Sequential {
stages: Vec<StageType>,
},
/// 条件分支
Conditional {
condition: Expression, // 如 "${params.level} == '高级'"
branches: HashMap<String, StageType>,
default: Option<Box<StageType>>,
},
/// 组合结果 - 模板拼接
Compose {
template: String, // JSON 模板
},
/// 调用 Skill
Skill {
skill_id: String,
input: HashMap<String, Expression>,
},
/// 调用 Hand
Hand {
hand_id: String,
action: String,
params: HashMap<String, Expression>,
},
}
```
### 5.2 执行上下文
```rust
pub struct ExecutionContext {
// 输入参数 (来自用户)
params: HashMap<String, Value>,
// 阶段输出 (累积)
stages: HashMap<String, Value>,
// 循环上下文 (Parallel 内部)
loop_context: Option<LoopContext>,
// 变量 (中间计算)
vars: HashMap<String, Value>,
// 执行状态
status: ExecutionStatus,
current_stage: Option<String>,
progress: f32,
}
pub struct LoopContext {
item: Value, // 当前元素
index: usize, // 索引
array: Vec<Value>,// 原数组
}
```
### 5.3 表达式系统
```yaml
# 支持的表达式语法
"${params.topic}" # 参数引用
"${stages.outline.sections}" # 阶段输出引用
"${item.title}" # 循环元素
"${index}" # 循环索引
"${vars.customVar}" # 变量引用
```
### 5.4 执行流程示例
```yaml
# 课程生成 Pipeline 执行流程
# Stage 1: outline (Llm)
输入: { params: { topic: "Python", level: "入门" } }
输出: { stages.outline: { title: "...", sections: [...] } }
# Stage 2: content (Parallel)
遍历: stages.outline.sections (假设 5 个章节)
并发: 3 个 worker
每个执行: Llm 生成章节内容
输出: { stages.content: [{...}, {...}, ...] }
# Stage 3: assemble (Compose)
模板: 组装完整课程 JSON
输出: 最终结果
```
### 5.5 进度回调
```rust
pub enum ExecutionEvent {
StageStart { stage_id: String },
StageProgress { stage_id: String, progress: f32 },
StageComplete { stage_id: String, output: Value },
ParallelProgress { completed: usize, total: usize },
Error { stage_id: String, message: String },
}
```
---
## 六、智能展示层设计
### 6.1 核心架构
```
Pipeline 执行结果
┌─────────────────────────────────────┐
│ Presentation Analyzer │
│ │
│ 1. 结构检测 (快速路径, < 5ms) │
│ 2. LLM 分析 (语义理解, ~300ms) │
│ 3. 推荐排序 (置信度排序) │
└─────────────────────────────────────┘
┌─────────────────────────────────────┐
│ Renderer Registry │
│ │
│ • Slideshow (幻灯片) │
│ • Quiz (测验) │
│ • Chart (图表) │
│ • Document (文档) │
│ • Whiteboard (白板) │
└─────────────────────────────────────┘
┌─────────────────────────────────────┐
│ Type Switcher │
│ │
│ 当前: [📊 图表] [📝 文档] [🎓 测验] │
│ 点击可切换展示方式 │
└─────────────────────────────────────┘
```
### 6.2 结构检测规则
```typescript
// 快速路径 - 基于数据结构自动判断
const detectionRules = [
// 幻灯片: 有 slides 数组
{
type: 'slideshow',
test: (data) => Array.isArray(data.slides) ||
(Array.isArray(data.sections) && data.sections.every(s => s.title && s.content))
},
// 测验: 有 quiz.questions 或 questions 数组
{
type: 'quiz',
test: (data) => data.quiz?.questions ||
(Array.isArray(data.questions) && data.questions[0]?.options)
},
// 图表: 有 chart/data 数组且元素是数值型
{
type: 'chart',
test: (data) => data.chart ||
(Array.isArray(data.data) && typeof data.data[0] === 'number') ||
data.xAxis || data.yAxis
},
// 白板: 有 canvas/elements/strokes
{
type: 'whiteboard',
test: (data) => data.canvas || data.strokes || data.elements
},
// 文档: 默认兜底
{ type: 'document', test: () => true }
];
```
### 6.3 LLM 分析提示词
```
分析以下 Pipeline 输出数据,推荐最佳展示方式。
数据结构: {json_structure}
数据摘要: {data_summary}
可选展示类型:
- slideshow: 分页展示,适合课程、汇报
- quiz: 互动测验,适合教育场景
- chart: 数据可视化,适合分析结果
- document: 文档阅读,适合长文本
- whiteboard: 实时标注,适合讲解
返回 JSON:
{
"primary": "推荐类型",
"confidence": 0.85,
"reason": "推荐原因",
"alternatives": ["其他适合的类型"]
}
```
### 6.4 渲染器接口
```typescript
export interface PresentationRenderer {
type: PresentationType;
name: string;
icon: string;
// 检查是否能渲染 (用于快速路径)
canRender(data: unknown): boolean;
// 渲染 React 组件
render(data: unknown): React.ReactNode;
// 导出格式支持
exportFormats?: ExportFormat[];
}
export type PresentationType =
| 'slideshow' // 幻灯片
| 'quiz' // 测验
| 'chart' // 图表
| 'document' // 文档
| 'whiteboard';// 白板
```
### 6.5 渲染器实现优先级
| 优先级 | 渲染器 | 技术方案 | 工作量 |
|--------|--------|---------|--------|
| **P0** | 📊 Chart | ECharts / Chart.js | 3 天 |
| **P0** | ✅ Quiz | 自定义表单组件 | 3 天 |
| **P1** | 📄 Document | Markdown 渲染 | 2 天 |
| **P1** | 🎨 Slideshow | reveal.js / Swiper | 5 天 |
| **P1** | 📝 Whiteboard | SVG Canvas | 7 天 |
### 6.6 用户切换流程
```
1. Pipeline 执行完成
2. Analyzer 推荐展示类型 (如 slideshow)
3. 渲染 slideshow
4. 显示切换器: [📊 幻灯片✓] [📝 文档] [🎓 测验]
5. 用户点击 "文档"
6. 立即切换到 DocumentRenderer
7. 记录用户偏好 (可选)
```
---
## 七、前端组件设计
### 7.1 新增组件
```
desktop/src/
├── components/
│ ├── pipeline/
│ │ ├── IntentInput.tsx # 智能输入组件
│ │ ├── ConversationCollector.tsx # 对话式参数收集
│ │ ├── PipelineSelector.tsx # Pipeline 选择器
│ │ └── ExecutionProgress.tsx # 执行进度
│ │
│ └── presentation/
│ ├── PresentationContainer.tsx # 展示容器
│ ├── TypeSwitcher.tsx # 类型切换器
│ ├── renderers/
│ │ ├── SlideshowRenderer.tsx
│ │ ├── QuizRenderer.tsx
│ │ ├── ChartRenderer.tsx
│ │ ├── WhiteboardRenderer.tsx
│ │ └── DocumentRenderer.tsx
│ └── analyzer/
│ └── PresentationAnalyzer.ts
├── store/
│ ├── pipelineStore.ts # Pipeline 状态
│ └── presentationStore.ts # 展示状态
└── lib/
├── intent-router.ts # 前端意图路由
└── presentation/
└── renderer-registry.ts # 渲染器注册表
```
### 7.2 UI 流程
```
用户输入 → IntentInput
意图分析 (显示推荐 Pipeline)
参数收集 (对话 or 表单)
执行 → ExecutionProgress
结果 → PresentationContainer
展示分析 → 推荐渲染器
渲染 + 切换器
```
---
## 八、实现计划
### Phase 1: 智能入口层 (1 周)
**目标**: 实现自然语言触发 Pipeline
| 任务 | 文件 | 说明 |
|------|------|------|
| Intent Router | `crates/zclaw-pipeline/src/intent.rs` | 意图识别和路由 |
| Trigger Parser | `crates/zclaw-pipeline/src/trigger.rs` | 触发模式解析 |
| IntentInput 组件 | `desktop/src/components/pipeline/IntentInput.tsx` | 前端输入组件 |
### Phase 2: Pipeline v2 格式 (1 周)
**目标**: 支持新格式定义
| 任务 | 文件 | 说明 |
|------|------|------|
| v2 Parser | `crates/zclaw-pipeline/src/parser_v2.rs` | 新格式解析 |
| Stage Engine | `crates/zclaw-pipeline/src/engine/stage.rs` | 阶段执行器 |
| Context v2 | `crates/zclaw-pipeline/src/engine/context.rs` | 执行上下文 |
### Phase 3: 智能展示层 - P0 (1 周)
**目标**: 实现图表和测验渲染器
| 任务 | 文件 | 说明 |
|------|------|------|
| Presentation Analyzer | `crates/zclaw-pipeline/src/presentation/` | 展示分析 |
| Chart Renderer | `desktop/src/components/presentation/renderers/ChartRenderer.tsx` | 图表渲染 |
| Quiz Renderer | `desktop/src/components/presentation/renderers/QuizRenderer.tsx` | 测验渲染 |
| Type Switcher | `desktop/src/components/presentation/TypeSwitcher.tsx` | 类型切换 |
### Phase 4: 智能展示层 - P1 (2 周)
**目标**: 实现幻灯片和白板渲染器
| 任务 | 文件 | 说明 |
|------|------|------|
| Slideshow Renderer | `desktop/src/components/presentation/renderers/SlideshowRenderer.tsx` | 幻灯片 |
| Whiteboard Renderer | `desktop/src/components/presentation/renderers/WhiteboardRenderer.tsx` | 白板 |
---
## 九、关键文件清单
### 9.1 需要修改的文件
| 文件 | 修改内容 |
|------|---------|
| `crates/zclaw-pipeline/src/lib.rs` | 导出新模块 |
| `crates/zclaw-pipeline/src/types.rs` | 添加 v2 类型 |
| `crates/zclaw-pipeline/src/executor.rs` | 支持 Stage 执行 |
| `desktop/src-tauri/src/pipeline_commands.rs` | 添加新命令 |
| `desktop/src/components/PipelinesPanel.tsx` | 集成新组件 |
### 9.2 需要新增的文件
| 文件 | 说明 |
|------|------|
| `crates/zclaw-pipeline/src/intent.rs` | 意图路由 |
| `crates/zclaw-pipeline/src/trigger.rs` | 触发器解析 |
| `crates/zclaw-pipeline/src/engine/stage.rs` | 阶段执行 |
| `crates/zclaw-pipeline/src/presentation/` | 展示层 |
| `desktop/src/components/pipeline/IntentInput.tsx` | 智能输入 |
| `desktop/src/components/presentation/` | 展示组件 |
---
## 十、验证方案
### 10.1 单元测试
```bash
# Pipeline v2 格式解析
cargo test -p zclaw-pipeline parser_v2
# 意图路由
cargo test -p zclaw-pipeline intent_router
# 阶段执行
cargo test -p zclaw-pipeline stage_engine
```
### 10.2 集成测试
```bash
# 端到端流程
1. 用户输入 "帮我做一个 Python 入门课程"
2. 系统识别意图 → 匹配 course-generator
3. 对话收集参数 (主题: Python, 难度: 入门)
4. 执行 Pipeline
5. 输出展示为幻灯片
6. 用户切换到文档模式
```
### 10.3 手动验证清单
- [ ] 自然语言触发 Pipeline
- [ ] 对话式参数收集
- [ ] 表单式参数输入
- [ ] 执行进度实时显示
- [ ] 图表正确渲染
- [ ] 测验交互正常
- [ ] 展示类型切换

View File

@@ -0,0 +1,307 @@
# 开箱即用的上下文记忆库方案 (简化版)
## 一、背景与目标
### 1.1 问题
当前 ZCLAW 的 OpenViking 集成需要用户独立安装 Python 包 (`pip install openviking`),不是开箱即用的。
### 1.2 关键发现 ⚠️
经过深入分析,发现 **zclaw-growth crate 已经实现了核心功能**
| 组件 | 文件 | 状态 |
|------|------|------|
| `VikingStorage` trait | `viking_adapter.rs` | ✅ 已实现 |
| `SqliteStorage` | `storage/sqlite.rs` | ⚠️ 只用内存缓存 |
| `SemanticScorer` (TF-IDF) | `retrieval/semantic.rs` | ✅ 已实现 |
| `MemoryExtractor` | `extractor.rs` | ✅ 已实现 |
| `MemoryRetriever` | `retriever.rs` | ✅ 已实现 |
| `PromptInjector` | `injector.rs` | ✅ 已实现 |
**问题**`SqliteStorage` 虽然名字是 SQLite但实际只用内存缓存`storage/sqlite.rs:96-99`)。
### 1.3 修订目标
- **完善现有实现**:让 `SqliteStorage` 真正持久化到 SQLite
- **集成 TF-IDF**:使用已有的 `SemanticScorer` 提供语义搜索
- **替换外部依赖**Tauri 命令使用 `SqliteStorage` 而非 Python 进程
- **无需 LanceDB**:现有 TF-IDF 方案已足够
## 二、简化方案
### 2.1 核心改动
| 改动 | 工作量 | 说明 |
|------|--------|------|
| 完善 `SqliteStorage` | 中 | 添加真正的 SQLite 持久化 |
| 集成 `SemanticScorer` | 小 | 替换简单的相似度计算 |
| 修改 `viking_commands.rs` | 中 | 使用 `SqliteStorage` 替代 Python 调用 |
| 删除 `viking_server.rs` | 小 | 不再需要服务器管理 |
### 2.2 架构对比
**当前架构** (需要外部 Python):
```
前端 → viking-client.ts → Tauri Commands → Python OpenViking 进程
```
**目标架构** (纯 Rust):
```
前端 → viking-client.ts → Tauri Commands → SqliteStorage (Rust)
→ SemanticScorer (TF-IDF)
→ ~/.zclaw/memories.db
```
## 三、架构设计
### 3.1 整体架构
```
┌─────────────────────────────────────────────────────────────────┐
│ ZCLAW Desktop (Tauri) │
│ │
│ ┌─────────────────┐ │
│ │ viking-client.ts│ (前端 API 保持不变) │
│ └────────┬────────┘ │
│ │ invoke() │
│ ┌────────▼────────────────────────────────────────────────────┐│
│ │ viking_commands.rs ││
│ │ (Tauri 命令层 - 接口不变,实现改为调用 zclaw-growth) ││
│ └────────┬────────────────────────────────────────────────────┘│
│ │ │
│ ┌────────▼────────────────────────────────────────────────────┐│
│ │ zclaw-growth (已存在) ││
│ │ ┌─────────────┐ ┌─────────────┐ ┌─────────────────────┐ ││
│ │ │SqliteStorage│ │SemanticScorer│ │ MemoryExtractor │ ││
│ │ │ (完善持久化)│ │ (TF-IDF) │ │ MemoryRetriever │ ││
│ │ └─────────────┘ └─────────────┘ │ PromptInjector │ ││
│ │ └─────────────────────┘ ││
│ └────────┬────────────────────────────────────────────────────┘│
│ │ │
│ ┌────────▼────────────────────────────────────────────────────┐│
│ │ 本地存储层 ││
│ │ ~/.zclaw/ ││
│ │ ├── memories.db (SQLite 持久化) ││
│ │ └── growth.json (成长指标) ││
│ └─────────────────────────────────────────────────────────────┘│
└─────────────────────────────────────────────────────────────────┘
```
### 3.2 模块变更
| 模块 | 位置 | 变更 |
|------|------|------|
| `SqliteStorage` | `crates/zclaw-growth/src/storage/sqlite.rs` | **完善**:添加真正的 SQLite 持久化 |
| `viking_commands.rs` | `desktop/src-tauri/src/viking_commands.rs` | **修改**:使用 SqliteStorage |
| `viking_server.rs` | `desktop/src-tauri/src/viking_server.rs` | **删除**:不再需要 |
### 3.3 数据模型 (已存在)
```rust
// crates/zclaw-growth/src/types.rs
pub struct MemoryEntry {
pub uri: String, // agent://{agent_id}/{type}/{category}
pub memory_type: MemoryType,
pub content: String,
pub keywords: Vec<String>,
pub importance: u8, // 1-10
pub access_count: u32,
pub created_at: DateTime<Utc>,
pub last_accessed: DateTime<Utc>,
}
pub enum MemoryType {
Preference, // 用户偏好
Knowledge, // 知识积累
Experience, // 技能经验
Session, // 会话历史
}
```
## 四、接口设计
### 4.1 保持兼容的 Tauri 命令
| 命令 | 功能 | 变化 |
|------|------|------|
| `viking_status` | 检查状态 | 返回 `available: true` (始终可用) |
| `viking_add` | 添加资源 | 内部使用 SqliteStorage |
| `viking_find` | 语义搜索 | 使用 TF-IDF + SQLite FTS |
| `viking_grep` | 模式搜索 | 使用 SQLite FTS |
| `viking_ls` | 列出资源 | 从 SQLite 读取 |
| `viking_read` | 读取内容 | 从 SQLite 读取 |
| `viking_remove` | 删除资源 | 从 SQLite 删除 |
| `viking_tree` | 资源树 | 从 SQLite 构建 |
### 4.2 移除的命令
| 命令 | 原因 |
|------|------|
| `viking_server_start` | 无需服务器 |
| `viking_server_stop` | 无需服务器 |
| `viking_server_status` | 无需服务器 |
## 五、实施计划
### Phase 1: 完善 SqliteStorage (1-2 天)
**任务 1.1: 添加 sqlx 依赖**
```toml
# crates/zclaw-growth/Cargo.toml
[dependencies]
sqlx = { workspace = true, features = ["runtime-tokio", "sqlite"] }
```
**任务 1.2: 实现真正的 SQLite 持久化**
- 文件: `crates/zclaw-growth/src/storage/sqlite.rs`
- 改动:
```rust
pub struct SqliteStorage {
pool: SqlitePool, // 替换 RwLock<HashMap>
scorer: SemanticScorer, // 添加语义评分器
}
```
- 功能:
- `initialize_schema()` - 创建 memories 表和 FTS5 索引
- `store()` - 写入 SQLite
- `get()` - 从 SQLite 读取
- `find()` - 使用 SemanticScorer + FTS
**任务 1.3: 集成 SemanticScorer**
- 替换 `compute_similarity()` 简单实现
- 使用已有的 TF-IDF 算法
### Phase 2: 修改 Tauri 命令 (1 天)
**任务 2.1: 修改 viking_commands.rs**
```rust
// 替换
async fn viking_find(...) {
let cli = get_viking_cli_path()?;
let output = Command::new(&cli).arg("find")...
}
// 为
lazy_static! {
static ref STORAGE: SqliteStorage = ...;
}
async fn viking_find(...) {
STORAGE.find(query, options).await
}
```
**任务 2.2: 删除 viking_server.rs**
- 移除服务器管理相关命令
- 更新 `lib.rs` 移除模块引用
**任务 2.3: 初始化存储**
- 在 `lib.rs` 的 `run()` 函数中初始化 `SqliteStorage`
- 存储路径: `~/.zclaw/memories.db`
### Phase 3: 测试与验证 (1 天)
**任务 3.1: 单元测试**
- 完善 `SqliteStorage` 测试
- 测试持久化和恢复
**任务 3.2: 集成测试**
- 端到端测试: 前端 → Tauri → SqliteStorage
- 验证 `viking_find` 返回语义相关结果
**任务 3.3: 验收测试**
- 启动 Tauri 后无需配置即可使用
- 打包体积无显著增加
## 六、文件变更清单
### 修改文件
| 文件 | 变更 |
|------|------|
| `crates/zclaw-growth/src/storage/sqlite.rs` | 添加真正的 SQLite 持久化 |
| `crates/zclaw-growth/Cargo.toml` | 添加 sqlx 依赖 |
| `desktop/src-tauri/src/viking_commands.rs` | 使用 SqliteStorage |
| `desktop/src-tauri/src/lib.rs` | 移除 viking_server 模块,初始化存储 |
### 删除文件
| 文件 | 原因 |
|------|------|
| `desktop/src-tauri/src/viking_server.rs` | 不再需要服务器管理 |
### 保持不变
| 文件 | 原因 |
|------|------|
| `desktop/src/lib/viking-client.ts` | API 兼容 |
| `desktop/src/components/VikingPanel.tsx` | UI 不变 |
| `crates/zclaw-growth/src/viking_adapter.rs` | 接口不变 |
| `crates/zclaw-growth/src/retrieval/semantic.rs` | TF-IDF 已实现 |
## 七、风险与缓解
| 风险 | 影响 | 缓解措施 |
|------|------|----------|
| SQLite FTS5 中文支持 | 搜索质量 | 使用 `unicode61` tokenizer |
| TF-IDF 语义理解有限 | 搜索精度 | 可选:后续添加 embedding API |
| 数据迁移 | 用户数据丢失 | localStorage 降级保留 |
## 八、验收标准
- [ ] 启动 Tauri 后无需任何配置即可使用记忆功能
- [ ] `viking_status` 返回 `available: true`
- [ ] `viking_find` 返回语义相关结果(基于 TF-IDF
- [ ] 数据持久化到 `~/.zclaw/memories.db`
- [ ] 打包体积无显著增加(< 1MB
- [ ] 所有现有测试通过
- [ ] 前端 API (`viking-client.ts`) 无需修改
## 九、与现有设计文档的关系
本方案是对 `docs/superpowers/specs/2026-03-26-agent-growth-design.md` 的**简化实现**
| 设计文档要求 | 本方案实现 |
|-------------|-----------|
| OpenViking 作为完整记忆层 | SqliteStorage (实现 VikingStorage trait) |
| 语义搜索 | TF-IDF (SemanticScorer) |
| L0/L1/L2 分层 | 已有实现,保持不变 |
| 记忆提取 | 已有 MemoryExtractor保持不变 |
**核心差异**:设计文档说用 OpenViking Python 包,本方案用纯 Rust 实现替代,保持接口兼容。
## 十、对系统架构的影响分析
### 10.1 正面影响
| 影响 | 说明 |
|------|------|
| **消除外部依赖** | 不再需要 Python 环境 |
| **降低复杂度** | 移除进程管理代码 |
| **提高可靠性** | 无进程启动失败风险 |
| **减少打包体积** | 无需打包 Python |
### 10.2 潜在风险
| 风险 | 影响 | 缓解措施 |
|------|------|----------|
| TF-IDF 语义理解不如 embedding | 搜索精度降低 | 后续可选添加 embedding API |
| 大量记忆时性能下降 | 查询变慢 | 添加分页、索引优化 |
### 10.3 功能完整性
| 功能 | 原方案 (OpenViking) | 新方案 (SqliteStorage) |
|------|---------------------|------------------------|
| 存储记忆 | ✅ | ✅ |
| 语义搜索 | ✅ embedding | ⚠️ TF-IDF (可接受) |
| URI 寻址 | ✅ | ✅ |
| L0/L1/L2 分层 | ✅ | ✅ 已有实现 |
| 记忆提取 | ✅ | ✅ 已有实现 |
| 记忆检索 | ✅ | ✅ 已有实现 |
| Prompt 注入 | ✅ | ✅ 已有实现 |
### 10.4 结论
**推荐采用简化方案**
1. 工作量小3-4 天 vs 7+ 天)
2. 风险低(复用现有代码)
3. 满足"开箱即用"核心需求
4. 后续可渐进增强(添加 embedding

View File

@@ -1,117 +1,16 @@
0.922897200s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: dependency on `zclaw_types` is newer than we are 13418916829.760500300s > 13418841600.589771800s "G:\\ZClaw_openfang\\crates\\zclaw-hands"
0.923421000s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: dependency on `zclaw_types` is newer than we are 13418916829.760500300s > 13418841601.430419500s "G:\\ZClaw_openfang\\crates\\zclaw-memory"
0.923495400s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: dependency on `zclaw_types` is newer than we are 13418916829.760500300s > 13418891623.705887800s "G:\\ZClaw_openfang\\crates\\zclaw-protocols"
0.926390800s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: dependency on `zclaw_types` is newer than we are 13418916829.760500300s > 13418848634.721969800s "G:\\ZClaw_openfang\\crates\\zclaw-skills"
0.929985100s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: fingerprint dirty for desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri)/Check { test: false }/TargetInner { ..: lib_target("desktop_lib", ["staticlib", "cdylib", "rlib"], "G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\lib.rs", Edition2021) }
0.930069200s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_runtime" })
1.135549700s INFO prepare_target{force=false package_id=zclaw-hands v0.1.0 (G:\ZClaw_openfang\crates\zclaw-hands) target="zclaw_hands"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-hands v0.1.0 (G:\ZClaw_openfang\crates\zclaw-hands)/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("zclaw_hands", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-hands\\src\\lib.rs", Edition2021) }
1.135626800s INFO prepare_target{force=false package_id=zclaw-hands v0.1.0 (G:\ZClaw_openfang\crates\zclaw-hands) target="zclaw_hands"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDependency { name: "zclaw_types", dep_mtime: FileTime { seconds: 13418916829, nanos: 760500300 }, max_mtime: FileTime { seconds: 13418841600, nanos: 589771800 } })
1.137912600s INFO prepare_target{force=false package_id=zclaw-kernel v0.1.0 (G:\ZClaw_openfang\crates\zclaw-kernel) target="zclaw_kernel"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-kernel v0.1.0 (G:\ZClaw_openfang\crates\zclaw-kernel)/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("zclaw_kernel", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-kernel\\src\\lib.rs", Edition2021) }
1.137956000s INFO prepare_target{force=false package_id=zclaw-kernel v0.1.0 (G:\ZClaw_openfang\crates\zclaw-kernel) target="zclaw_kernel"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_runtime" })
1.147603000s INFO prepare_target{force=false package_id=zclaw-memory v0.1.0 (G:\ZClaw_openfang\crates\zclaw-memory) target="zclaw_memory"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-memory v0.1.0 (G:\ZClaw_openfang\crates\zclaw-memory)/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("zclaw_memory", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-memory\\src\\lib.rs", Edition2021) }
1.147674700s INFO prepare_target{force=false package_id=zclaw-memory v0.1.0 (G:\ZClaw_openfang\crates\zclaw-memory) target="zclaw_memory"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDependency { name: "zclaw_types", dep_mtime: FileTime { seconds: 13418916829, nanos: 760500300 }, max_mtime: FileTime { seconds: 13418841601, nanos: 430419500 } })
1.149947300s INFO prepare_target{force=false package_id=zclaw-protocols v0.1.0 (G:\ZClaw_openfang\crates\zclaw-protocols) target="zclaw_protocols"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-protocols v0.1.0 (G:\ZClaw_openfang\crates\zclaw-protocols)/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("zclaw_protocols", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-protocols\\src\\lib.rs", Edition2021) }
1.149995900s INFO prepare_target{force=false package_id=zclaw-protocols v0.1.0 (G:\ZClaw_openfang\crates\zclaw-protocols) target="zclaw_protocols"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDependency { name: "zclaw_types", dep_mtime: FileTime { seconds: 13418916829, nanos: 760500300 }, max_mtime: FileTime { seconds: 13418891623, nanos: 705887800 } })
1.152247600s INFO prepare_target{force=false package_id=zclaw-runtime v0.1.0 (G:\ZClaw_openfang\crates\zclaw-runtime) target="zclaw_runtime"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-runtime v0.1.0 (G:\ZClaw_openfang\crates\zclaw-runtime)/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("zclaw_runtime", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-runtime\\src\\lib.rs", Edition2021) }
1.152292000s INFO prepare_target{force=false package_id=zclaw-runtime v0.1.0 (G:\ZClaw_openfang\crates\zclaw-runtime) target="zclaw_runtime"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_memory" })
1.163833800s INFO prepare_target{force=false package_id=zclaw-skills v0.1.0 (G:\ZClaw_openfang\crates\zclaw-skills) target="zclaw_skills"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-skills v0.1.0 (G:\ZClaw_openfang\crates\zclaw-skills)/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("zclaw_skills", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-skills\\src\\lib.rs", Edition2021) }
1.163913700s INFO prepare_target{force=false package_id=zclaw-skills v0.1.0 (G:\ZClaw_openfang\crates\zclaw-skills) target="zclaw_skills"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDependency { name: "zclaw_types", dep_mtime: FileTime { seconds: 13418916829, nanos: 760500300 }, max_mtime: FileTime { seconds: 13418848634, nanos: 721969800 } })
1.168615500s INFO prepare_target{force=false package_id=zclaw-pipeline v0.1.0 (G:\ZClaw_openfang\crates\zclaw-pipeline) target="zclaw_pipeline"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-pipeline v0.1.0 (G:\ZClaw_openfang\crates\zclaw-pipeline)/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("zclaw_pipeline", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-pipeline\\src\\lib.rs", Edition2021) }
1.168661300s INFO prepare_target{force=false package_id=zclaw-pipeline v0.1.0 (G:\ZClaw_openfang\crates\zclaw-pipeline) target="zclaw_pipeline"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_runtime" })
1.172581100s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: fingerprint dirty for desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri)/Check { test: true }/TargetInner { ..: lib_target("desktop_lib", ["staticlib", "cdylib", "rlib"], "G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\lib.rs", Edition2021) }
1.172627200s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_runtime" })
1.177268000s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop"}: cargo::core::compiler::fingerprint: fingerprint dirty for desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri)/Check { test: false }/TargetInner { name: "desktop", doc: true, ..: with_path("G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\main.rs", Edition2021) }
1.177313800s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_runtime" })
1.181924300s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop"}: cargo::core::compiler::fingerprint: fingerprint dirty for desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri)/Check { test: true }/TargetInner { name: "desktop", doc: true, ..: with_path("G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\main.rs", Edition2021) }
1.181967200s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_runtime" })
1.198164400s INFO prepare_target{force=false package_id=zclaw-channels v0.1.0 (G:\ZClaw_openfang\crates\zclaw-channels) target="zclaw_channels"}: cargo::core::compiler::fingerprint: dependency on `zclaw_types` is newer than we are 13418916829.760500300s > 13418841600.589771800s "G:\\ZClaw_openfang\\crates\\zclaw-channels"
1.208319500s INFO prepare_target{force=false package_id=zclaw-channels v0.1.0 (G:\ZClaw_openfang\crates\zclaw-channels) target="zclaw_channels"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-channels v0.1.0 (G:\ZClaw_openfang\crates\zclaw-channels)/Check { test: false }/TargetInner { name_inferred: true, ..: lib_target("zclaw_channels", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-channels\\src\\lib.rs", Edition2021) }
1.208387500s INFO prepare_target{force=false package_id=zclaw-channels v0.1.0 (G:\ZClaw_openfang\crates\zclaw-channels) target="zclaw_channels"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDependency { name: "zclaw_types", dep_mtime: FileTime { seconds: 13418916829, nanos: 760500300 }, max_mtime: FileTime { seconds: 13418841600, nanos: 589771800 } })
1.210146500s INFO prepare_target{force=false package_id=zclaw-channels v0.1.0 (G:\ZClaw_openfang\crates\zclaw-channels) target="zclaw_channels"}: cargo::core::compiler::fingerprint: dependency on `zclaw_types` is newer than we are 13418916829.760500300s > 13418841600.589771800s "G:\\ZClaw_openfang\\crates\\zclaw-channels"
1.214519000s INFO prepare_target{force=false package_id=zclaw-channels v0.1.0 (G:\ZClaw_openfang\crates\zclaw-channels) target="zclaw_channels"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-channels v0.1.0 (G:\ZClaw_openfang\crates\zclaw-channels)/Check { test: true }/TargetInner { name_inferred: true, ..: lib_target("zclaw_channels", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-channels\\src\\lib.rs", Edition2021) }
1.214582800s INFO prepare_target{force=false package_id=zclaw-channels v0.1.0 (G:\ZClaw_openfang\crates\zclaw-channels) target="zclaw_channels"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDependency { name: "zclaw_types", dep_mtime: FileTime { seconds: 13418916829, nanos: 760500300 }, max_mtime: FileTime { seconds: 13418841600, nanos: 589771800 } })
1.216402100s INFO prepare_target{force=false package_id=zclaw-hands v0.1.0 (G:\ZClaw_openfang\crates\zclaw-hands) target="zclaw_hands"}: cargo::core::compiler::fingerprint: dependency on `zclaw_types` is newer than we are 13418916829.760500300s > 13418841600.589771800s "G:\\ZClaw_openfang\\crates\\zclaw-hands"
1.223925200s INFO prepare_target{force=false package_id=zclaw-hands v0.1.0 (G:\ZClaw_openfang\crates\zclaw-hands) target="zclaw_hands"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-hands v0.1.0 (G:\ZClaw_openfang\crates\zclaw-hands)/Check { test: true }/TargetInner { name_inferred: true, ..: lib_target("zclaw_hands", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-hands\\src\\lib.rs", Edition2021) }
1.223996900s INFO prepare_target{force=false package_id=zclaw-hands v0.1.0 (G:\ZClaw_openfang\crates\zclaw-hands) target="zclaw_hands"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDependency { name: "zclaw_types", dep_mtime: FileTime { seconds: 13418916829, nanos: 760500300 }, max_mtime: FileTime { seconds: 13418841600, nanos: 589771800 } })
1.226175000s INFO prepare_target{force=false package_id=zclaw-kernel v0.1.0 (G:\ZClaw_openfang\crates\zclaw-kernel) target="zclaw_kernel"}: cargo::core::compiler::fingerprint: fingerprint error for zclaw-kernel v0.1.0 (G:\ZClaw_openfang\crates\zclaw-kernel)/Check { test: true }/TargetInner { name_inferred: true, ..: lib_target("zclaw_kernel", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-kernel\\src\\lib.rs", Edition2021) }
1.226205800s INFO prepare_target{force=false package_id=zclaw-kernel v0.1.0 (G:\ZClaw_openfang\crates\zclaw-kernel) target="zclaw_kernel"}: cargo::core::compiler::fingerprint: err: failed to read `G:\ZClaw_openfang\target\debug\.fingerprint\zclaw-kernel-65dc5b27ee3aab21\test-lib-zclaw_kernel`
Caused by:
系统找不到指定的文件。 (os error 2)
Stack backtrace:
0: git_midx_writer_dump
1: git_midx_writer_dump
2: git_midx_writer_dump
3: git_midx_writer_dump
4: git_filter_source_repo
5: git_filter_source_repo
6: git_filter_source_repo
7: git_filter_source_repo
8: git_filter_source_repo
9: git_filter_source_repo
10: git_filter_source_repo
11: git_libgit2_prerelease
12: <unknown>
13: <unknown>
14: <unknown>
15: <unknown>
16: git_midx_writer_dump
17: git_filter_source_repo
18: git_midx_writer_dump
19: BaseThreadInitThunk
20: RtlUserThreadStart
1.247442700s INFO prepare_target{force=false package_id=zclaw-memory v0.1.0 (G:\ZClaw_openfang\crates\zclaw-memory) target="zclaw_memory"}: cargo::core::compiler::fingerprint: dependency on `zclaw_types` is newer than we are 13418916829.760500300s > 13418841601.430419500s "G:\\ZClaw_openfang\\crates\\zclaw-memory"
1.251083600s INFO prepare_target{force=false package_id=zclaw-memory v0.1.0 (G:\ZClaw_openfang\crates\zclaw-memory) target="zclaw_memory"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-memory v0.1.0 (G:\ZClaw_openfang\crates\zclaw-memory)/Check { test: true }/TargetInner { name_inferred: true, ..: lib_target("zclaw_memory", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-memory\\src\\lib.rs", Edition2021) }
1.251155600s INFO prepare_target{force=false package_id=zclaw-memory v0.1.0 (G:\ZClaw_openfang\crates\zclaw-memory) target="zclaw_memory"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDependency { name: "zclaw_types", dep_mtime: FileTime { seconds: 13418916829, nanos: 760500300 }, max_mtime: FileTime { seconds: 13418841601, nanos: 430419500 } })
1.254252100s INFO prepare_target{force=false package_id=zclaw-pipeline v0.1.0 (G:\ZClaw_openfang\crates\zclaw-pipeline) target="zclaw_pipeline"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-pipeline v0.1.0 (G:\ZClaw_openfang\crates\zclaw-pipeline)/Check { test: true }/TargetInner { name_inferred: true, ..: lib_target("zclaw_pipeline", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-pipeline\\src\\lib.rs", Edition2021) }
1.254303900s INFO prepare_target{force=false package_id=zclaw-pipeline v0.1.0 (G:\ZClaw_openfang\crates\zclaw-pipeline) target="zclaw_pipeline"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_runtime" })
1.257882600s INFO prepare_target{force=false package_id=zclaw-protocols v0.1.0 (G:\ZClaw_openfang\crates\zclaw-protocols) target="zclaw_protocols"}: cargo::core::compiler::fingerprint: dependency on `zclaw_types` is newer than we are 13418916829.760500300s > 13418891623.712023600s "G:\\ZClaw_openfang\\crates\\zclaw-protocols"
1.258179800s INFO prepare_target{force=false package_id=zclaw-protocols v0.1.0 (G:\ZClaw_openfang\crates\zclaw-protocols) target="zclaw_protocols"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-protocols v0.1.0 (G:\ZClaw_openfang\crates\zclaw-protocols)/Check { test: true }/TargetInner { name_inferred: true, ..: lib_target("zclaw_protocols", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-protocols\\src\\lib.rs", Edition2021) }
1.258209500s INFO prepare_target{force=false package_id=zclaw-protocols v0.1.0 (G:\ZClaw_openfang\crates\zclaw-protocols) target="zclaw_protocols"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDependency { name: "zclaw_types", dep_mtime: FileTime { seconds: 13418916829, nanos: 760500300 }, max_mtime: FileTime { seconds: 13418891623, nanos: 712023600 } })
1.260827400s INFO prepare_target{force=false package_id=zclaw-runtime v0.1.0 (G:\ZClaw_openfang\crates\zclaw-runtime) target="zclaw_runtime"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-runtime v0.1.0 (G:\ZClaw_openfang\crates\zclaw-runtime)/Check { test: true }/TargetInner { name_inferred: true, ..: lib_target("zclaw_runtime", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-runtime\\src\\lib.rs", Edition2021) }
1.260872800s INFO prepare_target{force=false package_id=zclaw-runtime v0.1.0 (G:\ZClaw_openfang\crates\zclaw-runtime) target="zclaw_runtime"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "zclaw_memory" })
1.264121700s INFO prepare_target{force=false package_id=zclaw-skills v0.1.0 (G:\ZClaw_openfang\crates\zclaw-skills) target="zclaw_skills"}: cargo::core::compiler::fingerprint: fingerprint error for zclaw-skills v0.1.0 (G:\ZClaw_openfang\crates\zclaw-skills)/Check { test: true }/TargetInner { name_inferred: true, ..: lib_target("zclaw_skills", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-skills\\src\\lib.rs", Edition2021) }
1.264165900s INFO prepare_target{force=false package_id=zclaw-skills v0.1.0 (G:\ZClaw_openfang\crates\zclaw-skills) target="zclaw_skills"}: cargo::core::compiler::fingerprint: err: failed to read `G:\ZClaw_openfang\target\debug\.fingerprint\zclaw-skills-fb9548b49c132750\test-lib-zclaw_skills`
Caused by:
系统找不到指定的文件。 (os error 2)
Stack backtrace:
0: git_midx_writer_dump
1: git_midx_writer_dump
2: git_midx_writer_dump
3: git_midx_writer_dump
4: git_filter_source_repo
5: git_filter_source_repo
6: git_filter_source_repo
7: git_filter_source_repo
8: git_filter_source_repo
9: git_filter_source_repo
10: git_filter_source_repo
11: git_libgit2_prerelease
12: <unknown>
13: <unknown>
14: <unknown>
15: <unknown>
16: git_midx_writer_dump
17: git_filter_source_repo
18: git_midx_writer_dump
19: BaseThreadInitThunk
20: RtlUserThreadStart
1.266243500s INFO prepare_target{force=false package_id=zclaw-types v0.1.0 (G:\ZClaw_openfang\crates\zclaw-types) target="zclaw_types"}: cargo::core::compiler::fingerprint: stale: changed "G:\\ZClaw_openfang\\crates\\zclaw-types\\src\\message.rs"
1.266311500s INFO prepare_target{force=false package_id=zclaw-types v0.1.0 (G:\ZClaw_openfang\crates\zclaw-types) target="zclaw_types"}: cargo::core::compiler::fingerprint: (vs) "G:\\ZClaw_openfang\\target\\debug\\.fingerprint\\zclaw-types-142f1e3c72d40f3d\\dep-test-lib-zclaw_types"
1.266322300s INFO prepare_target{force=false package_id=zclaw-types v0.1.0 (G:\ZClaw_openfang\crates\zclaw-types) target="zclaw_types"}: cargo::core::compiler::fingerprint: FileTime { seconds: 13418835266, nanos: 759837000 } < FileTime { seconds: 13418909070, nanos: 4701100 }
1.276211600s INFO prepare_target{force=false package_id=zclaw-types v0.1.0 (G:\ZClaw_openfang\crates\zclaw-types) target="zclaw_types"}: cargo::core::compiler::fingerprint: fingerprint dirty for zclaw-types v0.1.0 (G:\ZClaw_openfang\crates\zclaw-types)/Check { test: true }/TargetInner { name_inferred: true, ..: lib_target("zclaw_types", ["lib"], "G:\\ZClaw_openfang\\crates\\zclaw-types\\src\\lib.rs", Edition2021) }
1.276273400s INFO prepare_target{force=false package_id=zclaw-types v0.1.0 (G:\ZClaw_openfang\crates\zclaw-types) target="zclaw_types"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleItem(ChangedFile { reference: "G:\\ZClaw_openfang\\target\\debug\\.fingerprint\\zclaw-types-142f1e3c72d40f3d\\dep-test-lib-zclaw_types", reference_mtime: FileTime { seconds: 13418835266, nanos: 759837000 }, stale: "G:\\ZClaw_openfang\\crates\\zclaw-types\\src\\message.rs", stale_mtime: FileTime { seconds: 13418909070, nanos: 4701100 } }))
Checking zclaw-memory v0.1.0 (G:\ZClaw_openfang\crates\zclaw-memory)
Checking zclaw-protocols v0.1.0 (G:\ZClaw_openfang\crates\zclaw-protocols)
Checking zclaw-skills v0.1.0 (G:\ZClaw_openfang\crates\zclaw-skills)
Checking zclaw-hands v0.1.0 (G:\ZClaw_openfang\crates\zclaw-hands)
Checking zclaw-channels v0.1.0 (G:\ZClaw_openfang\crates\zclaw-channels)
Checking zclaw-types v0.1.0 (G:\ZClaw_openfang\crates\zclaw-types)
Checking zclaw-runtime v0.1.0 (G:\ZClaw_openfang\crates\zclaw-runtime)
Checking zclaw-kernel v0.1.0 (G:\ZClaw_openfang\crates\zclaw-kernel)
Checking zclaw-pipeline v0.1.0 (G:\ZClaw_openfang\crates\zclaw-pipeline)
0.568456200s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: stale: changed "G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\memory\\extractor.rs"
0.568494000s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: (vs) "G:\\ZClaw_openfang\\target\\debug\\.fingerprint\\desktop-b0389b12cc52cec0\\dep-lib-desktop_lib"
0.568500400s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: FileTime { seconds: 13418983010, nanos: 502515400 } < FileTime { seconds: 13418983215, nanos: 718200300 }
0.569228700s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: fingerprint dirty for desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri)/Check { test: false }/TargetInner { ..: lib_target("desktop_lib", ["staticlib", "cdylib", "rlib"], "G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\lib.rs", Edition2021) }
0.569272700s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleItem(ChangedFile { reference: "G:\\ZClaw_openfang\\target\\debug\\.fingerprint\\desktop-b0389b12cc52cec0\\dep-lib-desktop_lib", reference_mtime: FileTime { seconds: 13418983010, nanos: 502515400 }, stale: "G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\memory\\extractor.rs", stale_mtime: FileTime { seconds: 13418983215, nanos: 718200300 } }))
0.681523600s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: stale: changed "G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\viking_commands.rs"
0.681545600s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: (vs) "G:\\ZClaw_openfang\\target\\debug\\.fingerprint\\desktop-e51cca74c3c628e8\\dep-test-lib-desktop_lib"
0.681552800s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: FileTime { seconds: 13418983010, nanos: 502515400 } < FileTime { seconds: 13418983231, nanos: 975428100 }
0.681701800s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: fingerprint dirty for desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri)/Check { test: true }/TargetInner { ..: lib_target("desktop_lib", ["staticlib", "cdylib", "rlib"], "G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\lib.rs", Edition2021) }
0.681725100s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop_lib"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleItem(ChangedFile { reference: "G:\\ZClaw_openfang\\target\\debug\\.fingerprint\\desktop-e51cca74c3c628e8\\dep-test-lib-desktop_lib", reference_mtime: FileTime { seconds: 13418983010, nanos: 502515400 }, stale: "G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\viking_commands.rs", stale_mtime: FileTime { seconds: 13418983231, nanos: 975428100 } }))
0.684515900s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop"}: cargo::core::compiler::fingerprint: fingerprint dirty for desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri)/Check { test: false }/TargetInner { name: "desktop", doc: true, ..: with_path("G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\main.rs", Edition2021) }
0.684542200s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "desktop_lib" })
0.686407300s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop"}: cargo::core::compiler::fingerprint: fingerprint dirty for desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri)/Check { test: true }/TargetInner { name: "desktop", doc: true, ..: with_path("G:\\ZClaw_openfang\\desktop\\src-tauri\\src\\main.rs", Edition2021) }
0.686422800s INFO prepare_target{force=false package_id=desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri) target="desktop"}: cargo::core::compiler::fingerprint: dirty: FsStatusOutdated(StaleDepFingerprint { name: "desktop_lib" })
Checking desktop v0.1.0 (G:\ZClaw_openfang\desktop\src-tauri)
Finished `dev` profile [unoptimized + debuginfo] target(s) in 21.29s
Finished `dev` profile [unoptimized + debuginfo] target(s) in 7.13s

File diff suppressed because it is too large Load Diff