Files
zclaw_openfang/crates/zclaw-hands/src/hands/mod.rs
iven ae56aba366
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
feat(hands,desktop): C线差异化 — 管家日报 + 零配置引导优化
C1 管家日报:
- 新增 _daily_report Hand (daily_report.rs) — 5个测试
- 增强 user_profile_store — PainPoint 结构体 + find_active_pains_since + resolve_pain
- experience_store 新增 find_since 日期范围查询
- trajectory_store 新增 get_events_since 日期范围查询
- 新增 DailyReportPanel.tsx 前端日报面板
- Sidebar 新增"日报"导航入口

C3 零配置引导:
- 修复行业卡点击后阶段推进 bug (industry_discovery → identity_setup)

验证: 940 tests PASS, 0 failures
2026-04-21 18:23:36 +08:00

28 lines
645 B
Rust

//! Educational Hands - Teaching and presentation capabilities
//!
//! This module provides hands for interactive experiences:
//! - Quiz: Assessment and evaluation
//! - Browser: Web automation
//! - Researcher: Deep research and analysis
//! - Collector: Data collection and aggregation
//! - Clip: Video processing
//! - Twitter: Social media automation
pub mod quiz;
mod browser;
mod researcher;
mod collector;
mod clip;
mod twitter;
pub mod reminder;
pub mod daily_report;
pub use quiz::*;
pub use browser::*;
pub use researcher::*;
pub use collector::*;
pub use clip::*;
pub use twitter::*;
pub use reminder::*;
pub use daily_report::*;