csusage-cli-parser 0.0.2

Coding agent CLI usage reports (ccusage fork with Claude Science support)
Documentation
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
{
	"combinedOptions": {
		"agent_period_options": ["agent_options", "last_options"],
		"all_agent_period_options": ["all_agent_options", "last_options"],
		"all_agent_session_options": ["all_agent_options", "session_options"],
		"blocks_combined_options": ["shared_claude_options", "blocks_options"],
		"claude_daily_options": ["shared_claude_options", "daily_options", "last_options"],
		"claude_monthly_options": ["shared_claude_options", "last_options"],
		"claude_session_options": ["shared_claude_options", "session_options"],
		"claude_weekly_options": ["shared_claude_options", "weekly_options", "last_options"],
		"codex_period_options": ["codex_options", "last_options"],
		"openclaw_combined_options": ["agent_options", "openclaw_options"],
		"openclaw_period_options": ["agent_options", "openclaw_options", "last_options"],
		"pi_combined_options": ["agent_options", "pi_options"],
		"pi_period_options": ["agent_options", "pi_options", "last_options"]
	},
	"root": {
		"usage": ["ccusage [daily] <OPTIONS>", "ccusage <COMMANDS>"],
		"commands": [
			{
				"name": "daily",
				"description": "Show all detected coding (agent) CLI usage grouped by date"
			},
			{
				"name": "monthly",
				"description": "Show all detected coding (agent) CLI usage grouped by month"
			},
			{
				"name": "weekly",
				"description": "Show all detected coding (agent) CLI usage grouped by week"
			},
			{
				"name": "session",
				"description": "Show all detected coding (agent) CLI usage grouped by session"
			},
			{
				"name": "blocks",
				"description": "Show usage report grouped by session billing blocks"
			},
			{
				"name": "statusline",
				"description": "Display compact status line for Claude Code hooks with hybrid time+file caching (Beta)"
			},
			{
				"name": "claude",
				"description": "Show Claude Code usage commands"
			},
			{
				"name": "codex",
				"description": "Show Codex token usage commands"
			},
			{
				"name": "opencode",
				"description": "Show OpenCode token usage commands"
			},
			{
				"name": "amp",
				"description": "Show Amp token usage commands"
			},
			{
				"name": "droid",
				"description": "Show Droid usage commands"
			},
			{
				"name": "codebuff",
				"description": "Show Codebuff usage commands"
			},
			{
				"name": "hermes",
				"description": "Show Hermes usage commands"
			},
			{
				"name": "pi",
				"description": "Show pi-agent usage commands"
			},
			{
				"name": "goose",
				"description": "Show Goose usage commands"
			},
			{
				"name": "kilo",
				"description": "Show Kilo usage commands"
			},
			{
				"name": "copilot",
				"description": "Show GitHub Copilot CLI usage commands"
			},
			{
				"name": "gemini",
				"description": "Show Gemini CLI usage commands"
			},
			{
				"name": "antigravity",
				"description": "Show Antigravity usage commands"
			},
			{
				"name": "kimi",
				"description": "Show Kimi usage commands"
			},
			{
				"name": "qwen",
				"description": "Show Qwen usage commands"
			},
			{
				"name": "openclaw",
				"description": "Show OpenClaw usage commands"
			},
			{
				"name": "grok",
				"description": "Show Grok Build CLI usage commands"
			},
			{
				"name": "zcode",
				"description": "Show ZCode usage commands"
			},
			{
				"name": "claude-science",
				"description": "Show Claude Science usage commands"
			}
		]
	},
	"pages": [
		{
			"path": ["daily"],
			"description": "Show all detected coding (agent) CLI usage grouped by date",
			"usage": "ccusage daily <OPTIONS>",
			"options": "all_agent_period_options"
		},
		{
			"path": ["monthly"],
			"description": "Show all detected coding (agent) CLI usage grouped by month",
			"usage": "ccusage monthly <OPTIONS>",
			"options": "all_agent_period_options"
		},
		{
			"path": ["weekly"],
			"description": "Show all detected coding (agent) CLI usage grouped by week",
			"usage": "ccusage weekly <OPTIONS>",
			"options": "all_agent_period_options"
		},
		{
			"path": ["session"],
			"description": "Show all detected coding (agent) CLI usage grouped by session",
			"usage": "ccusage session <OPTIONS>",
			"options": "all_agent_session_options"
		},
		{
			"path": ["blocks"],
			"description": "Show usage report grouped by session billing blocks",
			"usage": "ccusage blocks <OPTIONS>",
			"options": "blocks_combined_options"
		},
		{
			"path": ["statusline"],
			"description": "Display compact status line for Claude Code hooks with hybrid time+file caching (Beta)",
			"usage": "ccusage statusline <OPTIONS>",
			"options": "statusline_options"
		},
		{
			"path": ["claude"],
			"description": "Usage reports for claude.",
			"usage": "ccusage claude <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show usage report grouped by date"
				},
				{
					"name": "monthly",
					"description": "Show usage report grouped by month"
				},
				{
					"name": "weekly",
					"description": "Show usage report grouped by week"
				},
				{
					"name": "session",
					"description": "Show usage report grouped by conversation session"
				},
				{
					"name": "blocks",
					"description": "Show usage report grouped by session billing blocks"
				},
				{
					"name": "statusline",
					"description": "Display compact status line for Claude Code hooks with hybrid time+file caching (Beta)"
				}
			]
		},
		{
			"path": ["claude", "daily"],
			"description": "Show usage report grouped by date",
			"usage": "ccusage claude daily <OPTIONS>",
			"options": "claude_daily_options"
		},
		{
			"path": ["claude", "monthly"],
			"description": "Show usage report grouped by month",
			"usage": "ccusage claude monthly <OPTIONS>",
			"options": "claude_monthly_options"
		},
		{
			"path": ["claude", "weekly"],
			"description": "Show usage report grouped by week",
			"usage": "ccusage claude weekly <OPTIONS>",
			"options": "claude_weekly_options"
		},
		{
			"path": ["claude", "session"],
			"description": "Show usage report grouped by conversation session",
			"usage": "ccusage claude session <OPTIONS>",
			"options": "claude_session_options"
		},
		{
			"path": ["claude", "blocks"],
			"description": "Show usage report grouped by session billing blocks",
			"usage": "ccusage claude blocks <OPTIONS>",
			"options": "blocks_combined_options"
		},
		{
			"path": ["claude", "statusline"],
			"description": "Display compact status line for Claude Code hooks with hybrid time+file caching (Beta)",
			"usage": "ccusage claude statusline <OPTIONS>",
			"options": "statusline_options"
		},
		{
			"path": ["codex"],
			"description": "Usage reports for codex.",
			"usage": "ccusage codex <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show Codex token usage grouped by day"
				},
				{
					"name": "monthly",
					"description": "Show Codex token usage grouped by month"
				},
				{
					"name": "session",
					"description": "Show Codex token usage grouped by session"
				}
			]
		},
		{
			"path": ["codex", "daily"],
			"description": "Show Codex token usage grouped by day",
			"usage": "ccusage codex daily <OPTIONS>",
			"options": "codex_period_options"
		},
		{
			"path": ["codex", "monthly"],
			"description": "Show Codex token usage grouped by month",
			"usage": "ccusage codex monthly <OPTIONS>",
			"options": "codex_period_options"
		},
		{
			"path": ["codex", "session"],
			"description": "Show Codex token usage grouped by session",
			"usage": "ccusage codex session <OPTIONS>",
			"options": "codex_options"
		},
		{
			"path": ["opencode"],
			"description": "Usage reports for opencode.",
			"usage": "ccusage opencode <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show OpenCode token usage grouped by day"
				},
				{
					"name": "weekly",
					"description": "Show OpenCode token usage grouped by week"
				},
				{
					"name": "monthly",
					"description": "Show OpenCode token usage grouped by month"
				},
				{
					"name": "session",
					"description": "Show OpenCode token usage grouped by session"
				}
			]
		},
		{
			"path": ["opencode", "daily"],
			"description": "Show OpenCode token usage grouped by day",
			"usage": "ccusage opencode daily <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["opencode", "weekly"],
			"description": "Show OpenCode token usage grouped by week",
			"usage": "ccusage opencode weekly <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["opencode", "monthly"],
			"description": "Show OpenCode token usage grouped by month",
			"usage": "ccusage opencode monthly <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["opencode", "session"],
			"description": "Show OpenCode token usage grouped by session",
			"usage": "ccusage opencode session <OPTIONS>",
			"options": "agent_options"
		},
		{
			"path": ["amp"],
			"description": "Usage reports for amp.",
			"usage": "ccusage amp <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show Amp token usage grouped by day"
				},
				{
					"name": "monthly",
					"description": "Show Amp token usage grouped by month"
				},
				{
					"name": "session",
					"description": "Show Amp token usage grouped by session"
				}
			]
		},
		{
			"path": ["amp", "daily"],
			"description": "Show Amp token usage grouped by day",
			"usage": "ccusage amp daily <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["amp", "monthly"],
			"description": "Show Amp token usage grouped by month",
			"usage": "ccusage amp monthly <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["amp", "session"],
			"description": "Show Amp token usage grouped by session",
			"usage": "ccusage amp session <OPTIONS>",
			"options": "agent_options"
		},
		{
			"path": ["droid"],
			"description": "Usage reports for droid.",
			"usage": "ccusage droid <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show Droid usage grouped by date"
				},
				{
					"name": "monthly",
					"description": "Show Droid usage grouped by month"
				},
				{
					"name": "session",
					"description": "Show Droid usage grouped by session"
				}
			]
		},
		{
			"path": ["droid", "daily"],
			"description": "Show Droid usage grouped by date",
			"usage": "ccusage droid daily <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["droid", "monthly"],
			"description": "Show Droid usage grouped by month",
			"usage": "ccusage droid monthly <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["droid", "session"],
			"description": "Show Droid usage grouped by session",
			"usage": "ccusage droid session <OPTIONS>",
			"options": "agent_options"
		},
		{
			"path": ["codebuff"],
			"description": "Usage reports for codebuff.",
			"usage": "ccusage codebuff <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show Codebuff usage grouped by date"
				},
				{
					"name": "monthly",
					"description": "Show Codebuff usage grouped by month"
				},
				{
					"name": "session",
					"description": "Show Codebuff usage grouped by session"
				}
			]
		},
		{
			"path": ["codebuff", "daily"],
			"description": "Show Codebuff usage grouped by date",
			"usage": "ccusage codebuff daily <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["codebuff", "monthly"],
			"description": "Show Codebuff usage grouped by month",
			"usage": "ccusage codebuff monthly <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["codebuff", "session"],
			"description": "Show Codebuff usage grouped by session",
			"usage": "ccusage codebuff session <OPTIONS>",
			"options": "agent_options"
		},
		{
			"path": ["hermes"],
			"description": "Usage reports for hermes.",
			"usage": "ccusage hermes <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show Hermes usage grouped by date"
				},
				{
					"name": "monthly",
					"description": "Show Hermes usage grouped by month"
				},
				{
					"name": "session",
					"description": "Show Hermes usage grouped by session"
				}
			]
		},
		{
			"path": ["hermes", "daily"],
			"description": "Show Hermes usage grouped by date",
			"usage": "ccusage hermes daily <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["hermes", "monthly"],
			"description": "Show Hermes usage grouped by month",
			"usage": "ccusage hermes monthly <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["hermes", "session"],
			"description": "Show Hermes usage grouped by session",
			"usage": "ccusage hermes session <OPTIONS>",
			"options": "agent_options"
		},
		{
			"path": ["pi"],
			"description": "Usage reports for pi.",
			"usage": "ccusage pi <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show pi-agent usage grouped by date"
				},
				{
					"name": "monthly",
					"description": "Show pi-agent usage grouped by month"
				},
				{
					"name": "session",
					"description": "Show pi-agent usage grouped by session"
				}
			]
		},
		{
			"path": ["pi", "daily"],
			"description": "Show pi-agent usage grouped by date",
			"usage": "ccusage pi daily <OPTIONS>",
			"options": "pi_period_options"
		},
		{
			"path": ["pi", "monthly"],
			"description": "Show pi-agent usage grouped by month",
			"usage": "ccusage pi monthly <OPTIONS>",
			"options": "pi_period_options"
		},
		{
			"path": ["pi", "session"],
			"description": "Show pi-agent usage grouped by session",
			"usage": "ccusage pi session <OPTIONS>",
			"options": "pi_combined_options"
		},
		{
			"path": ["goose"],
			"description": "Usage reports for goose.",
			"usage": "ccusage goose <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show Goose usage grouped by date"
				},
				{
					"name": "monthly",
					"description": "Show Goose usage grouped by month"
				},
				{
					"name": "session",
					"description": "Show Goose usage grouped by session"
				}
			]
		},
		{
			"path": ["goose", "daily"],
			"description": "Show Goose usage grouped by date",
			"usage": "ccusage goose daily <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["goose", "monthly"],
			"description": "Show Goose usage grouped by month",
			"usage": "ccusage goose monthly <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["goose", "session"],
			"description": "Show Goose usage grouped by session",
			"usage": "ccusage goose session <OPTIONS>",
			"options": "agent_options"
		},
		{
			"path": ["kilo"],
			"description": "Usage reports for kilo.",
			"usage": "ccusage kilo <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show Kilo usage grouped by date"
				},
				{
					"name": "monthly",
					"description": "Show Kilo usage grouped by month"
				},
				{
					"name": "session",
					"description": "Show Kilo usage grouped by session"
				}
			]
		},
		{
			"path": ["kilo", "daily"],
			"description": "Show Kilo usage grouped by date",
			"usage": "ccusage kilo daily <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["kilo", "monthly"],
			"description": "Show Kilo usage grouped by month",
			"usage": "ccusage kilo monthly <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["kilo", "session"],
			"description": "Show Kilo usage grouped by session",
			"usage": "ccusage kilo session <OPTIONS>",
			"options": "agent_options"
		},
		{
			"path": ["copilot"],
			"description": "Usage reports for copilot.",
			"usage": "ccusage copilot <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show GitHub Copilot CLI usage grouped by date"
				},
				{
					"name": "monthly",
					"description": "Show GitHub Copilot CLI usage grouped by month"
				},
				{
					"name": "session",
					"description": "Show GitHub Copilot CLI usage grouped by session"
				}
			]
		},
		{
			"path": ["copilot", "daily"],
			"description": "Show GitHub Copilot CLI usage grouped by date",
			"usage": "ccusage copilot daily <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["copilot", "monthly"],
			"description": "Show GitHub Copilot CLI usage grouped by month",
			"usage": "ccusage copilot monthly <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["copilot", "session"],
			"description": "Show GitHub Copilot CLI usage grouped by session",
			"usage": "ccusage copilot session <OPTIONS>",
			"options": "agent_options"
		},
		{
			"path": ["gemini"],
			"description": "Usage reports for gemini.",
			"usage": "ccusage gemini <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show Gemini CLI usage grouped by date"
				},
				{
					"name": "monthly",
					"description": "Show Gemini CLI usage grouped by month"
				},
				{
					"name": "session",
					"description": "Show Gemini CLI usage grouped by session"
				}
			]
		},
		{
			"path": ["gemini", "daily"],
			"description": "Show Gemini CLI usage grouped by date",
			"usage": "ccusage gemini daily <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["gemini", "monthly"],
			"description": "Show Gemini CLI usage grouped by month",
			"usage": "ccusage gemini monthly <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["gemini", "session"],
			"description": "Show Gemini CLI usage grouped by session",
			"usage": "ccusage gemini session <OPTIONS>",
			"options": "agent_options"
		},
		{
			"path": ["antigravity"],
			"description": "Usage reports for antigravity.",
			"usage": "ccusage antigravity <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show Antigravity usage grouped by date"
				},
				{
					"name": "monthly",
					"description": "Show Antigravity usage grouped by month"
				},
				{
					"name": "session",
					"description": "Show Antigravity usage grouped by session"
				}
			]
		},
		{
			"path": ["antigravity", "daily"],
			"description": "Show Antigravity usage grouped by date",
			"usage": "ccusage antigravity daily <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["antigravity", "monthly"],
			"description": "Show Antigravity usage grouped by month",
			"usage": "ccusage antigravity monthly <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["antigravity", "session"],
			"description": "Show Antigravity usage grouped by session",
			"usage": "ccusage antigravity session <OPTIONS>",
			"options": "agent_options"
		},
		{
			"path": ["kimi"],
			"description": "Usage reports for kimi.",
			"usage": "ccusage kimi <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show Kimi usage grouped by date"
				},
				{
					"name": "monthly",
					"description": "Show Kimi usage grouped by month"
				},
				{
					"name": "session",
					"description": "Show Kimi usage grouped by session"
				}
			]
		},
		{
			"path": ["kimi", "daily"],
			"description": "Show Kimi usage grouped by date",
			"usage": "ccusage kimi daily <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["kimi", "monthly"],
			"description": "Show Kimi usage grouped by month",
			"usage": "ccusage kimi monthly <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["kimi", "session"],
			"description": "Show Kimi usage grouped by session",
			"usage": "ccusage kimi session <OPTIONS>",
			"options": "agent_options"
		},
		{
			"path": ["qwen"],
			"description": "Usage reports for qwen.",
			"usage": "ccusage qwen <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show Qwen usage grouped by date"
				},
				{
					"name": "monthly",
					"description": "Show Qwen usage grouped by month"
				},
				{
					"name": "session",
					"description": "Show Qwen usage grouped by session"
				}
			]
		},
		{
			"path": ["qwen", "daily"],
			"description": "Show Qwen usage grouped by date",
			"usage": "ccusage qwen daily <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["qwen", "monthly"],
			"description": "Show Qwen usage grouped by month",
			"usage": "ccusage qwen monthly <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["qwen", "session"],
			"description": "Show Qwen usage grouped by session",
			"usage": "ccusage qwen session <OPTIONS>",
			"options": "agent_options"
		},
		{
			"path": ["openclaw"],
			"description": "Usage reports for openclaw.",
			"usage": "ccusage openclaw <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show OpenClaw usage grouped by date"
				},
				{
					"name": "monthly",
					"description": "Show OpenClaw usage grouped by month"
				},
				{
					"name": "session",
					"description": "Show OpenClaw usage grouped by session"
				}
			]
		},
		{
			"path": ["openclaw", "daily"],
			"description": "Show OpenClaw usage grouped by date",
			"usage": "ccusage openclaw daily <OPTIONS>",
			"options": "openclaw_period_options"
		},
		{
			"path": ["openclaw", "monthly"],
			"description": "Show OpenClaw usage grouped by month",
			"usage": "ccusage openclaw monthly <OPTIONS>",
			"options": "openclaw_period_options"
		},
		{
			"path": ["openclaw", "session"],
			"description": "Show OpenClaw usage grouped by session",
			"usage": "ccusage openclaw session <OPTIONS>",
			"options": "openclaw_combined_options"
		},
		{
			"path": ["grok"],
			"description": "Usage reports for Grok Build CLI.",
			"usage": "ccusage grok <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show Grok Build CLI usage grouped by date"
				},
				{
					"name": "monthly",
					"description": "Show Grok Build CLI usage grouped by month"
				},
				{
					"name": "session",
					"description": "Show Grok Build CLI usage grouped by session"
				}
			]
		},
		{
			"path": ["grok", "daily"],
			"description": "Show Grok Build CLI usage grouped by date",
			"usage": "ccusage grok daily <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["grok", "monthly"],
			"description": "Show Grok Build CLI usage grouped by month",
			"usage": "ccusage grok monthly <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["grok", "session"],
			"description": "Show Grok Build CLI usage grouped by session",
			"usage": "ccusage grok session <OPTIONS>",
			"options": "agent_options"
		},
		{
			"path": ["zcode"],
			"description": "Usage reports for ZCode.",
			"usage": "ccusage zcode <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show ZCode usage grouped by date"
				},
				{
					"name": "monthly",
					"description": "Show ZCode usage grouped by month"
				},
				{
					"name": "session",
					"description": "Show ZCode usage grouped by session"
				}
			]
		},
		{
			"path": ["zcode", "daily"],
			"description": "Show ZCode usage grouped by date",
			"usage": "ccusage zcode daily <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["zcode", "monthly"],
			"description": "Show ZCode usage grouped by month",
			"usage": "ccusage zcode monthly <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["zcode", "session"],
			"description": "Show ZCode usage grouped by session",
			"usage": "ccusage zcode session <OPTIONS>",
			"options": "agent_options"
		}
,
		{
			"path": ["claude-science"],
			"description": "Usage reports for Claude Science.",
			"usage": "ccusage claude-science <COMMANDS>",
			"commands": [
				{
					"name": "daily",
					"description": "Show Claude Science usage grouped by date"
				},
				{
					"name": "monthly",
					"description": "Show Claude Science usage grouped by month"
				},
				{
					"name": "session",
					"description": "Show Claude Science usage grouped by session"
				}
			]
		},
		{
			"path": ["claude-science", "daily"],
			"description": "Show Claude Science usage grouped by date",
			"usage": "ccusage claude-science daily <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["claude-science", "monthly"],
			"description": "Show Claude Science usage grouped by month",
			"usage": "ccusage claude-science monthly <OPTIONS>",
			"options": "agent_period_options"
		},
		{
			"path": ["claude-science", "session"],
			"description": "Show Claude Science usage grouped by session",
			"usage": "ccusage claude-science session <OPTIONS>",
			"options": "agent_options"
		}

	]
}