-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.commands.json
More file actions
10027 lines (10027 loc) · 290 KB
/
Copy pathcli.commands.json
File metadata and controls
10027 lines (10027 loc) · 290 KB
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
{
"about": "Cortex - AI Coding Agent",
"arguments": [
{
"help": "Configuration overrides in the form key=value",
"id": "raw_overrides",
"long": "config",
"required": false,
"short": "c"
},
{
"help": "Enable verbose output (same as --log-level debug)",
"id": "verbose",
"long": "verbose",
"required": false,
"short": "v"
},
{
"help": "Enable trace-level logging for debugging",
"id": "trace",
"long": "trace",
"required": false,
"short": null
},
{
"help": "Control color output: auto (default), always, or never",
"id": "color",
"long": "color",
"required": false,
"short": null
},
{
"help": "Model to use (e.g., claude-sonnet-4-20250514, gpt-4o, gemini-2.0-flash)",
"id": "model",
"long": "model",
"required": false,
"short": "m"
},
{
"help": "Use open-source/local LLM providers instead of cloud APIs",
"id": "oss",
"long": "oss",
"required": false,
"short": null
},
{
"help": "Configuration profile from config.toml",
"id": "config_profile",
"long": "profile",
"required": false,
"short": "p"
},
{
"help": "Select the sandbox policy for shell commands",
"id": "sandbox_mode",
"long": "sandbox",
"required": false,
"short": "s"
},
{
"help": "Set the approval policy for tool executions",
"id": "approval_policy",
"long": "ask-for-approval",
"required": false,
"short": "a"
},
{
"help": "Enable fully automatic mode with sandboxed execution",
"id": "full_auto",
"long": "full-auto",
"required": false,
"short": null
},
{
"help": "Skip all confirmation prompts and execute commands without sandboxing. DANGEROUS!",
"id": "dangerously_bypass_approvals_and_sandbox",
"long": "dangerously-bypass-approvals-and-sandbox",
"required": false,
"short": null
},
{
"help": "Tell the agent to use the specified directory as its working root",
"id": "cwd",
"long": "cd",
"required": false,
"short": "C"
},
{
"help": "Additional directories that should be writable",
"id": "add_dir",
"long": "add-dir",
"required": false,
"short": null
},
{
"help": "Image files to attach to the initial prompt",
"id": "images",
"long": "image",
"required": false,
"short": "i"
},
{
"help": "Enable web search capability for the agent",
"id": "web_search",
"long": "search",
"required": false,
"short": null
},
{
"help": "Enter the alternate screen buffer. Default is **always** (full viewport). Same as `[tui] alternate_screen = true`. Use `--no-alternate-screen` to stay inline",
"id": "alternate_screen",
"long": "alternate-screen",
"required": false,
"short": null
},
{
"help": "Stay inline in the host terminal (never alternate screen). Same as `[tui] alternate_screen = false`",
"id": "no_alternate_screen",
"long": "no-alternate-screen",
"required": false,
"short": null
},
{
"help": "Maximum number of concurrent agent threads",
"id": "max_agent_threads",
"long": "max-agent-threads",
"required": false,
"short": null
},
{
"help": "Maximum number of concurrent tool executions",
"id": "max_tool_threads",
"long": "max-tool-threads",
"required": false,
"short": null
},
{
"help": "Timeout for shell commands in seconds",
"id": "command_timeout",
"long": "command-timeout",
"required": false,
"short": null
},
{
"help": "Timeout for HTTP requests in seconds",
"id": "http_timeout",
"long": "http-timeout",
"required": false,
"short": null
},
{
"help": "Disable streaming responses",
"id": "no_streaming",
"long": "no-streaming",
"required": false,
"short": null
},
{
"help": "Set log verbosity level (error, warn, info, debug, trace)",
"id": "log_level",
"long": "log-level",
"required": false,
"short": "L"
},
{
"help": "Record private, content-free local diagnostics (never prompts or tool output)",
"id": "debug",
"long": "debug",
"required": false,
"short": null
},
{
"help": "Initial prompt (if no subcommand)",
"id": "prompt",
"long": null,
"required": false,
"short": null
},
{
"help": "Print help (see more with '--help')",
"id": "help",
"long": "help",
"required": false,
"short": "h"
},
{
"help": "Print version",
"id": "version",
"long": "version",
"required": false,
"short": "V"
}
],
"name": "cortex",
"subcommands": [
{
"about": "Run Cortex non-interactively with advanced options",
"arguments": [
{
"help": "Message to send to the AI agent. Multiple arguments are joined with spaces. Note: Prompts starting with a dash (e.g., \"--help explain this flag\") are supported and won't be interpreted as flags",
"id": "message",
"long": null,
"required": false,
"short": null
},
{
"help": "Execute a predefined command instead of a prompt. Use message arguments as command arguments",
"id": "command",
"long": "command",
"required": false,
"short": null
},
{
"help": "Continue the most recent session",
"id": "continue_session",
"long": "continue",
"required": false,
"short": "c"
},
{
"help": "Specify a session ID to continue",
"id": "session_id",
"long": "session",
"required": false,
"short": "s"
},
{
"help": "Automatically share the session and print the share URL",
"id": "share",
"long": "share",
"required": false,
"short": null
},
{
"help": "Model to use in provider/model format (e.g., anthropic/claude-3-5-sonnet)",
"id": "model",
"long": "model",
"required": false,
"short": "m"
},
{
"help": "Agent to use for this request",
"id": "agent",
"long": "agent",
"required": false,
"short": null
},
{
"help": "Output format: default (formatted), json, or jsonl",
"id": "format",
"long": "format",
"required": false,
"short": null
},
{
"help": "Output format alias (same as --format). Valid values: default, json, jsonl",
"id": "output",
"long": "output",
"required": false,
"short": null
},
{
"help": "File(s) to attach to the message. Can be specified multiple times",
"id": "files",
"long": "file",
"required": false,
"short": "f"
},
{
"help": "Title for the session. If empty string is provided, uses truncated prompt",
"id": "title",
"long": "title",
"required": false,
"short": null
},
{
"help": "Attach to a running Cortex server instead of starting locally. Value should be the server URL (e.g., \"http://localhost:3000\"). Use this to connect to a remote Cortex instance or an existing local server started with 'cortex serve'",
"id": "attach",
"long": "attach",
"required": false,
"short": null
},
{
"help": "Port for the local server (defaults to random port)",
"id": "port",
"long": "port",
"required": false,
"short": null
},
{
"help": "Model temperature (0.0-2.0). Lower values make output more deterministic",
"id": "temperature",
"long": "temperature",
"required": false,
"short": "t"
},
{
"help": "Top-p (nucleus) sampling parameter. Controls diversity of token selection",
"id": "top_p",
"long": "top-p",
"required": false,
"short": null
},
{
"help": "Top-k sampling parameter. Limits token selection to k most probable tokens. Note: Not all providers support combining --top-k with --temperature",
"id": "top_k",
"long": "top-k",
"required": false,
"short": null
},
{
"help": "Random seed for reproducible outputs",
"id": "seed",
"long": "seed",
"required": false,
"short": null
},
{
"help": "Send a desktop notification when the task completes",
"id": "notification",
"long": "notification",
"required": false,
"short": "n"
},
{
"help": "Stream output as it arrives (default behavior). Use --no-stream to buffer and wait for the complete response",
"id": "stream",
"long": "stream",
"required": false,
"short": null
},
{
"help": "Disable streaming - wait for complete response before outputting. This is the opposite of --stream (which is enabled by default)",
"id": "no_stream",
"long": "no-stream",
"required": false,
"short": null
},
{
"help": "Copy the final AI response to the system clipboard",
"id": "copy",
"long": "copy",
"required": false,
"short": "C"
},
{
"help": "Save the final response to a file. Parent directory will be created automatically if it doesn't exist",
"id": "output_file",
"long": "output-file",
"required": false,
"short": "o"
},
{
"help": "Working directory override",
"id": "cwd",
"long": "cwd",
"required": false,
"short": null
},
{
"help": "Additional directories that should be writable. Can be specified multiple times to add multiple directories",
"id": "add_dir",
"long": "add-dir",
"required": false,
"short": null
},
{
"help": "Enable verbose/debug output",
"id": "verbose",
"long": "verbose",
"required": false,
"short": "v"
},
{
"help": "Timeout in seconds (0 for no timeout)",
"id": "timeout",
"long": "timeout",
"required": false,
"short": null
},
{
"help": "Preview what would be sent without executing. Shows estimated token counts including system prompt and tool definitions",
"id": "dry_run",
"long": "dry-run",
"required": false,
"short": null
},
{
"help": "Maximum tokens for response (used for token validation). If specified, cortex will validate that prompt + max_tokens does not exceed the model's context limit before making the API call",
"id": "max_tokens",
"long": "max-tokens",
"required": false,
"short": null
},
{
"help": "Client instructions sent as additional user context, not a service system override",
"id": "system_prompt",
"long": "system",
"required": false,
"short": null
},
{
"help": "Path to a JSON schema file for structured output. When provided, the AI response will be validated against this schema",
"id": "schema",
"long": "schema",
"required": false,
"short": null
},
{
"help": "Suppress non-essential output (quiet mode). Only show the final result or errors",
"id": "quiet",
"long": "quiet",
"required": false,
"short": "q"
},
{
"help": "Disable progress indicators (useful for CI/CD environments)",
"id": "no_progress",
"long": "no-progress",
"required": false,
"short": null
},
{
"help": "Bypass any cached responses and force a fresh request",
"id": "no_cache",
"long": "no-cache",
"required": false,
"short": null
},
{
"help": "Number of times to retry failed requests (default: 0)",
"id": "retry",
"long": "retry",
"required": false,
"short": null
},
{
"help": "Frequency penalty (-2.0 to 2.0). Positive values penalize tokens based on their frequency in the text so far, decreasing the likelihood of repeating the same content verbatim",
"id": "frequency_penalty",
"long": "frequency-penalty",
"required": false,
"short": null
},
{
"help": "Presence penalty (-2.0 to 2.0). Positive values penalize new tokens based on whether they appear in the text so far, increasing the likelihood of talking about new topics",
"id": "presence_penalty",
"long": "presence-penalty",
"required": false,
"short": null
},
{
"help": "Stop sequences (can be specified multiple times). Generation will stop when any of these sequences is encountered",
"id": "stop_sequences",
"long": "stop",
"required": false,
"short": null
},
{
"help": "Request log probabilities for output tokens. Returns the log probabilities of the most likely tokens (up to 5)",
"id": "logprobs",
"long": "logprobs",
"required": false,
"short": null
},
{
"help": "Number of completions to generate. Returns multiple independent completions for the same prompt",
"id": "num_completions",
"long": "n",
"required": false,
"short": null
},
{
"help": "Generate best_of completions and return the best one. Must be greater than n if n is specified",
"id": "best_of",
"long": "best-of",
"required": false,
"short": null
},
{
"help": "Enable trace-level logging for debugging",
"id": "trace",
"long": "trace",
"required": false,
"short": null
},
{
"help": "Control color output: auto (default), always, or never",
"id": "color",
"long": "color",
"required": false,
"short": null
},
{
"help": "Print help (see more with '--help')",
"id": "help",
"long": "help",
"required": false,
"short": "h"
}
],
"name": "run",
"subcommands": []
},
{
"about": "Execute in headless mode (for CI/CD, scripts, automation)",
"arguments": [
{
"help": "The prompt to execute. Can also be provided via stdin or --file. Prompts starting with a dash (e.g., \"--help explain this\") are supported",
"id": "prompt",
"long": null,
"required": false,
"short": null
},
{
"help": "Read prompt from file",
"id": "file",
"long": "file",
"required": false,
"short": "f"
},
{
"help": "Output format",
"id": "output_format",
"long": "output-format",
"required": false,
"short": "o"
},
{
"help": "Input format (for multi-turn sessions)",
"id": "input_format",
"long": "input-format",
"required": false,
"short": null
},
{
"help": "Autonomy level for operations. - read-only: No modifications (default, safest) - low/medium: Unsupported client risk thresholds for Code - high: Server-owned agent execution, subject to service permissions",
"id": "autonomy",
"long": "auto",
"required": false,
"short": null
},
{
"help": "Unsupported for server-owned Code execution; fails before submission. Cannot be combined with --auto",
"id": "skip_permissions",
"long": "skip-permissions-unsafe",
"required": false,
"short": null
},
{
"help": "Model ID to use",
"id": "model",
"long": "model",
"required": false,
"short": "m"
},
{
"help": "Model ID to use for spec mode",
"id": "spec_model",
"long": "spec-model",
"required": false,
"short": null
},
{
"help": "Start in specification mode (plan before executing)",
"id": "use_spec",
"long": "use-spec",
"required": false,
"short": null
},
{
"help": "Reasoning effort level",
"id": "reasoning_effort",
"long": "reasoning-effort",
"required": false,
"short": "r"
},
{
"help": "Session ID to continue (requires a prompt)",
"id": "session_id",
"long": "session-id",
"required": false,
"short": "s"
},
{
"help": "Enable specific tools (comma or space separated)",
"id": "enabled_tools",
"long": "enabled-tools",
"required": false,
"short": null
},
{
"help": "Disable specific tools (comma or space separated)",
"id": "disabled_tools",
"long": "disabled-tools",
"required": false,
"short": null
},
{
"help": "List available tools for the selected model and exit",
"id": "list_tools",
"long": "list-tools",
"required": false,
"short": null
},
{
"help": "Working directory path",
"id": "cwd",
"long": "cwd",
"required": false,
"short": null
},
{
"help": "Maximum user turns per session (server-owned tool rounds are not client turns)",
"id": "max_turns",
"long": "max-turns",
"required": false,
"short": null
},
{
"help": "Timeout in seconds (0 for no timeout)",
"id": "timeout",
"long": "timeout",
"required": false,
"short": null
},
{
"help": "Image files to attach to the prompt",
"id": "images",
"long": "image",
"required": false,
"short": "i"
},
{
"help": "Verbose output (show tool calls, reasoning)",
"id": "verbose",
"long": "verbose",
"required": false,
"short": "v"
},
{
"help": "Client instructions sent as additional user context, not a service system override",
"id": "system_prompt",
"long": "system",
"required": false,
"short": null
},
{
"help": "Maximum tokens for response generation. Limits the length of the AI's response",
"id": "max_tokens",
"long": "max-tokens",
"required": false,
"short": null
},
{
"help": "Include the prompt in the output (echo mode). When enabled, the original prompt will be included at the beginning of the response",
"id": "echo",
"long": "echo",
"required": false,
"short": null
},
{
"help": "User identifier for tracking and rate limiting. This ID is passed to the API for usage tracking purposes",
"id": "user",
"long": "user",
"required": false,
"short": null
},
{
"help": "Suffix text for completion insertion mode. The model will generate text to insert between the prompt and this suffix",
"id": "suffix",
"long": "suffix",
"required": false,
"short": null
},
{
"help": "Response format for structured output. Valid values: text, json, json_object",
"id": "response_format",
"long": "response-format",
"required": false,
"short": null
},
{
"help": "URLs to fetch and include in the context. Content from these URLs will be fetched and added to the prompt",
"id": "urls",
"long": "url",
"required": false,
"short": null
},
{
"help": "Read input from the system clipboard. The clipboard content will be appended to the prompt",
"id": "clipboard",
"long": "clipboard",
"required": false,
"short": null
},
{
"help": "Include current git diff in the context. Useful for code review tasks",
"id": "git_diff",
"long": "git-diff",
"required": false,
"short": null
},
{
"help": "Include only files matching these patterns. Supports glob patterns like \"*.py\" or \"src/**/*.rs\"",
"id": "include_patterns",
"long": "include",
"required": false,
"short": null
},
{
"help": "Exclude files matching these patterns. Supports glob patterns like \"*.test.js\" or \"node_modules/**\"",
"id": "exclude_patterns",
"long": "exclude",
"required": false,
"short": null
},
{
"help": "Frequency penalty (-2.0 to 2.0). Positive values penalize tokens based on their frequency in the text so far, decreasing the likelihood of repeating the same content verbatim",
"id": "frequency_penalty",
"long": "frequency-penalty",
"required": false,
"short": null
},
{
"help": "Presence penalty (-2.0 to 2.0). Positive values penalize new tokens based on whether they appear in the text so far, increasing the likelihood of talking about new topics",
"id": "presence_penalty",
"long": "presence-penalty",
"required": false,
"short": null
},
{
"help": "Stop sequences (can be specified multiple times). Generation will stop when any of these sequences is encountered",
"id": "stop_sequences",
"long": "stop",
"required": false,
"short": null
},
{
"help": "Request log probabilities for output tokens. Returns the log probabilities of the most likely tokens (up to 5)",
"id": "logprobs",
"long": "logprobs",
"required": false,
"short": null
},
{
"help": "Number of completions to generate. Returns multiple independent completions for the same prompt",
"id": "num_completions",
"long": "n",
"required": false,
"short": "n"
},
{
"help": "Generate best_of completions and return the best one. Must be greater than n if n is specified",
"id": "best_of",
"long": "best-of",
"required": false,
"short": null
},
{
"help": "JSON schema for structured output. Can be inline JSON (e.g., '{\"type\":\"object\",\"properties\":{...}}') or a path to a JSON schema file",
"id": "output_schema",
"long": "output-schema",
"required": false,
"short": null
},
{
"help": "Enable trace-level logging for debugging",
"id": "trace",
"long": "trace",
"required": false,
"short": null
},
{
"help": "Control color output: auto (default), always, or never",
"id": "color",
"long": "color",
"required": false,
"short": null
},
{
"help": "Print help (see more with '--help')",
"id": "help",
"long": "help",
"required": false,
"short": "h"
}
],
"name": "exec",
"subcommands": []
},
{
"about": "Resume a previous interactive session",
"arguments": [
{
"help": "Session ID to resume (or \"last\" for most recent)",
"id": "session_id",
"long": null,
"required": false,
"short": null
},
{
"help": "Continue the most recent session without showing the picker",
"id": "last",
"long": "last",
"required": false,
"short": null
},
{
"help": "Show interactive picker to select from recent sessions",
"id": "pick",
"long": "pick",
"required": false,
"short": null
},
{
"help": "Show all sessions (disables cwd filtering)",
"id": "all",
"long": "all",
"required": false,
"short": null
},
{
"help": "Do not persist session changes (incompatible with resume, will error)",
"id": "no_session",
"long": "no-session",
"required": false,
"short": null
},
{
"help": "Configuration overrides in the form key=value",
"id": "raw_overrides",
"long": "config",
"required": false,
"short": "c"
},
{
"help": "Enable verbose output (same as --log-level debug)",
"id": "verbose",
"long": "verbose",
"required": false,
"short": "v"
},
{
"help": "Enable trace-level logging for debugging",
"id": "trace",
"long": "trace",
"required": false,
"short": null
},
{
"help": "Control color output: auto (default), always, or never",
"id": "color",
"long": "color",
"required": false,
"short": null
},
{
"help": "Print help (see more with '--help')",
"id": "help",
"long": "help",
"required": false,
"short": "h"
}
],
"name": "resume",
"subcommands": []
},
{
"about": "List previous sessions",
"arguments": [
{
"help": "Show all sessions including from other directories",
"id": "all",
"long": "all",
"required": false,
"short": null
},
{
"help": "Show sessions from the last N days",
"id": "days",
"long": "days",
"required": false,
"short": null
},
{
"help": "Show sessions since this date (YYYY-MM-DD)",
"id": "since",
"long": "since",
"required": false,
"short": null
},
{
"help": "Show sessions until this date (YYYY-MM-DD)",
"id": "until",
"long": "until",
"required": false,
"short": null
},
{
"help": "Show only favorite sessions",
"id": "favorites",
"long": "favorites",
"required": false,
"short": null
},
{
"help": "Search sessions by title or ID",
"id": "search",
"long": "search",
"required": false,
"short": "s"
},
{
"help": "Maximum number of sessions to show",
"id": "limit",
"long": "limit",
"required": false,
"short": "l"
},
{
"help": "Output in JSON format",
"id": "json",
"long": "json",
"required": false,
"short": null
},
{
"help": "Enable verbose output (same as --log-level debug)",
"id": "verbose",
"long": "verbose",
"required": false,
"short": "v"
},
{
"help": "Enable trace-level logging for debugging",
"id": "trace",
"long": "trace",
"required": false,
"short": null
},
{
"help": "Control color output: auto (default), always, or never",
"id": "color",
"long": "color",
"required": false,
"short": null
},
{
"help": "Print help (see more with '--help')",
"id": "help",
"long": "help",
"required": false,
"short": "h"
}
],
"name": "sessions",
"subcommands": []
},
{
"about": "Export a session to JSON format",
"arguments": [
{
"help": "Session ID to export (interactive picker if not provided)",
"id": "session_id",
"long": null,
"required": false,
"short": null
},
{
"help": "Output file path (stdout if not specified)",
"id": "output",
"long": "output",
"required": false,
"short": "o"
},
{
"help": "Output format (json, yaml, csv)",
"id": "format",
"long": "format",
"required": false,
"short": "f"
},
{
"help": "Pretty-print the output (for json/yaml)",
"id": "pretty",
"long": "pretty",
"required": false,
"short": null
},
{
"help": "Enable verbose output (same as --log-level debug)",
"id": "verbose",
"long": "verbose",
"required": false,
"short": "v"
},
{
"help": "Enable trace-level logging for debugging",
"id": "trace",
"long": "trace",