feat(phase4): complete zclaw-skills, zclaw-hands, zclaw-channels, zclaw-protocols 模块实现

This commit is contained in:
iven
2026-03-22 08:57:37 +08:00
parent 7abfca9d5c
commit 0ab2f7afda
24 changed files with 2060 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
//! ZCLAW Hands
//!
//! Autonomous capabilities for ZCLAW agents.
mod hand;
mod registry;
mod trigger;
pub use hand::*;
pub use registry::*;
pub use trigger::*;