rsclaw 2026.4.5

High-performance AI gateway with native OpenClaw A2A orchestration
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,
}