1a1254f045
CI - 构建、测试和质量检查 / Rust 代码检查 (push) Has been cancelled
CI - 构建、测试和质量检查 / 单元测试 (push) Has been cancelled
CI - 构建、测试和质量检查 / 代码格式检查 (push) Has been cancelled
CI - 构建、测试和质量检查 / Clippy 代码质量检查 (push) Has been cancelled
CI - 构建、测试和质量检查 / 构建可执行文件 (claude_code_rs, macos-latest, x86_64-apple-darwin) (push) Has been cancelled
CI - 构建、测试和质量检查 / 构建可执行文件 (claude_code_rs, ubuntu-latest, x86_64-unknown-linux-gnu) (push) Has been cancelled
CI - 构建、测试和质量检查 / 构建可执行文件 (claude_code_rs.exe, windows-latest, x86_64-pc-windows-msvc) (push) Has been cancelled
- 添加 Rust GUI 桌面应用程序入口点 - 添加 TypeScript/JavaScript 项目基础结构文件 - 包含组件、工具、命令、服务和工具定义 - 添加配置文件如 .gitignore、.gitattributes 和 LICENSE - 包含图片资源和演示文件 - 为各种功能模块添加占位符和类型定义
338 lines
11 KiB
Rust
338 lines
11 KiB
Rust
//! AutoDream Service - Automatic memory consolidation
|
|
//!
|
|
//! Background memory consolidation that fires the /dream prompt as a forked
|
|
//! subagent when time-gate passes AND enough sessions have accumulated.
|
|
//!
|
|
//! Gate order (cheapest first):
|
|
//! 1. Time: hours since lastConsolidatedAt >= minHours
|
|
//! 2. Sessions: transcript count with mtime > lastConsolidatedAt >= minSessions
|
|
//! 3. Lock: no other process mid-consolidation
|
|
|
|
use chrono::{DateTime, Utc, Duration};
|
|
use serde::{Deserialize, Serialize};
|
|
use std::path::PathBuf;
|
|
use std::sync::Arc;
|
|
use tokio::sync::RwLock;
|
|
use std::collections::HashMap;
|
|
|
|
use crate::state::AppState;
|
|
|
|
/// Default configuration for AutoDream
|
|
const DEFAULT_MIN_HOURS: i64 = 24;
|
|
const DEFAULT_MIN_SESSIONS: usize = 5;
|
|
const SESSION_SCAN_INTERVAL_MS: i64 = 10 * 60 * 1000;
|
|
|
|
/// AutoDream configuration
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
pub struct AutoDreamConfig {
|
|
pub min_hours: i64,
|
|
pub min_sessions: usize,
|
|
pub enabled: bool,
|
|
}
|
|
|
|
impl Default for AutoDreamConfig {
|
|
fn default() -> Self {
|
|
Self {
|
|
min_hours: DEFAULT_MIN_HOURS,
|
|
min_sessions: DEFAULT_MIN_SESSIONS,
|
|
enabled: true,
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Consolidation state
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
pub struct ConsolidationState {
|
|
pub last_consolidated_at: DateTime<Utc>,
|
|
pub session_count: usize,
|
|
pub is_consolidating: bool,
|
|
pub last_session_scan: DateTime<Utc>,
|
|
}
|
|
|
|
impl Default for ConsolidationState {
|
|
fn default() -> Self {
|
|
Self {
|
|
last_consolidated_at: Utc::now() - Duration::hours(DEFAULT_MIN_HOURS + 1),
|
|
session_count: 0,
|
|
is_consolidating: false,
|
|
last_session_scan: Utc::now(),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// AutoDream service
|
|
pub struct AutoDreamService {
|
|
config: AutoDreamConfig,
|
|
consolidation_state: Arc<RwLock<ConsolidationState>>,
|
|
}
|
|
|
|
impl AutoDreamService {
|
|
pub fn new(_state: Arc<RwLock<AppState>>, config: Option<AutoDreamConfig>) -> Self {
|
|
Self {
|
|
config: config.unwrap_or_default(),
|
|
consolidation_state: Arc::new(RwLock::new(ConsolidationState::default())),
|
|
}
|
|
}
|
|
|
|
pub fn with_config(mut self, config: AutoDreamConfig) -> Self {
|
|
self.config = config;
|
|
self
|
|
}
|
|
|
|
pub async fn is_enabled(&self) -> bool {
|
|
self.config.enabled
|
|
}
|
|
|
|
pub async fn check_and_run(&self) -> anyhow::Result<bool> {
|
|
if !self.config.enabled {
|
|
return Ok(false);
|
|
}
|
|
|
|
let mut consolidation = self.consolidation_state.write().await;
|
|
|
|
if consolidation.is_consolidating {
|
|
return Ok(false);
|
|
}
|
|
|
|
let now = Utc::now();
|
|
let hours_since = (now - consolidation.last_consolidated_at).num_hours();
|
|
|
|
if hours_since < self.config.min_hours {
|
|
return Ok(false);
|
|
}
|
|
|
|
let scan_interval = chrono::Duration::milliseconds(SESSION_SCAN_INTERVAL_MS);
|
|
if now - consolidation.last_session_scan < scan_interval {
|
|
return Ok(false);
|
|
}
|
|
|
|
consolidation.last_session_scan = now;
|
|
|
|
let sessions = self.count_recent_sessions(&consolidation.last_consolidated_at).await?;
|
|
|
|
if sessions < self.config.min_sessions {
|
|
return Ok(false);
|
|
}
|
|
|
|
if !self.try_acquire_lock(&mut consolidation).await? {
|
|
return Ok(false);
|
|
}
|
|
|
|
drop(consolidation);
|
|
|
|
self.run_consolidation().await?;
|
|
|
|
let mut consolidation = self.consolidation_state.write().await;
|
|
consolidation.last_consolidated_at = Utc::now();
|
|
consolidation.is_consolidating = false;
|
|
self.save_state(&consolidation).await?;
|
|
|
|
Ok(true)
|
|
}
|
|
|
|
async fn count_recent_sessions(&self, since: &DateTime<Utc>) -> anyhow::Result<usize> {
|
|
let home = dirs::home_dir().unwrap_or_else(|| PathBuf::from("."));
|
|
let sessions_dir = home.join(".claude-code").join("sessions");
|
|
|
|
if !sessions_dir.exists() {
|
|
return Ok(0);
|
|
}
|
|
|
|
let mut count = 0;
|
|
let entries = std::fs::read_dir(&sessions_dir)?;
|
|
|
|
for entry in entries.flatten() {
|
|
let path = entry.path();
|
|
if path.extension().map_or(false, |ext| ext == "json") {
|
|
if let Ok(metadata) = entry.metadata() {
|
|
if let Ok(modified) = metadata.modified() {
|
|
let modified: DateTime<Utc> = modified.into();
|
|
if modified > *since {
|
|
count += 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Ok(count)
|
|
}
|
|
|
|
async fn try_acquire_lock(&self, consolidation: &mut ConsolidationState) -> anyhow::Result<bool> {
|
|
let home = dirs::home_dir().unwrap_or_else(|| PathBuf::from("."));
|
|
let lock_path = home.join(".claude-code").join(".consolidation.lock");
|
|
|
|
if lock_path.exists() {
|
|
let content = std::fs::read_to_string(&lock_path)?;
|
|
if let Ok(lock_time) = chrono::DateTime::parse_from_rfc3339(&content) {
|
|
let lock_time: DateTime<Utc> = lock_time.with_timezone(&Utc);
|
|
if Utc::now() - lock_time < chrono::Duration::hours(1) {
|
|
return Ok(false);
|
|
}
|
|
}
|
|
}
|
|
|
|
std::fs::write(&lock_path, Utc::now().to_rfc3339())?;
|
|
consolidation.is_consolidating = true;
|
|
Ok(true)
|
|
}
|
|
|
|
async fn run_consolidation(&self) -> anyhow::Result<()> {
|
|
println!("🌙 AutoDream: Starting memory consolidation...");
|
|
|
|
let memories = self.load_memories().await?;
|
|
|
|
if memories.is_empty() {
|
|
println!("🌙 AutoDream: No memories to consolidate");
|
|
return Ok(());
|
|
}
|
|
|
|
let consolidated = self.analyze_and_consolidate(&memories).await?;
|
|
|
|
self.save_consolidated_memories(&consolidated).await?;
|
|
|
|
println!("🌙 AutoDream: Consolidated {} memories into {} insights",
|
|
memories.len(), consolidated.len());
|
|
|
|
Ok(())
|
|
}
|
|
|
|
async fn load_memories(&self) -> anyhow::Result<Vec<MemoryEntry>> {
|
|
let home = dirs::home_dir().unwrap_or_else(|| PathBuf::from("."));
|
|
let memory_path = home.join(".claude-code").join("memory.json");
|
|
|
|
if !memory_path.exists() {
|
|
return Ok(Vec::new());
|
|
}
|
|
|
|
let content = std::fs::read_to_string(&memory_path)?;
|
|
let memories: Vec<MemoryEntry> = serde_json::from_str(&content)?;
|
|
Ok(memories)
|
|
}
|
|
|
|
async fn analyze_and_consolidate(&self, memories: &[MemoryEntry]) -> anyhow::Result<Vec<ConsolidatedInsight>> {
|
|
let mut insights: Vec<ConsolidatedInsight> = Vec::new();
|
|
|
|
let mut topic_groups: HashMap<String, Vec<&MemoryEntry>> = HashMap::new();
|
|
|
|
for memory in memories {
|
|
let topic = self.extract_topic(&memory.content);
|
|
topic_groups.entry(topic).or_default().push(memory);
|
|
}
|
|
|
|
for (topic, group) in topic_groups {
|
|
if group.len() >= 2 {
|
|
let summary = self.summarize_topic(&topic, &group);
|
|
insights.push(ConsolidatedInsight {
|
|
topic: topic.clone(),
|
|
summary,
|
|
memory_count: group.len(),
|
|
last_updated: Utc::now(),
|
|
});
|
|
}
|
|
}
|
|
|
|
Ok(insights)
|
|
}
|
|
|
|
fn extract_topic(&self, content: &str) -> String {
|
|
let words: Vec<&str> = content.split_whitespace().take(5).collect();
|
|
words.join("_").to_lowercase()
|
|
}
|
|
|
|
fn summarize_topic(&self, topic: &str, memories: &[&MemoryEntry]) -> String {
|
|
format!(
|
|
"Consolidated {} memories about '{}': Key patterns identified across sessions.",
|
|
memories.len(),
|
|
topic
|
|
)
|
|
}
|
|
|
|
async fn save_consolidated_memories(&self, insights: &[ConsolidatedInsight]) -> anyhow::Result<()> {
|
|
let home = dirs::home_dir().unwrap_or_else(|| PathBuf::from("."));
|
|
let consolidated_path = home.join(".claude-code").join("consolidated_memories.json");
|
|
|
|
let existing = if consolidated_path.exists() {
|
|
let content = std::fs::read_to_string(&consolidated_path)?;
|
|
serde_json::from_str::<Vec<ConsolidatedInsight>>(&content)?
|
|
} else {
|
|
Vec::new()
|
|
};
|
|
|
|
let mut all_insights = existing;
|
|
all_insights.extend(insights.to_vec());
|
|
|
|
let content = serde_json::to_string_pretty(&all_insights)?;
|
|
std::fs::write(&consolidated_path, content)?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
async fn save_state(&self, state: &ConsolidationState) -> anyhow::Result<()> {
|
|
let home = dirs::home_dir().unwrap_or_else(|| PathBuf::from("."));
|
|
let state_path = home.join(".claude-code").join(".autodream_state.json");
|
|
|
|
let content = serde_json::to_string_pretty(state)?;
|
|
std::fs::write(&state_path, content)?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub async fn get_status(&self) -> AutoDreamStatus {
|
|
let consolidation = self.consolidation_state.read().await;
|
|
let now = Utc::now();
|
|
let hours_since = (now - consolidation.last_consolidated_at).num_hours();
|
|
|
|
AutoDreamStatus {
|
|
enabled: self.config.enabled,
|
|
is_consolidating: consolidation.is_consolidating,
|
|
last_consolidation: consolidation.last_consolidated_at,
|
|
hours_since_last: hours_since,
|
|
sessions_accumulated: consolidation.session_count,
|
|
next_consolidation_in: self.config.min_hours - hours_since,
|
|
}
|
|
}
|
|
|
|
pub async fn force_consolidation(&self) -> anyhow::Result<()> {
|
|
let mut consolidation = self.consolidation_state.write().await;
|
|
consolidation.is_consolidating = true;
|
|
drop(consolidation);
|
|
|
|
self.run_consolidation().await?;
|
|
|
|
let mut consolidation = self.consolidation_state.write().await;
|
|
consolidation.last_consolidated_at = Utc::now();
|
|
consolidation.is_consolidating = false;
|
|
self.save_state(&consolidation).await?;
|
|
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
pub struct MemoryEntry {
|
|
pub id: String,
|
|
pub memory_type: String,
|
|
pub content: String,
|
|
pub timestamp: DateTime<Utc>,
|
|
pub metadata: HashMap<String, serde_json::Value>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
pub struct ConsolidatedInsight {
|
|
pub topic: String,
|
|
pub summary: String,
|
|
pub memory_count: usize,
|
|
pub last_updated: DateTime<Utc>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize)]
|
|
pub struct AutoDreamStatus {
|
|
pub enabled: bool,
|
|
pub is_consolidating: bool,
|
|
pub last_consolidation: DateTime<Utc>,
|
|
pub hours_since_last: i64,
|
|
pub sessions_accumulated: usize,
|
|
pub next_consolidation_in: i64,
|
|
}
|