workspace-mgr 0.1.0

Fixed-policy repository workspace manager for coding agents
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
use std::path::PathBuf;

use clap::{Args, Parser, Subcommand};

use crate::config::StorageTarget;
use crate::manifest::TaskKind;
use crate::output::Format;

#[derive(Debug, Parser)]
#[command(
    name = "workspace-mgr",
    version,
    about = "Fixed-policy repository workspace manager for coding agents",
    subcommand_required = true,
    arg_required_else_help = true
)]
pub struct Cli {
    #[arg(
        long,
        global = true,
        value_enum,
        default_value = "human",
        env = "WORKSPACE_MGR_FORMAT"
    )]
    pub format: Format,

    #[command(subcommand)]
    pub command: Command,
}

#[derive(Debug, Subcommand)]
pub enum Command {
    /// Provision the private execution runtime used by managed storage.
    Setup(SetupArgs),

    /// Initialize or reconcile repository facts and managed scaffolding.
    Init(InitArgs),

    /// Print the shared workspace model and effective repository instructions.
    Instructions(InstructionsArgs),

    /// Diagnose dependencies, configuration, and repository state.
    Doctor(RepoArgs),

    /// Inspect repository configuration.
    Config(ConfigArgs),

    /// Create or inspect task scaffolding.
    Task(TaskArgs),

    /// Preview a scoped repository transaction without publishing.
    Plan(PlanArgs),

    /// Publish a scoped repository transaction.
    Publish(PublishCommandArgs),

    /// Inspect or change whether content is stored in Git or S3.
    Storage(StorageArgs),

    /// Move a path while preserving its storage placement.
    Move(MoveArgs),

    /// Safely update a shared checkout and hydrate incoming stored data.
    Refresh(RefreshArgs),
}

#[derive(Debug, Args)]
pub struct SetupArgs {
    /// Override the private runtime directory.
    #[arg(long)]
    pub runtime_dir: Option<PathBuf>,

    #[arg(long)]
    pub dry_run: bool,
}

#[derive(Debug, Args)]
pub struct RepoArgs {
    #[arg(long, default_value = ".")]
    pub repo: PathBuf,
}

#[derive(Debug, Args)]
pub struct InitArgs {
    #[arg(long, default_value = ".")]
    pub repo: PathBuf,

    /// Configure an S3 bucket at this non-secret URL.
    #[arg(long)]
    pub s3_url: Option<String>,

    /// Optional S3-compatible API endpoint for managed storage.
    #[arg(long, requires = "s3_url")]
    pub s3_endpoint_url: Option<String>,

    #[arg(long)]
    pub dry_run: bool,
}

#[derive(Debug, Args)]
pub struct InstructionsArgs {
    /// Optional topic: model, core, task, publish, artifacts, storage, shared-checkout, or infrastructure.
    pub topic: Option<String>,

    #[arg(long, default_value = ".")]
    pub repo: PathBuf,
}

#[derive(Debug, Args)]
pub struct ConfigArgs {
    #[command(subcommand)]
    pub command: ConfigCommand,
}

#[derive(Debug, Subcommand)]
pub enum ConfigCommand {
    /// Print and validate the effective repository configuration.
    Show(RepoArgs),
}

#[derive(Debug, Args)]
pub struct TaskArgs {
    #[command(subcommand)]
    pub command: TaskCommand,
}

#[derive(Debug, Subcommand)]
pub enum TaskCommand {
    /// Create a deliverable workspace or isolated infrastructure worktree.
    Create(TaskCreateArgs),
    /// Inspect the resolved task scope and working changes.
    Status(TaskStatusArgs),
    /// Permanently discard an unmerged task after its pull request is closed.
    Discard(TaskDiscardArgs),
}

#[derive(Debug, Args)]
pub struct TaskCreateArgs {
    pub slug: String,

    #[arg(long)]
    pub title: String,

    #[arg(long)]
    pub purpose: String,

    #[arg(long, value_enum, default_value = "deliverable")]
    pub kind: TaskKind,

