1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// SPDX-FileCopyrightText: 2026 Andrei G <bug-ops>
// SPDX-License-Identifier: MIT OR Apache-2.0
//! Slash command handler implementations.
//!
//! Each module contains one or more handler structs implementing [`CommandHandler<CommandContext>`].
//! Handlers access agent subsystems through the trait objects on [`CommandContext`].
//!
//! [`CommandHandler<CommandContext>`]: crate::CommandHandler
//! [`CommandContext`]: crate::context::CommandContext
pub mod acp;
pub mod agent_cmd;
pub mod agents_fleet;
#[cfg(feature = "cocoon")]
pub mod cocoon;
pub mod compaction;
pub mod debug;
pub mod experiment;
pub mod goal;
pub mod help;
pub mod loop_cmd;
pub mod lsp;
pub mod mcp;
pub mod memory;
pub mod misc;
pub mod model;
pub mod plan;
pub mod plugins;
pub mod policy;
pub mod scheduler;
pub mod session;
pub mod skill;
pub mod status;
#[cfg(test)]
pub mod test_helpers;
pub mod trajectory;