Skip to main content

git_paw/coordination/
mod.rs

1//! User→agent coordination for the supervisor routing commands.
2//!
3//! This module is the home of the reusable inventory + target-validation
4//! helpers (design D6) that back the `/agents` and `/tell` supervisor skills.
5//! v0.6.0 has a single consumer — the `/tell` skill — but the helpers are
6//! shaped as library functions so the v1.0.0 MCP write tools' analogous
7//! `publish_agent_feedback` can adopt the same inventory shape and unknown-
8//! target rejection semantics without re-implementation.
9//!
10//! Distinct from [`crate::broker`] peer-to-peer coordination: that surface is
11//! agent↔agent; this one is user→agent, mediated by the supervisor.
12
13pub mod inventory;
14pub mod tell;