ralph/commands/runner/mod.rs
1//! Runner management command implementations.
2//!
3//! Responsibilities:
4//! - Provide handlers for runner CLI subcommands.
5//! - Expose capability data for CLI and potential future use.
6//!
7//! Not handled here:
8//! - CLI argument parsing (see cli/runner.rs).
9//! - Runner execution (see runner/ module).
10
11pub mod capabilities;
12pub mod detection;
13pub mod list;