    /// Declare an infrastructure path. Repeat for multiple paths.
    #[arg(long = "scope")]
    pub scopes: Vec<String>,

    /// Explain why the declared infrastructure paths are authorized.
    #[arg(long, requires = "scopes")]
    pub scope_note: Option<String>,

    #[arg(long, hide = true)]
    pub timestamp: Option<String>,

    #[arg(long, default_value = ".")]
    pub repo: PathBuf,

    #[arg(long)]
    pub dry_run: bool,
}

#[derive(Debug, Args)]
pub struct TaskStatusArgs {
    #[arg(long, default_value = ".")]
    pub repo: PathBuf,

    #[arg(long)]
    pub manifest: Option<PathBuf>,
}

#[derive(Debug, Args)]
pub struct TaskDiscardArgs {
    #[arg(long, default_value = ".")]
    pub repo: PathBuf,

    #[arg(long)]
    pub manifest: Option<PathBuf>,

    /// Inspect the exact destructive scope and save a private confirmation plan.
    #[arg(long, conflicts_with = "confirm")]
    pub dry_run: bool,

    /// Confirm the exact task ID after the agent closes or verifies absence of its PR.
    #[arg(long, value_name = "TASK_ID", conflicts_with = "dry_run")]
    pub confirm: Option<String>,
}

#[derive(Debug, Clone, Args)]
pub struct PlanArgs {
    #[arg(long)]
    pub manifest: Option<PathBuf>,

    #[arg(long = "include")]
    pub include: Vec<String>,

    #[arg(long)]
    pub scope_note: Option<String>,

    #[arg(long)]
    pub allow_non_shared_head: bool,

    #[arg(long, default_value = ".")]
    pub repo: PathBuf,
}

#[derive(Debug, Clone, Args)]
pub struct PublishCommandArgs {
    #[arg(long)]
    pub manifest: Option<PathBuf>,

    #[arg(short = 'm', long)]
    pub message: String,

    #[arg(long = "include")]
    pub include: Vec<String>,

    #[arg(long)]
    pub scope_note: Option<String>,

    #[arg(long)]
    pub allow_non_shared_head: bool,

    #[arg(long)]
    pub dry_run: bool,

    #[arg(long, default_value = ".")]
    pub repo: PathBuf,
}

#[derive(Debug, Args)]
pub struct StorageArgs {
    #[command(subcommand)]
    pub command: StorageCommand,
}

#[derive(Debug, Subcommand)]
pub enum StorageCommand {
    /// Show the effective Git/S3 placement of paths in the task scope.
    Status(StorageStatusArgs),
    /// Explicitly place paths in Git or S3. This changes local desired state only.
    Set(StorageSetArgs),
    /// Remove an explicit choice and reapply the repository's automatic policy.
    Reset(StorageResetArgs),
    /// Materialize S3 content without publishing anything.
    Hydrate(StorageHydrateArgs),
}

#[derive(Debug, Clone, Args)]
pub struct ScopedArgs {
    #[arg(long)]
    pub manifest: Option<PathBuf>,

    #[arg(long = "include")]
    pub include: Vec<String>,

    #[arg(long)]
    pub scope_note: Option<String>,

    #[arg(long, default_value = ".")]
    pub repo: PathBuf,
}

#[derive(Debug, Args)]
pub struct StorageStatusArgs {
    #[command(flatten)]
    pub scoped: ScopedArgs,

    pub paths: Vec<String>,
}

#[derive(Debug, Args)]
pub struct StorageSetArgs {
    #[command(flatten)]
    pub scoped: ScopedArgs,

    #[arg(required = true)]
    pub paths: Vec<String>,

    #[arg(long, value_enum)]
    pub to: StorageTarget,

    #[arg(long)]
    pub reason: String,

    #[arg(long)]
    pub dry_run: bool,
}

#[derive(Debug, Args)]
pub struct StorageResetArgs {
    #[command(flatten)]
    pub scoped: ScopedArgs,

    #[arg(required = true)]
    pub paths: Vec<String>,

    #[arg(long)]
    pub dry_run: bool,
}

