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
- Add ResearcherHand: DuckDuckGo search, web fetch, report generation - Add CollectorHand: data collection, aggregation, multiple output formats - Add ClipHand: video processing (trim, convert, thumbnail, concat) - Add TwitterHand: Twitter/X automation (tweet, retweet, like, search) - Fix BrowserHand not registered in Kernel (critical bug) - Add HandError variant to ZclawError enum - Update documentation: 9/11 Hands implemented (82%) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
33 lines
790 B
Rust
33 lines
790 B
Rust
//! Educational Hands - Teaching and presentation capabilities
|
|
//!
|
|
//! This module provides hands for interactive classroom experiences:
|
|
//! - Whiteboard: Drawing and annotation
|
|
//! - Slideshow: Presentation control
|
|
//! - Speech: Text-to-speech synthesis
|
|
//! - Quiz: Assessment and evaluation
|
|
//! - Browser: Web automation
|
|
//! - Researcher: Deep research and analysis
|
|
//! - Collector: Data collection and aggregation
|
|
//! - Clip: Video processing
|
|
//! - Twitter: Social media automation
|
|
|
|
mod whiteboard;
|
|
mod slideshow;
|
|
mod speech;
|
|
mod quiz;
|
|
mod browser;
|
|
mod researcher;
|
|
mod collector;
|
|
mod clip;
|
|
mod twitter;
|
|
|
|
pub use whiteboard::*;
|
|
pub use slideshow::*;
|
|
pub use speech::*;
|
|
pub use quiz::*;
|
|
pub use browser::*;
|
|
pub use researcher::*;
|
|
pub use collector::*;
|
|
pub use clip::*;
|
|
pub use twitter::*;
|