rskit-agent 0.2.0-alpha.3

Agentic loop — Provider + Tools + Hooks in a turn-based execution engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Slash-command registry for interactive agent sessions.
//!
//! Commands are prefixed with `/` and dispatched through a [`CommandRegistry`].
//! Call [`register_builtins`] to register the default `/help`, `/clear`, `/model`,
//! and `/compact` commands.

mod builtins;
mod registry;

pub use builtins::register_builtins;
pub use registry::{Command, CommandHandler, CommandRegistry};

#[cfg(test)]
mod tests;