rsclaw 2026.5.1

AI Agent Engine Compatible with OpenClaw
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use clap::Subcommand;

/// Legacy alias for `gateway` sub-commands.
#[derive(Subcommand, Debug)]
pub enum DaemonCommand {
    /// Register as a system service.
    Install,
    /// Start the daemon.
    Start,
    /// Stop the daemon.
    Stop,
    /// Restart the daemon.
    Restart,
    /// Show daemon status.
    Status,
    /// Remove system service registration.
    Uninstall,
}