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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
#[derive(Subcommand)]
pub enum DevContainerCommands {
/// Validate devcontainer.json file (JSONC support)
Validate {
/// Path to devcontainer.json or directory containing .devcontainer
#[arg(value_name = "PATH")]
path: PathBuf,
/// Output format
#[arg(long, value_enum, default_value = "human")]
format: LintFormat,
/// Also lint referenced Dockerfile (if build.dockerfile specified)
#[arg(long)]
lint_dockerfile: bool,
/// List all available DEVCONTAINER rules
#[arg(long)]
list_rules: bool,
},
}
#[derive(Subcommand)]
pub enum ConfigCommands {
/// Analyze shell configuration file for issues
Analyze {
/// Input config file (.bashrc, .zshrc, .profile, etc.)
#[arg(value_name = "FILE")]
input: PathBuf,
/// Output format
#[arg(long, value_enum, default_value = "human")]
format: ConfigOutputFormat,
},
/// Lint shell configuration file
Lint {
/// Input config file
#[arg(value_name = "FILE")]
input: PathBuf,
/// Output format
#[arg(long, value_enum, default_value = "human")]
format: ConfigOutputFormat,
},
/// Purify shell configuration file (fix issues automatically)
Purify {
/// Input config file
#[arg(value_name = "FILE")]
input: PathBuf,
/// Output file (defaults to stdout, or in-place with --fix)
#[arg(short, long)]
output: Option<PathBuf>,
/// Apply fixes in-place (creates timestamped backup)
#[arg(long)]
fix: bool,
/// Don't create backup (dangerous!)
#[arg(long)]
no_backup: bool,
/// Dry run (show what would be changed)
#[arg(long)]
dry_run: bool,
},
}
/// Output format for config commands
#[derive(Clone, Debug, ValueEnum)]
pub enum ConfigOutputFormat {
/// Human-readable format
Human,
/// JSON format
Json,
}
/// Installer subcommands (NEW in v7.0 - Issue #104)
#[derive(Subcommand)]
pub enum InstallerCommands {
/// Initialize new installer project with TDD-first test harness
Init {
/// Project name/directory
#[arg(value_name = "NAME")]
name: PathBuf,
/// Project description
#[arg(long)]
description: Option<String>,
},
/// Convert bash script to installer.toml format
FromBash {
/// Input bash script
#[arg(value_name = "FILE")]
input: PathBuf,
/// Output directory
#[arg(short, long)]
output: Option<PathBuf>,
},
/// Run installer (with optional resume, dry-run, etc.)
Run {
/// Installer directory or installer.toml path
#[arg(value_name = "PATH")]
path: PathBuf,
/// Checkpoint directory for resuming
#[arg(long)]
checkpoint_dir: Option<PathBuf>,
/// Dry-run without making changes
#[arg(long)]
dry_run: bool,
/// Show unified diff of changes
#[arg(long)]
diff: bool,
/// Enable hermetic mode (reproducible builds)
#[arg(long)]
hermetic: bool,
/// Verify artifact signatures
#[arg(long)]
verify_signatures: bool,
/// Enable parallel execution
#[arg(long)]
parallel: bool,
/// Enable OpenTelemetry tracing
#[arg(long)]
trace: bool,
/// Export traces to file (JSON format)
#[arg(long)]
trace_file: Option<PathBuf>,
},
/// Resume installer from checkpoint
Resume {
/// Installer directory
#[arg(value_name = "PATH")]
path: PathBuf,
/// Step to resume from
#[arg(long)]
from: Option<String>,
},
/// Validate installer without executing
Validate {
/// Installer directory or installer.toml path
#[arg(value_name = "PATH")]
path: PathBuf,
},
/// Run installer test suite
Test {
/// Installer directory
#[arg(value_name = "PATH")]
path: PathBuf,
/// Test matrix (platforms to test, comma-separated)
#[arg(long)]
matrix: Option<String>,
/// Enable coverage reporting
#[arg(long)]
coverage: bool,
},
/// Generate lockfile for hermetic builds
Lock {
/// Installer directory
#[arg(value_name = "PATH")]
path: PathBuf,
/// Update existing lockfile
#[arg(long)]
update: bool,
/// Verify lockfile matches current state
#[arg(long)]
verify: bool,
},
/// Visualize installer build graph
Graph {
/// Installer directory
#[arg(value_name = "PATH")]
path: PathBuf,
/// Output format (mermaid, dot, json)
#[arg(long, value_enum, default_value = "mermaid")]
format: InstallerGraphFormat,
},
/// Capture golden trace baseline
GoldenCapture {
/// Installer directory
#[arg(value_name = "PATH")]
path: PathBuf,
/// Trace name
#[arg(long)]
trace: String,
},
/// Compare execution against golden trace
GoldenCompare {
/// Installer directory
#[arg(value_name = "PATH")]
path: PathBuf,
/// Trace name to compare against
#[arg(long)]
trace: String,
},
/// Audit installer for security, quality, and best practices
Audit {
/// Installer directory or installer.toml path
#[arg(value_name = "PATH")]
path: PathBuf,
/// Output format (human, json)
#[arg(long, value_enum, default_value = "human")]
format: AuditOutputFormat,
/// Security-only audit
#[arg(long)]
security_only: bool,
/// Minimum severity to report (info, suggestion, warning, error, critical)
#[arg(long)]
min_severity: Option<String>,
/// Issue #110: Ignore specific rules (can be specified multiple times)
/// Example: --ignore SEC001 --ignore QUAL002
#[arg(long, value_name = "RULE")]
ignore: Vec<String>,
},
/// Initialize or manage keyring for artifact verification
Keyring {
#[command(subcommand)]
command: KeyringCommands,
},
}
/// Keyring management subcommands
#[derive(Subcommand)]
pub enum KeyringCommands {
/// Initialize a new keyring
Init {
/// Import keys from files
#[arg(long, action = clap::ArgAction::Append)]
import: Vec<PathBuf>,
},
/// Add a key to the keyring
Add {
/// Key file to add
#[arg(value_name = "FILE")]
key: PathBuf,
/// Key ID
#[arg(long)]
id: String,
},
/// List keys in the keyring
List,
/// Remove a key from the keyring
Remove {
/// Key ID to remove
#[arg(value_name = "ID")]
id: String,
},
}
/// Output format for installer graph command
#[derive(Clone, Debug, Default, ValueEnum)]
pub enum InstallerGraphFormat {
/// Mermaid diagram
#[default]
Mermaid,
/// Graphviz DOT format
Dot,
/// JSON format
Json,
}