nexo-tool-meta 0.1.18

Wire-shape types shared between the Nexo agent runtime and any third-party microapp that consumes its events.
Documentation
//! Admin RPC wire-shape types.
//!
//! Shared between the daemon's [`nexo_core::agent::admin_rpc`]
//! handlers and the microapp SDK's `AdminClient`. Living here
//! (in `nexo-tool-meta`) keeps the SDK from depending on
//! `nexo-core` while still letting both sides agree on the
//! params + result shapes.
//!
//! Each sub-module corresponds to one admin domain: `agents`,
//! `credentials`, `pairing`, `llm_providers`, `channels`, and so on.

pub mod agent_events;
pub mod agents;
pub mod audit;
pub mod auth;
pub mod channels;
pub mod credentials;
pub mod escalations;
pub mod llm;
pub mod llm_providers;
pub mod mcp;
pub mod memory;
pub mod operator_stamping;
pub mod pairing;
pub mod pairing_channels;
pub mod persona;
pub mod plugin_discovery;
pub mod plugin_doctor;
pub mod plugin_install;
pub mod plugin_restart;
pub mod pollers;
pub mod processing;
pub mod secrets;
pub mod skills;
pub mod tenants;
pub mod wa_bot;