agentzero-plugin-sdk 0.4.1

Plugin SDK for building AgentZero WASM plugins
Documentation

AgentZero Plugin SDK

Minimal SDK for building WASM plugins that integrate with AgentZero's tool system. Plugins compile to wasm32-wasip1 and are loaded by the AgentZero runtime via the ABI v2 protocol.

Quick Start

use agentzero_plugin_sdk::prelude::*;

declare_tool!("my_tool", execute);

fn execute(input: ToolInput) -> ToolOutput {
    ToolOutput::success(format!("got: {}", input.input))
}

Build with: cargo build --target wasm32-wasip1 --release