Files
zclaw_openfang/crates/zclaw-hands/src/hands/mod.rs
iven cb9e48f11d
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
refactor(hands): 移除空壳 Hand — Whiteboard/Slideshow/Speech (Phase 5)
删除 3 个仅含 UI 占位的 Hand,清理 Rust 实现与前端引用:
- Rust: whiteboard.rs(422行) + slideshow.rs(797行) + speech.rs(442行)
- 前端: WhiteboardCanvas + SlideshowRenderer + speech-synth + 相关类型/常量
- 配置: 3 个 HAND.toml
- 净减 ~5400 行,Hands 9→6(启用) + Quiz/Browser/Researcher/Collector/Clip/Twitter/Reminder
2026-04-17 19:55:59 +08:00

26 lines
598 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 use quiz::*;
pub use browser::*;
pub use researcher::*;
pub use collector::*;
pub use clip::*;
pub use twitter::*;
pub use reminder::*;