#[derive(Debug, Args)]
pub struct StorageHydrateArgs {
    #[command(flatten)]
    pub scoped: ScopedArgs,

    pub paths: Vec<String>,

    #[arg(long)]
    pub dry_run: bool,
}

#[derive(Debug, Args)]
pub struct MoveArgs {
    #[command(flatten)]
    pub scoped: ScopedArgs,

    pub old_path: String,
    pub new_path: String,

    #[arg(long)]
    pub dry_run: bool,
}

#[derive(Debug, Args)]
pub struct RefreshArgs {
    #[arg(long, default_value = ".")]
    pub repo: PathBuf,

    #[arg(long)]
    pub dry_run: bool,
}

#[cfg(test)]
mod tests {
    use clap::Parser;

    use super::Cli;

    #[test]
    fn documented_command_shapes_are_accepted_by_clap() {
        let examples: &[&[&str]] = &[
            &["setup", "--dry-run"],
            &[
                "setup",
                "--runtime-dir",
                "/tmp/workspace-mgr-runtime",
                "--dry-run",
            ],
            &["init"],
            &[
                "init",
                "--s3-url",
                "s3://example-bucket/workspace",
                "--s3-endpoint-url",
                "https://s3.example.invalid",
                "--dry-run",
            ],
            &["instructions"],
            &["instructions", "model"],
            &["instructions", "storage", "--repo", "/tmp/repository"],
            &["--format", "json", "instructions", "publish"],
            &["doctor", "--repo", "/tmp/repository"],
            &["config", "show", "--repo", "/tmp/repository"],
            &[
                "task",
                "create",
                "training-report",
                "--title",
                "Training report",
                "--purpose",
                "Produce the final training report",
                "--dry-run",
            ],
            &[
                "task",
                "create",
                "shared-policy",
                "--kind",
                "infrastructure",
                "--title",
                "Shared policy",
                "--purpose",
                "Update repository policy",
                "--scope",
                "AGENTS.md",
                "--scope",
                ".github/workflows/ci.yml",
                "--scope-note",
                "The user requested this infrastructure change",
            ],
            &["task", "status", "--manifest", "task/manifest.toml"],
            &["storage", "status"],
            &[
                "storage",
                "status",
                "task/results/model.bin",
                "--manifest",
                "task/manifest.toml",
            ],
            &[
                "storage",
                "set",
                "task/report.pdf",
                "task/summary.txt",
                "--to",
                "git",
                "--reason",
                "Review these files directly",
            ],
            &[
                "storage",
                "set",
                "task/data",
                "--to",
                "s3",
                "--reason",
                "Retain the dataset",
                "--dry-run",
            ],
            &["storage", "reset", "task/data"],
            &["storage", "hydrate", "task/data/example.csv"],
            &["move", "task/old.bin", "task/new.bin", "--dry-run"],
            &[
                "plan",
                "--include",
                "docs/shared.md",
                "--scope-note",
                "The user requested this shared documentation update",
            ],
            &[
                "plan",
                "--allow-non-shared-head",
                "--scope-note",
                "The user selected an alternate checkout",
            ],
            &["publish", "-m", "Publish the training report"],
            &[
                "publish",
                "--message",
                "Publish shared documentation",
                "--include",
                "docs/shared.md",
                "--scope-note",
                "The user requested this shared documentation update",
                "--dry-run",
            ],
            &["refresh", "--dry-run"],
        ];

        for args in examples {
            let argv = std::iter::once("workspace-mgr").chain(args.iter().copied());
            Cli::try_parse_from(argv).unwrap_or_else(|error| {
                panic!("documented command failed to parse: {args:?}\n{error}")
            });
        }
    }

    #[test]
    fn read_only_commands_do_not_expose_meaningless_mutation_flags() {
        assert!(Cli::try_parse_from(["workspace-mgr", "plan", "--dry-run"]).is_err());
        assert!(Cli::try_parse_from(["workspace-mgr", "plan", "-m", "unused"]).is_err());
        assert!(Cli::try_parse_from(["workspace-mgr", "storage", "status", "--dry-run"]).is_err());
    }
}