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
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
use {
clap::{command, Arg, ArgAction, Command},
solana_clap_utils::input_validators::{is_url_or_moniker, is_valid_signer},
};
fn validate_signer(s: &str) -> Result<String, String> {
is_valid_signer(s).map(|()| s.to_string())
}
fn validate_url_or_moniker(s: &str) -> Result<String, String> {
is_url_or_moniker(s).map(|()| s.to_string())
}
/// Construct the cli input model and parse command line
pub fn parse_command_line() -> clap::ArgMatches {
command!()
.disable_version_flag(true) // Disable the auto-generated --version flag
.arg_required_else_help(false) // Allow no args to default to advanced chat
.before_help("░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
........███████.....█████████..█████...█████..█████...█████.....▐█░░░░░░
......███░░░░░███..███░░░░░███░░███...░░███.░░██████.██████.......▐█░░░░
.....███.....░░███░███....░░░..░███....░███..░███░█████░███.........▐█░░
....░███......░███░░█████████..░███....░███..░███░░███░░███...........▐█
....░███......░███.░░░░░░░░███.░░███...███...░███░░░░░░░███.........▐█░░
....░░███.....███..███....░███..░░░█████░....░███░░░░░░░███.......▐█░░░░
░░░░░░░░███████░░░░░█████████░░░░░░░███░░░░░░░███░░░░░░░███░░░░░▐█░░░░░░
███████████████████████████████████████████████████████████████████████
🚀 OSVM CLI - OpenSVM Command Line Interface
Advanced Solana Virtual Machine management with AI-powered security auditing")
// Add version aliases as subcommands
.subcommand(Command::new("v").about("Show version information"))
.subcommand(Command::new("ver").about("Show version information"))
.subcommand(Command::new("version").about("Show version information"))
.allow_external_subcommands(true)
// Add a single version flag with multiple aliases
.arg(
Arg::new("version_flag")
.long("version")
.short('V')
.visible_aliases(["v", "ver"])
.action(ArgAction::SetTrue)
.help("Show version information")
.global(false)
)
// Global arguments
.arg({
let mut arg = Arg::new("config_file")
.short('C')
.long("config")
.value_name("PATH")
.help("Configuration file to use")
.global(true);
if let Some(ref config_file) = *solana_cli_config::CONFIG_FILE {
arg = arg.default_value(config_file.as_str());
}
arg
})
.arg(
Arg::new("keypair")
.long("keypair")
.value_name("KEYPAIR")
.value_parser(validate_signer)
.global(true)
.help("Filepath or URL to a keypair [default: client keypair]"),
)
.arg(
Arg::new("verbose")
.long("verbose")
.short('v')
.global(true)
.action(ArgAction::Count)
.help("Sets the level of verbosity (-v, -vv, -vvv)"),
)
.arg(
Arg::new("no_color")
.long("no-color")
.action(ArgAction::SetTrue)
.global(true)
.help("Disable colorized output (also respects NO_COLOR environment variable)"),
)
.arg(
Arg::new("debug")
.long("debug")
.action(ArgAction::SetTrue)
.global(true)
.help("Show debug information"),
)
.arg(
Arg::new("json_rpc_url")
.short('u')
.long("url")
.value_name("URL")
.global(true)
.value_parser(validate_url_or_moniker)
.help("JSON RPC URL for the cluster [default: value from configuration file]"),
)
.arg(
Arg::new("svm")
.long("svm")
.value_name("SVM_LIST")
.help("Comma-separated list of SVMs to install"),
)
.arg(
Arg::new("node-type")
.long("node-type")
.value_name("TYPE")
.value_parser(clap::builder::PossibleValuesParser::new(["validator", "rpc"]))
.default_value("validator")
.help("Type of node to install (validator or RPC)"),
)
.arg(
Arg::new("network")
.long("network")
.value_name("NETWORK")
.value_parser(clap::builder::PossibleValuesParser::new(["mainnet", "testnet", "devnet"]))
.default_value("mainnet")
.help("Network to deploy on")
)
// MOVED RPC SUBCOMMAND TO BE FIRST
.subcommand(
Command::new("rpc-manager") // Renamed from "rpc" to "rpc-manager"
.about("Manage RPC nodes (local/remote)")
.arg_required_else_help(true)
.subcommand( // Moved sonic to be first
Command::new("sonic")
.about("Deploy a Sonic RPC node")
.arg(
Arg::new("connection")
.help("SSH connection string (format: user@host[:port])")
.required(true)
.index(1)
)
.arg(
Arg::new("network")
.long("network")
.value_name("NETWORK")
.value_parser(clap::builder::PossibleValuesParser::new(["mainnet", "testnet", "devnet"]))
.default_value("mainnet")
.help("Network to deploy on")
)
)
.subcommand(
Command::new("query-solana") // Renamed from "solana"
.about("Query Solana RPC endpoint (info, health, monitor)") // Updated about string
.arg(
Arg::new("network")
.long("network")
.value_name("NETWORK")
.value_parser(clap::builder::PossibleValuesParser::new(["mainnet", "testnet", "devnet"]))
.default_value("mainnet")
.help("Solana network to query")
)
.arg(
Arg::new("custom-url")
.long("custom-url")
.value_name("URL")
.help("Custom RPC URL to query")
)
.arg(
Arg::new("monitor")
.long("monitor")
.action(ArgAction::SetTrue)
.help("Monitor network activity in real-time")
)
.arg(
Arg::new("health")
.long("health")
.action(ArgAction::SetTrue)
.help("Check network health")
)
.arg(
Arg::new("info")
.long("info")
.action(ArgAction::SetTrue)
.help("Show network information (default if no other flag)")
)
)
.subcommand(
Command::new("local")
.about("Deploy a local RPC node on localhost")
.arg(
Arg::new("svm")
.long("svm")
.value_name("SVM_NAME")
.value_parser(clap::builder::PossibleValuesParser::new(["solana", "sonic", "eclipse", "soon", "opensvm"]))
.default_value("solana")
.help("SVM to deploy RPC for")
)
.arg(
Arg::new("network")
.long("network")
.value_name("NETWORK")
.value_parser(clap::builder::PossibleValuesParser::new(["mainnet", "testnet", "devnet"]))
.default_value("devnet")
.help("Network to deploy on")
)
.arg(
Arg::new("port")
.long("port")
.value_name("PORT")
.default_value("8899")
.help("RPC port to bind to (default: 8899)")
)
.arg(
Arg::new("faucet-port")
.long("faucet-port")
.value_name("FAUCET_PORT")
.default_value("9900")
.help("Faucet port for devnet (default: 9900)")
)
.arg(
Arg::new("ledger-path")
.long("ledger-path")
.value_name("PATH")
.default_value("/tmp/test-ledger")
.help("Ledger data directory path")
)
.arg(
Arg::new("reset")
.long("reset")
.action(ArgAction::SetTrue)
.help("Reset the ledger on startup")
)
.arg(
Arg::new("background")
.long("background")
.short('d')
.action(ArgAction::SetTrue)
.help("Run in background (daemon mode)")
)
.arg(
Arg::new("stop")
.long("stop")
.action(ArgAction::SetTrue)
.help("Stop running local RPC node")
)
.arg(
Arg::new("status")
.long("status")
.action(ArgAction::SetTrue)
.help("Check status of local RPC node")
)
)
.subcommand(
Command::new("test")
.about("Start a local test validator with RPC for development")
.arg(
Arg::new("ledger-path")
.long("ledger-path")
.value_name("PATH")
.default_value("test-ledger")
.help("Ledger data directory path")
)
.arg(
Arg::new("rpc-port")
.long("rpc-port")
.value_name("PORT")
.default_value("8899")
.help("RPC port to bind to")
)
.arg(
Arg::new("faucet-port")
.long("faucet-port")
.value_name("PORT")
.default_value("9900")
.help("Faucet port for SOL airdrops")
)
.arg(
Arg::new("reset")
.long("reset")
.action(ArgAction::SetTrue)
.help("Reset the ledger on startup")
)
.arg(
Arg::new("background")
.long("background")
.short('d')
.action(ArgAction::SetTrue)
.help("Run in background (daemon mode)")
)
.arg(
Arg::new("stop")
.long("stop")
.action(ArgAction::SetTrue)
.help("Stop running test validator")
)
.arg(
Arg::new("status")
.long("status")
.action(ArgAction::SetTrue)
.help("Check status of test validator")
)
.arg(
Arg::new("logs")
.long("logs")
.action(ArgAction::SetTrue)
.help("Show recent logs from test validator")
)
.arg(
Arg::new("quiet")
.long("quiet")
.short('q')
.action(ArgAction::SetTrue)
.help("Suppress non-essential output")
)
)
.subcommand(
Command::new("devnet")
.about("Start a legitimate devnet RPC node that syncs with Solana devnet")
.arg(
Arg::new("ledger-path")
.long("ledger-path")
.value_name("PATH")
.default_value("devnet-ledger")
.help("Ledger data directory path for devnet sync")
)
.arg(
Arg::new("rpc-port")
.long("rpc-port")
.value_name("PORT")
.default_value("8899")
.help("RPC port to bind to")
)
.arg(
Arg::new("background")
.long("background")
.short('d')
.action(ArgAction::SetTrue)
.help("Run in background (daemon mode)")
)
.arg(
Arg::new("stop")
.long("stop")
.action(ArgAction::SetTrue)
.help("Stop running devnet RPC node")
)
.arg(
Arg::new("status")
.long("status")
.action(ArgAction::SetTrue)
.help("Check status of devnet RPC node")
)
.arg(
Arg::new("logs")
.long("logs")
.action(ArgAction::SetTrue)
.help("Show recent logs from devnet RPC node")
)
.arg(
Arg::new("lines")
.long("lines")
.short('n')
.value_name("LINES")
.default_value("50")
.help("Number of recent log lines to show (used with --logs)")
)
.arg(
Arg::new("follow")
.long("follow")
.short('f')
.action(ArgAction::SetTrue)
.help("Follow log output in real-time (used with --logs)")
)
)
)
// END OF MOVED RPC SUBCOMMAND
.subcommand(
Command::new("examples")
.about("Show usage examples for OSVM CLI commands")
.arg(
Arg::new("category")
.long("category")
.short('c')
.value_name("CATEGORY")
.help("Filter examples by category (basic, svm, node, monitoring, workflow)")
)
.arg(
Arg::new("list_categories")
.long("list-categories")
.action(ArgAction::SetTrue)
.help("List all available example categories")
)
)
.subcommand(
Command::new("chat")
.about("Launch interactive agent chat interface with MCP tools - now with advanced AI planning!")
.long_about("Launch a comprehensive chat interface with AI-powered tool planning and execution.\n\
\n\
Basic Mode (default):\n\
• Simple chat interface with MCP tool integration\n\
• Single chat session\n\
• Basic tool calling\n\
\n\
Advanced Mode (--advanced):\n\
• FAR-style/Borland TUI design with dual panels\n\
• AI-powered input parsing and intelligent tool planning\n\
• Multiple chat sessions with background agent execution\n\
• Session recording and agent control (run/pause/stop)\n\
• Professional multi-session management")
.arg(
Arg::new("debug")
.long("debug")
.action(ArgAction::SetTrue)
.help("Enable debug mode for chat interface")
)
.arg(
Arg::new("test")
.long("test")
.action(ArgAction::SetTrue)
.help("Run comprehensive UI tests and show screenshots")
)
.arg(
Arg::new("advanced")
.long("advanced")
.action(ArgAction::SetTrue)
.help("Launch advanced FAR-style chat interface with AI planning and multi-session support")
)
)
.subcommand(
Command::new("agent")
.about("Execute agent commands with AI planning and MCP tool execution")
.long_about("Execute a single agent command with AI-powered planning and tool execution.\n\
\n\
The agent will:\n\
• Analyze your request using AI\n\
• Create an execution plan with available MCP tools\n\
• Execute the tools in sequence\n\
• Provide a contextual response\n\
\n\
Examples:\n\
• osvm agent \"What's my wallet balance?\"\n\
• osvm agent \"Show recent transactions\"\n\
• osvm agent \"Deploy a validator node\"")
.arg(
Arg::new("prompt")
.value_name("PROMPT")
.help("The prompt or command for the agent to execute")
.required(true)
.index(1)
)
.arg(
Arg::new("json")
.long("json")
.action(ArgAction::SetTrue)
.help("Output results in JSON format")
)
.arg(
Arg::new("verbose")
.long("verbose")
.short('v')
.action(ArgAction::Count)
.help("Show detailed execution steps")
)
.arg(
Arg::new("no-tools")
.long("no-tools")
.action(ArgAction::SetTrue)
.help("Disable MCP tool execution (AI response only)")
)
.arg(
Arg::new("timeout")
.long("timeout")
.value_name("SECONDS")
.default_value("30")
.help("Maximum execution time in seconds")
)
)
.subcommand(
Command::new("svm")
.about("Manage Solana Virtual Machines (SVMs)")
.arg_required_else_help(true)
.subcommand(
Command::new("list")
.about("List all SVMs installed in the chain")
)
.subcommand(
Command::new("dashboard")
.about("Launch interactive SVM monitoring dashboard")
)
.subcommand(
Command::new("get")
.about("Get detailed information about a specific SVM")
.arg(
Arg::new("name")
.value_name("NAME")
.index(1)
.required(true)
.help("Name of the SVM to get information about")
)
)
.subcommand(
Command::new("install")
.about("Install an SVM on a remote host")
.arg(
Arg::new("name")
.value_name("NAME")
.index(1)
.required(true)
.help("Name of the SVM to install")
)
.arg(
Arg::new("host")
.long("host")
.value_name("HOST")
.required(true)
.help("Remote host to install on (format: user@host[:port])")
)
)
)
// Node management commands
.subcommand(
Command::new("nodes")
.about("Manage validator and RPC nodes")
.arg_required_else_help(true)
.subcommand(
Command::new("list")
.about("List all nodes")
.arg(
Arg::new("svm")
.long("svm")
.value_name("SVM_NAME")
.help("Filter nodes by SVM")
)
.arg(
Arg::new("type")
.long("type")
.value_name("NODE_TYPE")
.value_parser(clap::builder::PossibleValuesParser::new(["validator", "rpc", "all"]))
.default_value("all")
.help("Filter nodes by type")
)
.arg(
Arg::new("network")
.long("network")
.value_name("NETWORK")
.value_parser(clap::builder::PossibleValuesParser::new(["mainnet", "testnet", "devnet", "all"]))
.default_value("all")
.help("Filter nodes by network")
)
.arg(
Arg::new("status")
.long("status")
.value_name("STATUS")
.value_parser(clap::builder::PossibleValuesParser::new(["running", "stopped", "error", "unknown", "all"]))
.default_value("all")
.help("Filter nodes by status")
)
.arg(
Arg::new("json")
.long("json")
.action(ArgAction::SetTrue)
.help("Output as JSON")
)
)
.subcommand(
Command::new("dashboard").about("Launch interactive node monitoring dashboard")
)
.subcommand(
Command::new("status")
.about("Check status of nodes")
.arg(
Arg::new("node-id")
.value_name("NODE_ID")
.index(1)
.required(true)
.help("ID of the node to check")
)
.arg(
Arg::new("json")
.long("json")
.action(ArgAction::SetTrue)
.help("Output as JSON")
)
)
.subcommand(
Command::new("get")
.about("Get detailed information about a specific node")
.arg(
Arg::new("node-id")
.value_name("NODE_ID")
.index(1)
.required(true)
.help("ID of the node to get information about")
)
.arg(
Arg::new("json")
.long("json")
.action(ArgAction::SetTrue)
.help("Output as JSON")
)
)
.subcommand(
Command::new("restart")
.about("Restart a node")
.arg(
Arg::new("node-id")
.value_name("NODE_ID")
.index(1)
.required(true)
.help("ID of the node to restart")
)
)
.subcommand(
Command::new("stop")
.about("Stop a node")
.arg(
Arg::new("node-id")
.value_name("NODE_ID")
.index(1)
.required(true)
.help("ID of the node to stop")
)
)
.subcommand(
Command::new("logs")
.about("View logs from a node")
.arg(
Arg::new("node-id")
.value_name("NODE_ID")
.index(1)
.required(true)
.help("ID of the node to get logs from")
)
.arg(
Arg::new("lines")
.long("lines")
.short('n')
.value_name("LINES")
.default_value("100")
.help("Number of lines to show")
)
.arg(
Arg::new("follow")
.long("follow")
.short('f')
.action(ArgAction::SetTrue)
.help("Follow log output")
)
)
.subcommand(
Command::new("deploy")
.about("Deploy a new node")
.arg(
Arg::new("svm")
.long("svm")
.value_name("SVM_NAME")
.required(true)
.help("SVM to deploy node for")
)
.arg(
Arg::new("type")
.long("type")
.value_name("NODE_TYPE")
.value_parser(clap::builder::PossibleValuesParser::new(["validator", "rpc"]))
.default_value("validator")
.help("Type of node to deploy")
)
.arg(
Arg::new("network")
.long("network")
.value_name("NETWORK")
.value_parser(clap::builder::PossibleValuesParser::new(["mainnet", "testnet", "devnet"]))
.default_value("mainnet")
.help("Network to deploy on")
)
.arg(
Arg::new("host")
.long("host")
.value_name("HOST")
.required(true)
.help("Remote host to deploy on (format: user@host[:port])")
)
.arg(
Arg::new("name")
.long("name")
.value_name("NAME")
.help("Custom name for the node (default: auto-generated)")
)
)
)
.subcommand(
Command::new("deploy")
.about("Deploy eBPF binary to all available SVM networks")
.arg(
Arg::new("binary")
.value_name("BINARY_PATH")
.help("Path to the eBPF binary file (.so)")
.required(true)
.index(1)
)
.arg(
Arg::new("program-id")
.long("program-id")
.value_name("PROGRAM_ID_PATH")
.help("Path to program keypair JSON file (for new deployments) or program address JSON file (for upgrades)")
.required(true)
)
.arg(
Arg::new("owner")
.long("owner")
.value_name("OWNER_PATH")
.help("Path to program owner keypair JSON file (must contain private key)")
.required(true)
)
.arg(
Arg::new("fee")
.long("fee")
.value_name("FEE_PAYER_PATH")
.help("Path to deployment fee payer keypair JSON file (must contain private key)")
.required(true)
)
.arg(
Arg::new("publish-idl")
.long("publish-idl")
.action(ArgAction::SetTrue)
.help("Publish IDL alongside the program deployment")
)
.arg(
Arg::new("idl-file")
.long("idl-file")
.value_name("IDL_PATH")
.help("Path to Anchor IDL JSON file (optional, defaults to generated IDL)")
)
.arg(
Arg::new("network")
.long("network")
.value_name("NETWORK")
.value_parser(clap::builder::PossibleValuesParser::new(["mainnet", "testnet", "devnet", "all"]))
.default_value("all")
.help("Network to deploy on (default: deploy to all networks)")
)
.arg(
Arg::new("json")
.long("json")
.action(ArgAction::SetTrue)
.help("Output results in JSON format for machine-readable processing")
)
.arg(
Arg::new("retry-attempts")
.long("retry-attempts")
.value_name("COUNT")
.default_value("3")
.help("Number of retry attempts for failed deployments (default: 3)")
)
.arg(
Arg::new("confirm-large")
.long("confirm-large")
.action(ArgAction::SetTrue)
.help("Require confirmation for deploying large binaries (>1MB)")
)
)
.subcommand(
Command::new("solana")
.about("Deploy and manage Solana validators")
.arg_required_else_help(true)
.subcommand(
Command::new("validator")
.about("Deploy a Solana validator node with enhanced features")
.arg(
Arg::new("connection")
.help("SSH connection string (format: user@host[:port])")
.required(true)
.index(1)
)
.arg(
Arg::new("network")
.long("network")
.value_name("NETWORK")
.value_parser(clap::builder::PossibleValuesParser::new(["mainnet", "testnet", "devnet"]))
.default_value("mainnet")
.help("Network to deploy on")
)
.arg(
Arg::new("version")
.long("version")
.value_name("VERSION")
.help("Solana client version (e.g., v1.16.0, v1.18.23-jito)")
)
.arg(
Arg::new("client-type")
.long("client-type")
.value_name("TYPE")
.value_parser(clap::builder::PossibleValuesParser::new(["standard", "jito", "agave", "firedancer", "sig"]))
.default_value("agave")
.help("Solana client type (standard, jito, agave, firedancer, sig)")
)
.arg(
Arg::new("hot-swap")
.long("hot-swap")
.action(ArgAction::SetTrue)
.help("Enable hot-swap capability for high availability")
)
.arg(
Arg::new("ledger-disk")
.long("ledger-disk")
.value_name("DEVICE")
.help("Ledger disk device path (e.g., /dev/nvme0n1)")
)
.arg(
Arg::new("accounts-disk")
.long("accounts-disk")
.value_name("DEVICE")
.help("Accounts disk device path (e.g., /dev/nvme1n1)")
)
.arg(
Arg::new("metrics-config")
.long("metrics-config")
.value_name("CONFIG")
.help("Metrics configuration string (e.g., host=https://metrics.solana.com:8086,db=mainnet-beta,u=mainnet-beta_write,p=password)")
)
)
.subcommand(
Command::new("rpc")
.about("Deploy a Solana RPC node with enhanced features")
.arg(
Arg::new("connection")
.help("SSH connection string (format: user@host[:port])")
.required(true)
.index(1)
)
.arg(
Arg::new("network")
.long("network")
.value_name("NETWORK")
.value_parser(clap::builder::PossibleValuesParser::new(["mainnet", "testnet", "devnet"]))
.default_value("mainnet")
.help("Network to deploy on")
)
.arg(
Arg::new("version")
.long("version")
.value_name("VERSION")
.help("Solana client version (e.g., v1.16.0)")
)
.arg(
Arg::new("client-type")
.long("client-type")
.value_name("TYPE")
.value_parser(clap::builder::PossibleValuesParser::new(["standard", "jito", "agave", "firedancer", "sig"]))
.default_value("agave")
.help("Solana client type (standard, jito, agave, firedancer, sig)")
)
.arg(
Arg::new("ledger-disk")
.long("ledger-disk")
.value_name("DEVICE")
.help("Ledger disk device path (e.g., /dev/nvme0n1)")
)
.arg(
Arg::new("accounts-disk")
.long("accounts-disk")
.value_name("DEVICE")
.help("Accounts disk device path (e.g., /dev/nvme1n1)")
)
.arg(
Arg::new("metrics-config")
.long("metrics-config")
.value_name("CONFIG")
.help("Metrics configuration string")
)
.arg(
Arg::new("enable-history")
.long("enable-history")
.action(ArgAction::SetTrue)
.help("Enable transaction history (increases storage requirements)")
)
)
)
.subcommand(
Command::new("doctor")
.about("Comprehensive system health check and repair")
.arg(
Arg::new("check_all")
.long("check-all")
.action(ArgAction::SetTrue)
.help("Run comprehensive health check")
)
.arg(
Arg::new("fix")
.long("fix")
.action(ArgAction::SetTrue)
.help("Attempt to fix detected issues automatically")
)
.arg(
Arg::new("system_only")
.long("system-only")
.action(ArgAction::SetTrue)
.help("Check only system-level dependencies")
)
.arg(
Arg::new("user_only")
.long("user-only")
.action(ArgAction::SetTrue)
.help("Check only user-level dependencies")
)
.arg(
Arg::new("verbose")
.long("verbose")
.short('v')
.action(ArgAction::Count)
.help("Detailed diagnostic output")
)
)
.subcommand(
Command::new("mcp")
.about("Manage Model Context Protocol (MCP) servers")
.arg_required_else_help(true)
.subcommand(
Command::new("add")
.about("Add or update an MCP server configuration")
.arg(
Arg::new("server_id")
.help("Server identifier")
.required(true)
.index(1)
)
.arg(
Arg::new("server_url")
.long("server-url")
.value_name("URL")
.required(true)
.help("MCP server URL (e.g., http://localhost:3000)")
)
.arg(
Arg::new("name")
.long("name")
.value_name("NAME")
.help("Human-readable name for the server")
)
.arg(
Arg::new("transport")
.long("transport")
.value_name("TYPE")
.value_parser(clap::builder::PossibleValuesParser::new(["http", "stdio"]))
.default_value("http")
.help("Transport type for communication (websocket not yet implemented)")
)
.arg(
Arg::new("auth_type")
.long("auth-type")
.value_name("TYPE")
.value_parser(clap::builder::PossibleValuesParser::new(["none", "bearer", "api_key", "basic"]))
.default_value("none")
.help("Authentication type")
)
.arg(
Arg::new("auth_token")
.long("auth-token")
.value_name("TOKEN")
.help("Authentication token (for bearer or api_key auth)")
)
.arg(
Arg::new("username")
.long("username")
.value_name("USERNAME")
.help("Username (for basic auth)")
)
.arg(
Arg::new("password")
.long("password")
.value_name("PASSWORD")
.help("Password (for basic auth)")
)
.arg(
Arg::new("enabled")
.long("enabled")
.action(ArgAction::SetTrue)
.help("Enable the server immediately after adding")
)
)
.subcommand(
Command::new("add-github")
.about("Add MCP server from GitHub repository")
.arg(
Arg::new("server_id")
.help("Server identifier")
.required(true)
.index(1)
)
.arg(
Arg::new("github_url")
.help("GitHub repository URL (e.g., https://github.com/openSVM/solana-mcp-server)")
.required(true)
.index(2)
)
.arg(
Arg::new("name")
.long("name")
.value_name("NAME")
.help("Human-readable name for the server")
)
.arg(
Arg::new("enabled")
.long("enabled")
.action(ArgAction::SetTrue)
.help("Enable the server immediately after adding")
)
.arg(
Arg::new("yes")
.long("yes")
.short('y')
.action(ArgAction::SetTrue)
.help("Skip interactive confirmation (for automation and CI)")
)
)
.subcommand(
Command::new("remove")
.about("Remove an MCP server configuration")
.arg(
Arg::new("server_id")
.help("Server identifier to remove")
.required(true)
.index(1)
)
)
.subcommand(
Command::new("list")
.about("List all configured MCP servers")
.arg(
Arg::new("json")
.long("json")
.action(ArgAction::SetTrue)
.help("Output in JSON format")
)
.arg(
Arg::new("enabled_only")
.long("enabled-only")
.action(ArgAction::SetTrue)
.help("Show only enabled servers")
)
)
.subcommand(
Command::new("enable")
.about("Enable an MCP server")
.arg(
Arg::new("server_id")
.help("Server identifier to enable")
.required(true)
.index(1)
)
)
.subcommand(
Command::new("disable")
.about("Disable an MCP server")
.arg(
Arg::new("server_id")
.help("Server identifier to disable")
.required(true)
.index(1)
)
)
.subcommand(
Command::new("test")
.about("Test connectivity to an MCP server")
.arg(
Arg::new("server_id")
.help("Server identifier to test")
.required(true)
.index(1)
)
)
.subcommand(
Command::new("init")
.about("Initialize connection with an MCP server")
.arg(
Arg::new("server_id")
.help("Server identifier to initialize")
.required(true)
.index(1)
)
)
.subcommand(
Command::new("tools")
.about("List available tools from an MCP server")
.arg(
Arg::new("server_id")
.help("Server identifier")
.required(true)
.index(1)
)
.arg(
Arg::new("json")
.long("json")
.action(ArgAction::SetTrue)
.help("Output in JSON format")
)
)
.subcommand(
Command::new("call")
.about("Call a tool on an MCP server")
.arg(
Arg::new("server_id")
.help("Server identifier")
.required(true)
.index(1)
)
.arg(
Arg::new("tool_name")
.help("Name of the tool to call")
.required(true)
.index(2)
)
.arg(
Arg::new("arguments")
.long("args")
.value_name("JSON")
.help("Tool arguments as JSON (e.g., '{\"param\":\"value\"}')")
)
.arg(
Arg::new("json")
.long("json")
.action(ArgAction::SetTrue)
.help("Output in JSON format")
)
)
.subcommand(
Command::new("setup")
.about("Quick setup for Solana MCP server integration")
.arg(
Arg::new("mcp_url")
.long("mcp-url")
.value_name("URL")
.help("Solana MCP server URL (default: http://localhost:3000)")
.default_value("http://localhost:3000")
)
.arg(
Arg::new("auto_enable")
.long("auto-enable")
.action(ArgAction::SetTrue)
.help("Automatically enable the server after setup")
)
)
.subcommand(
Command::new("search")
.about("Search for MCP servers by name, description, or features")
.arg(
Arg::new("query")
.help("Search query (searches name, description, and features)")
.required(true)
.index(1)
)
.arg(
Arg::new("transport")
.long("transport")
.value_name("TYPE")
.value_parser(clap::builder::PossibleValuesParser::new(["http", "stdio", "any"]))
.default_value("any")
.help("Filter by transport type")
)
.arg(
Arg::new("enabled_only")
.long("enabled-only")
.action(ArgAction::SetTrue)
.help("Only show enabled servers")
)
.arg(
Arg::new("json")
.long("json")
.action(ArgAction::SetTrue)
.help("Output results in JSON format")
)
)
)
.subcommand(
Command::new("audit")
.about("Generate comprehensive security audit report")
.arg(
Arg::new("repository")
.help("Repository to audit (format: owner/repo or owner/repo#branch)")
.value_name("REPOSITORY")
.index(1)
)
.arg(
Arg::new("output")
.long("output")
.short('o')
.value_name("PATH")
.help("Output directory for audit report files")
.default_value("audit_reports")
)
.arg(
Arg::new("format")
.long("format")
.value_name("FORMAT")
.value_parser(clap::builder::PossibleValuesParser::new(["typst", "pdf", "both", "json", "html", "markdown"]))
.default_value("both")
.help("Output format: typst source, PDF, both, JSON, HTML, or Markdown")
)
.arg(
Arg::new("verbose")
.long("verbose")
.short('v')
.action(ArgAction::Count)
.help("Verbose audit output")
)
.arg(
Arg::new("test")
.long("test")
.action(ArgAction::SetTrue)
.help("Generate test audit report with sample data")
)
.arg(
Arg::new("noai")
.long("noai")
.action(ArgAction::SetTrue)
.help("Disable AI-powered security analysis")
)
.arg(
Arg::new("api-url")
.long("api-url")
.value_name("URL")
.help("Custom API URL for AI analysis (default: https://osvm.ai/api/getAnswer)")
)
.arg(
Arg::new("gh")
.long("gh")
.value_name("REPO#BRANCH")
.help("Git repository to audit in format: owner/repo#branch
Examples:
--gh opensvm/aeamcp#main # Audit main branch of opensvm/aeamcp
--gh solana-labs/solana#master # Audit Solana Labs repository
--gh myorg/myproject#develop # Audit develop branch
The command will:
1. Clone the specified repository and branch
2. Create a new audit branch with timestamp
3. Run comprehensive security analysis
4. Generate audit reports (Typst/PDF)
5. Commit and push results to the new branch")
)
.arg(
Arg::new("template")
.long("template")
.value_name("PATH")
.help("Path to external template file to use instead of built-in templates
Examples:
--template ./templates/custom.typst # Use custom Typst template
--template ./templates/custom.html # Use custom HTML template
--template ./templates/custom.json # Use custom JSON template
--template ./templates/custom.md # Use custom Markdown template
If not specified, built-in templates embedded in the binary will be used.")
)
.arg(
Arg::new("no-commit")
.long("no-commit")
.action(ArgAction::SetTrue)
.help("Don't commit audit results to repository. If no output directory is provided, files will be copied to the current folder.")
)
)
.subcommand(
Command::new("new_feature_command")
.about("New feature for testing")
)
.get_matches()
}