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
use clap::{Args, Subcommand};

#[derive(Subcommand, Debug)]
pub enum SecretsCommand {
    Reload,
    Audit,
    Configure,
    Apply(SecretsApplyArgs),
}

#[derive(Args, Debug)]
pub struct SecretsApplyArgs {
    #[arg(long)]
    pub from: String,
    #[arg(long)]
    pub dry_run: bool,
}