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
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
//! CLI argument structures
//!
//! This module defines all command-line interface structures used by Prodigy.
//! It includes the main CLI structure and all subcommand definitions.
use clap::{Parser, Subcommand};
use std::path::PathBuf;
/// Execute automated workflows with zero configuration
#[derive(Parser)]
#[command(name = "prodigy")]
#[command(about = "prodigy - Execute automated workflows with zero configuration", long_about = None)]
#[command(version)]
pub struct Cli {
/// Enable verbose output (-v for debug, -vv for trace, -vvv for all)
#[arg(short, long, action = clap::ArgAction::Count, global = true)]
pub verbose: u8,
#[command(subcommand)]
pub command: Option<Commands>,
}
#[derive(Subcommand)]
pub enum Commands {
/// Run a workflow file
#[command(name = "run")]
Run {
/// Workflow file to execute
workflow: PathBuf,
/// Repository path to run in (defaults to current directory)
#[arg(short = 'p', long)]
path: Option<PathBuf>,
/// Maximum number of iterations
#[arg(short = 'n', long, default_value = "1")]
max_iterations: u32,
/// File patterns to map over
#[arg(long, value_name = "PATTERN")]
map: Vec<String>,
/// Direct arguments to pass to commands
#[arg(long, value_name = "VALUE")]
args: Vec<String>,
/// Stop on first failure when processing multiple files
#[arg(long)]
fail_fast: bool,
/// Automatically answer yes to all prompts
#[arg(short = 'y', long = "yes")]
auto_accept: bool,
/// Resume an interrupted session
#[arg(long, value_name = "SESSION_ID")]
resume: Option<String>,
/// Dry-run mode - show what would be executed without running
#[arg(long, help = "Preview commands without executing them")]
dry_run: bool,
/// Template parameters (key=value)
#[arg(long = "param", value_name = "KEY=VALUE")]
params: Vec<String>,
/// Parameter file (JSON or YAML)
#[arg(long = "param-file")]
param_file: Option<PathBuf>,
},
/// Execute a single command with retry support
#[command(name = "exec")]
Exec {
/// Command to execute (e.g., "claude: /refactor app.py" or "shell: npm test")
command: String,
/// Number of retry attempts
#[arg(long, default_value = "1")]
retry: u32,
/// Timeout in seconds
#[arg(long)]
timeout: Option<u64>,
/// Working directory
#[arg(short = 'p', long)]
path: Option<PathBuf>,
},
/// Process multiple files in parallel
#[command(name = "batch")]
Batch {
/// File pattern to match (e.g., "*.py", "src/**/*.ts")
pattern: String,
/// Command to execute for each file
#[arg(long)]
command: String,
/// Number of parallel workers
#[arg(long, default_value = "5")]
parallel: usize,
/// Number of retry attempts per file
#[arg(long)]
retry: Option<u32>,
/// Timeout per file in seconds
#[arg(long)]
timeout: Option<u64>,
/// Working directory
#[arg(short = 'p', long)]
path: Option<PathBuf>,
},
/// Resume an interrupted workflow
#[command(name = "resume")]
Resume {
/// Session ID to resume
session_id: Option<String>,
/// Force restart from beginning
#[arg(long)]
force: bool,
/// Resume from specific checkpoint (defaults to latest)
#[arg(long = "from-checkpoint")]
from_checkpoint: Option<String>,
/// Working directory
#[arg(short = 'p', long)]
path: Option<PathBuf>,
},
/// List available workflow checkpoints
#[command(name = "checkpoints")]
Checkpoints {
#[command(subcommand)]
command: CheckpointCommands,
},
/// Manage git worktrees for parallel Prodigy sessions
Worktree {
#[command(subcommand)]
command: WorktreeCommands,
},
/// Initialize Prodigy commands in your project
Init {
/// Force overwrite existing commands
#[arg(short, long)]
force: bool,
/// Specific commands to install (comma-separated)
#[arg(short, long, value_delimiter = ',')]
commands: Option<Vec<String>>,
/// Directory to initialize (defaults to current)
#[arg(short, long)]
path: Option<PathBuf>,
},
/// Migrate workflow YAML files to simplified syntax
#[command(name = "migrate-yaml")]
MigrateYaml {
/// Workflow file or directory to migrate (defaults to workflows/)
#[arg(value_name = "PATH")]
path: Option<PathBuf>,
/// Create backup files (.bak)
#[arg(long, default_value = "true")]
backup: bool,
/// Dry run - show what would be changed without modifying files
#[arg(long)]
dry_run: bool,
/// Force overwrite without backup
#[arg(short, long)]
force: bool,
},
/// Validate workflow YAML format and suggest improvements
#[command(name = "validate")]
Validate {
/// Workflow file to validate
workflow: PathBuf,
/// Check for simplified format
#[arg(long, default_value = "simplified")]
format: String,
/// Show suggestions for improvements
#[arg(long, default_value = "true")]
suggest: bool,
/// Exit with error code if not valid
#[arg(long)]
strict: bool,
},
/// Resume a MapReduce job from its checkpoint
#[command(name = "resume-job")]
ResumeJob {
/// Job ID to resume
job_id: String,
/// Force resume even if job appears complete
#[arg(long)]
force: bool,
/// Maximum additional retries for failed items
#[arg(long, default_value = "2")]
max_retries: u32,
/// Path to the repository (defaults to current directory)
#[arg(short = 'p', long)]
path: Option<PathBuf>,
},
/// View and search MapReduce events
#[command(name = "events")]
Events {
#[command(subcommand)]
command: EventCommands,
},
/// Manage Dead Letter Queue for failed MapReduce items
#[command(name = "dlq")]
Dlq {
#[command(subcommand)]
command: DlqCommands,
},
/// Manage workflow sessions
Sessions {
#[command(subcommand)]
command: SessionCommands,
},
/// View MapReduce job progress
#[command(name = "progress")]
Progress {
/// Job ID to view progress for
job_id: String,
/// Export progress data to file
#[arg(long)]
export: Option<PathBuf>,
/// Export format (json, csv, html)
#[arg(long, default_value = "json")]
format: String,
/// Start web dashboard on specified port
#[arg(long)]
web: Option<u16>,
},
/// Manage and view Claude JSON logs
#[command(name = "logs")]
Logs {
/// Session ID to view logs for
session_id: Option<String>,
/// Show only the latest log
#[arg(long)]
latest: bool,
/// Tail the log file (follow mode)
#[arg(long)]
tail: bool,
/// Show log summary
#[arg(long)]
summary: bool,
},
/// Clean up Prodigy storage
#[command(name = "clean")]
Clean {
#[command(subcommand)]
command: CleanCommands,
},
/// Manage workflow templates
#[command(name = "template")]
Template {
#[command(subcommand)]
action: TemplateCommand,
},
/// View and trace configuration values
#[command(name = "config")]
Config {
#[command(subcommand)]
command: ConfigCommands,
},
/// Manage project changelog
#[command(name = "changelog")]
Changelog {
#[command(subcommand)]
command: ChangelogCommands,
},
}
#[derive(Subcommand)]
pub enum SessionCommands {
/// List resumable sessions
#[command(name = "ls", alias = "list")]
List,
/// Show details about a specific session
Show {
/// Session ID to show details for
session_id: String,
},
/// Clean up old sessions
Clean {
/// Clean all sessions (not just old ones)
#[arg(long)]
all: bool,
/// Force cleanup without confirmation
#[arg(short, long)]
force: bool,
},
}
#[derive(Subcommand)]
pub enum CheckpointCommands {
/// List all available checkpoints
#[command(name = "list", alias = "ls")]
List {
/// Filter by workflow ID
#[arg(long)]
workflow_id: Option<String>,
/// Working directory
#[arg(short = 'p', long)]
path: Option<PathBuf>,
},
/// Delete checkpoints for completed workflows
#[command(name = "clean")]
Clean {
/// Clean checkpoints for specific workflow
#[arg(long)]
workflow_id: Option<String>,
/// Clean all completed workflow checkpoints
#[arg(long)]
all: bool,
/// Force deletion without confirmation
#[arg(short = 'f', long)]
force: bool,
/// Working directory
#[arg(short = 'p', long)]
path: Option<PathBuf>,
},
/// Show detailed checkpoint information
#[command(name = "show")]
Show {
/// Workflow ID
workflow_id: String,
/// Checkpoint version (defaults to latest)
#[arg(long)]
version: Option<u32>,
/// Working directory
#[arg(short = 'p', long)]
path: Option<PathBuf>,
},
/// Validate checkpoint integrity
#[command(name = "validate")]
Validate {
/// Checkpoint ID
checkpoint_id: String,
/// Attempt to repair if corrupt
#[arg(long)]
repair: bool,
/// Working directory
#[arg(short = 'p', long)]
path: Option<PathBuf>,
},
/// List MapReduce checkpoints
#[command(name = "mapreduce")]
MapReduce {
/// Job ID to list checkpoints for
job_id: String,
/// Show detailed information
#[arg(long)]
detailed: bool,
/// Working directory
#[arg(short = 'p', long)]
path: Option<PathBuf>,
},
/// Delete a specific checkpoint
#[command(name = "delete")]
Delete {
/// Checkpoint ID
checkpoint_id: String,
/// Force deletion without confirmation
#[arg(long)]
force: bool,
/// Working directory
#[arg(short = 'p', long)]
path: Option<PathBuf>,
},
}
#[derive(Subcommand)]
pub enum EventCommands {
/// List all events
#[command(alias = "list")]
Ls {
/// Filter by job ID
#[arg(long)]
job_id: Option<String>,
/// Filter by event type
#[arg(long)]
event_type: Option<String>,
/// Filter by agent ID
#[arg(long)]
agent_id: Option<String>,
/// Show only events from the last N minutes
#[arg(long)]
since: Option<u64>,
/// Limit number of events shown
#[arg(long, default_value = "100")]
limit: usize,
/// Path to events file
#[arg(long, default_value = ".prodigy/events/mapreduce_events.jsonl")]
file: PathBuf,
},
/// Show event statistics
Stats {
/// Path to events file
#[arg(long, default_value = ".prodigy/events/mapreduce_events.jsonl")]
file: PathBuf,
/// Group statistics by field (job_id, event_type, agent_id)
#[arg(long, default_value = "event_type")]
group_by: String,
},
/// Search events by pattern
Search {
/// Search pattern (regex supported)
pattern: String,
/// Path to events file
#[arg(long, default_value = ".prodigy/events/mapreduce_events.jsonl")]
file: PathBuf,
/// Search in specific fields only
#[arg(long)]
fields: Option<Vec<String>>,
},
/// Follow events in real-time (tail -f style)
Follow {
/// Path to events file
#[arg(long, default_value = ".prodigy/events/mapreduce_events.jsonl")]
file: PathBuf,
/// Filter by job ID
#[arg(long)]
job_id: Option<String>,
/// Filter by event type
#[arg(long)]
event_type: Option<String>,
},
/// Clean old events based on retention policies
Clean {
/// Delete events older than specified duration (e.g., "7d", "30d")
#[arg(long)]
older_than: Option<String>,
/// Keep only the most recent N events
#[arg(long)]
max_events: Option<usize>,
/// Keep only events up to specified size (e.g., "10MB", "1GB")
#[arg(long)]
max_size: Option<String>,
/// Preview what would be deleted without actually deleting
#[arg(long)]
dry_run: bool,
/// Archive events instead of deleting them
#[arg(long)]
archive: bool,
/// Path to archive directory
#[arg(long)]
archive_path: Option<PathBuf>,
/// Apply to all jobs instead of current job
#[arg(long)]
all_jobs: bool,
/// Specific job ID to clean
#[arg(long)]
job_id: Option<String>,
/// Specific event file to clean (for testing)
#[arg(long)]
file: Option<PathBuf>,
},
/// Export events to different format
Export {
/// Path to events file
#[arg(long, default_value = ".prodigy/events/mapreduce_events.jsonl")]
file: PathBuf,
/// Output format (json, csv, markdown)
#[arg(long, default_value = "json")]
format: String,
/// Output file (stdout if not specified)
#[arg(long)]
output: Option<PathBuf>,
},
}
#[derive(Subcommand)]
pub enum DlqCommands {
/// List items in the Dead Letter Queue
List {
/// Job ID to filter by
#[arg(long)]
job_id: Option<String>,
/// Only show reprocess-eligible items
#[arg(long)]
eligible: bool,
/// Limit number of items to display
#[arg(long, default_value = "50")]
limit: usize,
},
/// Inspect a specific DLQ item
Inspect {
/// Item ID to inspect
item_id: String,
/// Job ID containing the item
#[arg(long)]
job_id: Option<String>,
},
/// Analyze failure patterns in the DLQ
Analyze {
/// Job ID to analyze
#[arg(long)]
job_id: Option<String>,
/// Export analysis to file
#[arg(long)]
export: Option<PathBuf>,
},
/// Export DLQ items to a file
Export {
/// Output file path
output: PathBuf,
/// Job ID to export from
#[arg(long)]
job_id: Option<String>,
/// Export format (json, csv)
#[arg(long, default_value = "json")]
format: String,
},
/// Purge old items from the DLQ
Purge {
/// Delete items older than N days
#[arg(long)]
older_than_days: u32,
/// Job ID to purge from
#[arg(long)]
job_id: Option<String>,
/// Confirm purge without prompting
#[arg(long)]
yes: bool,
},
/// Retry failed items from the DLQ
Retry {
/// Workflow ID to retry
workflow_id: String,
/// Filter expression for selective retry
#[arg(long)]
filter: Option<String>,
/// Maximum retry attempts
#[arg(long, default_value = "3")]
max_retries: u32,
/// Number of parallel workers
#[arg(long, default_value = "10")]
parallel: usize,
/// Force retry even if not eligible
#[arg(long)]
force: bool,
},
/// Show DLQ statistics
Stats {
/// Show stats for specific workflow
#[arg(long)]
workflow_id: Option<String>,
},
/// Clear processed items from DLQ
Clear {
/// Workflow ID to clear
workflow_id: String,
/// Confirm clear without prompting
#[arg(long)]
yes: bool,
},
}
#[derive(Subcommand)]
pub enum WorktreeCommands {
/// List active Prodigy worktrees
#[command(alias = "list")]
Ls {
/// Output in JSON format
#[arg(long)]
json: bool,
/// Show detailed information for each session
#[arg(short = 'd', long)]
detailed: bool,
},
/// Merge a worktree's changes to the default branch (main or master)
Merge {
/// Name of the worktree to merge
name: Option<String>,
/// Merge all Prodigy worktrees
#[arg(long)]
all: bool,
},
/// Clean up completed or abandoned worktrees
Clean {
/// Clean up all Prodigy worktrees
#[arg(short = 'a', long)]
all: bool,
/// Name of specific worktree to clean
name: Option<String>,
/// Force removal even if there are untracked or modified files
#[arg(short = 'f', long)]
force: bool,
/// Only clean up sessions that have been merged
#[arg(long)]
merged_only: bool,
/// Clean MapReduce-specific worktrees
#[arg(long)]
mapreduce: bool,
/// Clean worktrees older than specified duration (e.g., "1h", "24h")
#[arg(long)]
older_than: Option<String>,
/// Show what would be cleaned without actually cleaning
#[arg(long)]
dry_run: bool,
/// Specific job ID to clean
#[arg(long)]
job_id: Option<String>,
},
/// Clean orphaned worktrees from cleanup failures
CleanOrphaned {
/// Job ID to clean orphaned worktrees for
job_id: Option<String>,
/// Show what would be cleaned without actually cleaning
#[arg(long)]
dry_run: bool,
/// Force removal without confirmation
#[arg(short = 'f', long)]
force: bool,
},
}
#[derive(Subcommand)]
pub enum CleanCommands {
/// Clean all storage types
All {
/// Only clean storage older than duration (e.g., "7d", "30d")
#[arg(long)]
older_than: Option<String>,
/// Clean across all repositories
#[arg(long)]
all_repos: bool,
/// Preview what would be cleaned without actually cleaning
#[arg(long)]
dry_run: bool,
/// Skip all confirmations
#[arg(short, long)]
force: bool,
},
/// Clean worktrees only
Worktrees {
/// Only clean worktrees older than duration
#[arg(long)]
older_than: Option<String>,
/// Clean MapReduce worktrees
#[arg(long)]
mapreduce: bool,
/// Preview what would be cleaned
#[arg(long)]
dry_run: bool,
/// Skip confirmations
#[arg(short, long)]
force: bool,
},
/// Clean session state
Sessions {
/// Only clean sessions older than duration
#[arg(long)]
older_than: Option<String>,
/// Preview what would be cleaned
#[arg(long)]
dry_run: bool,
/// Skip confirmations
#[arg(short, long)]
force: bool,
},
/// Clean Claude execution logs
Logs {
/// Only clean logs older than duration
#[arg(long)]
older_than: Option<String>,
/// Preview what would be cleaned
#[arg(long)]
dry_run: bool,
/// Skip confirmations
#[arg(short, long)]
force: bool,
},
/// Clean MapReduce job state
State {
/// Only clean state older than duration
#[arg(long)]
older_than: Option<String>,
/// Preview what would be cleaned
#[arg(long)]
dry_run: bool,
/// Skip confirmations
#[arg(short, long)]
force: bool,
},
/// Clean event logs
Events {
/// Only clean events older than duration
#[arg(long)]
older_than: Option<String>,
/// Preview what would be cleaned
#[arg(long)]
dry_run: bool,
/// Skip confirmations
#[arg(short, long)]
force: bool,
},
/// Clean Dead Letter Queue data
Dlq {
/// Only clean DLQ data older than duration
#[arg(long)]
older_than: Option<String>,
/// Preview what would be cleaned
#[arg(long)]
dry_run: bool,
/// Skip confirmations
#[arg(short, long)]
force: bool,
},
}
#[derive(Subcommand, Debug)]
pub enum TemplateCommand {
/// Register a new workflow template
Register {
/// Path to template file
path: PathBuf,
/// Template name (defaults to filename)
#[arg(short = 'n', long)]
name: Option<String>,
/// Template description
#[arg(short = 'd', long)]
description: Option<String>,
/// Template version
#[arg(long, default_value = "1.0.0")]
version: String,
/// Template tags (comma-separated)
#[arg(short = 't', long, value_delimiter = ',')]
tags: Vec<String>,
/// Template author
#[arg(short = 'a', long)]
author: Option<String>,
},
/// List all registered templates
List {
/// Filter by tag
#[arg(short = 't', long)]
tag: Option<String>,
/// Show detailed information
#[arg(short = 'l', long)]
long: bool,
},
/// Show detailed information about a template
Show {
/// Template name
name: String,
},
/// Delete a registered template
Delete {
/// Template name
name: String,
/// Skip confirmation prompt
#[arg(short = 'f', long)]
force: bool,
},
/// Search for templates
Search {
/// Search query
query: String,
/// Search by tag instead of name
#[arg(short = 't', long)]
by_tag: bool,
},
/// Validate a template file
Validate {
/// Path to template file
path: PathBuf,
},
/// Initialize template directory structure
Init {
/// Template directory path (defaults to ./templates)
#[arg(default_value = "templates")]
path: PathBuf,
},
}
#[derive(Subcommand)]
pub enum ConfigCommands {
/// Trace where configuration values come from
Trace {
/// Configuration path to trace (e.g., "log_level", "project.name")
#[arg()]
path: Option<String>,
/// Show all configuration values with sources
#[arg(long)]
all: bool,
/// Show only values that were overridden
#[arg(long)]
overrides: bool,
/// Detect and show potential configuration issues
#[arg(long)]
diagnose: bool,
/// Output as JSON
#[arg(long)]
json: bool,
},
/// Show effective configuration values
Show {
/// Configuration path to show (e.g., "log_level", "project.name")
#[arg()]
path: Option<String>,
/// Output as JSON
#[arg(long)]
json: bool,
},
}
#[derive(Subcommand)]
pub enum ChangelogCommands {
/// Generate changelog from git commits
Generate {
/// Output file path (defaults to CHANGELOG.md)
#[arg(short = 'o', long, default_value = "CHANGELOG.md")]
output: PathBuf,
/// Start from this tag/commit
#[arg(long)]
from: Option<String>,
/// End at this tag/commit (defaults to HEAD)
#[arg(long)]
to: Option<String>,
/// Include only commits matching pattern
#[arg(long)]
filter: Option<String>,
/// Preview without writing file
#[arg(long)]
dry_run: bool,
},
/// Validate changelog format
Validate {
/// Changelog file to validate (defaults to CHANGELOG.md)
#[arg(default_value = "CHANGELOG.md")]
file: PathBuf,
/// Check for Keep a Changelog compliance
#[arg(long)]
strict: bool,
/// Output validation report as JSON
#[arg(long)]
json: bool,
},
/// Prepare a new release section
Release {
/// Version number for the release
version: String,
/// Release date (defaults to today)
#[arg(long)]
date: Option<String>,
/// Generate from commits since last release
#[arg(long)]
from_commits: bool,
/// Preview without writing file
#[arg(long)]
dry_run: bool,
},
/// Export changelog to different formats
Export {
/// Input changelog file (defaults to CHANGELOG.md)
#[arg(short = 'i', long, default_value = "CHANGELOG.md")]
input: PathBuf,
/// Output file path
#[arg(short = 'o', long)]
output: PathBuf,
/// Export format (json, html, xml)
#[arg(short = 'f', long, default_value = "json")]
format: String,
/// Include only specific version
#[arg(long)]
version: Option<String>,
},
/// Add a changelog entry
Add {
/// Entry type (added, changed, deprecated, removed, fixed, security)
#[arg(short = 't', long)]
entry_type: String,
/// Entry description
description: String,
/// Add to unreleased section
#[arg(long, default_value = "true")]
unreleased: bool,
/// Specific version to add to
#[arg(long)]
version: Option<String>,
},
/// Show changelog statistics
Stats {
/// Changelog file (defaults to CHANGELOG.md)
#[arg(default_value = "CHANGELOG.md")]
file: PathBuf,
/// Output as JSON
#[arg(long)]
json: bool,
},
}