zeph-commands 0.19.0

Slash command registry, handler trait, and channel sink abstraction for Zeph
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-FileCopyrightText: 2026 Andrei G <bug-ops>
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Sub-trait definitions for command handler context access.
//!
//! Each trait exposes the minimal interface a handler needs to access one subsystem.
//! `zeph-core` implements these traits on its internal state types and constructs
//! [`CommandContext`] at dispatch time.
//!
//! [`CommandContext`]: crate::context::CommandContext

pub mod agent;
pub mod channel;
pub mod debug;
pub mod messages;
pub mod session;