workforce-skill-sdk
Write custom workforce skill tools in Rust that compile to WASM.
This crate wraps the raw WASM host ABI so you write normal Rust code
instead of pointer manipulation. Compile with --target wasm32-unknown-unknown
and distribute via a GitHub repo.
Quick Start
use *;
init!;
tool!;
Architecture
Skill authors write tool handlers that receive a ToolInput (the agent's
input parameters) and return a ToolOutput (success/failure with data).
The SDK handles serialisation, memory management, and host function calls.