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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
use clap::{Parser, Subcommand, ValueEnum};
#[derive(Parser)]
#[command(
name = "rigmode",
version,
about = "Attach work modes to AI coding agent prompts"
)]
pub struct Cli {
#[command(subcommand)]
pub command: Command,
}
#[derive(Subcommand)]
pub enum Command {
/// Match a prompt against modes and print agent-specific context (always exits 0)
Attach {
agent: Agent,
/// Override modes directories (repeatable)
#[arg(long = "modes-dir")]
modes_dirs: Vec<std::path::PathBuf>,
},
/// Manage agent hooks
Hook {
#[command(subcommand)]
action: HookAction,
},
/// Validate modes and hook registration
Check {
#[arg(long = "modes-dir")]
modes_dirs: Vec<std::path::PathBuf>,
},
/// List recorded mode attaches (newest first)
Log {
/// Filter by attached mode name
#[arg(long)]
mode: Option<String>,
/// Max rows to print
#[arg(long)]
limit: Option<usize>,
},
/// List recorded interventions (newest first)
Gate {
/// Filter by mode name
#[arg(long)]
mode: Option<String>,
/// Max rows to print
#[arg(long)]
limit: Option<usize>,
},
}
#[derive(Subcommand)]
pub enum HookAction {
/// Register the attach hook for an agent
Install {
agent: Agent,
/// Allow registering a binary under target/
#[arg(long)]
force: bool,
},
/// Remove the attach hook for an agent
Uninstall { agent: Agent },
}
#[derive(Clone, Copy, ValueEnum)]
pub enum Agent {
#[value(name = "claude-code")]
ClaudeCode,
}
impl Agent {
pub fn as_str(self) -> &'static str {
match self {
Agent::ClaudeCode => "claude-code",
}
}
}