ccusage 18.0.11 → 19.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +42 -63
- package/config-schema.json +1667 -173
- package/dist/cli.js +3 -0
- package/dist/data-loader-v7Qetyje.js +13 -0
- package/dist/data-loader.js +1 -4
- package/dist/index.js +2 -3618
- package/dist/main-CGER5Yfc.js +21 -0
- package/dist/main.bun.js +3 -0
- package/dist/main.node.js +3 -0
- package/package.json +5 -10
- package/dist/_types-DY3gqCWm.js +0 -608
- package/dist/calculate-cost-DWGfKMSD.js +0 -23
- package/dist/calculate-cost.d.ts +0 -74
- package/dist/calculate-cost.js +0 -3
- package/dist/data-loader-9ESMosno.js +0 -5966
- package/dist/data-loader-CdGrTB0Q.d.ts +0 -2360
- package/dist/data-loader.d.ts +0 -2
- package/dist/debug-DvI5DUKR.js +0 -148
- package/dist/debug.d.ts +0 -64
- package/dist/debug.js +0 -5
- package/dist/index.d.ts +0 -1
- package/dist/logger-D9FuoYJ7.js +0 -873
- package/dist/logger.d.ts +0 -25
- package/dist/logger.js +0 -2
- package/dist/prompt-XEKR514o.js +0 -843
package/config-schema.json
CHANGED
|
@@ -12,96 +12,55 @@
|
|
|
12
12
|
"defaults": {
|
|
13
13
|
"type": "object",
|
|
14
14
|
"properties": {
|
|
15
|
-
"since": {
|
|
16
|
-
"type": "string",
|
|
17
|
-
"description": "Filter from date (YYYYMMDD format)",
|
|
18
|
-
"markdownDescription": "Filter from date (YYYYMMDD format)"
|
|
19
|
-
},
|
|
20
|
-
"until": {
|
|
21
|
-
"type": "string",
|
|
22
|
-
"description": "Filter until date (YYYYMMDD format)",
|
|
23
|
-
"markdownDescription": "Filter until date (YYYYMMDD format)"
|
|
24
|
-
},
|
|
25
|
-
"json": {
|
|
26
|
-
"type": "boolean",
|
|
27
|
-
"description": "Output in JSON format",
|
|
28
|
-
"markdownDescription": "Output in JSON format",
|
|
29
|
-
"default": false
|
|
30
|
-
},
|
|
31
|
-
"mode": {
|
|
32
|
-
"type": "string",
|
|
33
|
-
"enum": ["auto", "calculate", "display"],
|
|
34
|
-
"description": "Cost calculation mode: auto (use costUSD if exists, otherwise calculate), calculate (always calculate), display (always use costUSD)",
|
|
35
|
-
"markdownDescription": "Cost calculation mode: auto (use costUSD if exists, otherwise calculate), calculate (always calculate), display (always use costUSD)",
|
|
36
|
-
"default": "auto"
|
|
37
|
-
},
|
|
38
15
|
"debug": {
|
|
39
16
|
"type": "boolean",
|
|
40
17
|
"description": "Show pricing mismatch information for debugging",
|
|
41
18
|
"markdownDescription": "Show pricing mismatch information for debugging",
|
|
42
19
|
"default": false
|
|
43
20
|
},
|
|
44
|
-
"debugSamples": {
|
|
45
|
-
"type": "number",
|
|
46
|
-
"description": "Number of sample discrepancies to show in debug output (default: 5)",
|
|
47
|
-
"markdownDescription": "Number of sample discrepancies to show in debug output (default: 5)",
|
|
48
|
-
"default": 5
|
|
49
|
-
},
|
|
50
|
-
"order": {
|
|
51
|
-
"type": "string",
|
|
52
|
-
"enum": ["desc", "asc"],
|
|
53
|
-
"description": "Sort order: desc (newest first) or asc (oldest first)",
|
|
54
|
-
"markdownDescription": "Sort order: desc (newest first) or asc (oldest first)",
|
|
55
|
-
"default": "asc"
|
|
56
|
-
},
|
|
57
|
-
"breakdown": {
|
|
58
|
-
"type": "boolean",
|
|
59
|
-
"description": "Show per-model cost breakdown",
|
|
60
|
-
"markdownDescription": "Show per-model cost breakdown",
|
|
61
|
-
"default": false
|
|
62
|
-
},
|
|
63
21
|
"offline": {
|
|
64
22
|
"type": "boolean",
|
|
65
|
-
"description": "Use cached pricing data
|
|
66
|
-
"markdownDescription": "Use cached pricing data
|
|
23
|
+
"description": "Use cached pricing data where supported",
|
|
24
|
+
"markdownDescription": "Use cached pricing data where supported",
|
|
67
25
|
"default": false
|
|
68
26
|
},
|
|
69
|
-
"
|
|
70
|
-
"type": "boolean",
|
|
71
|
-
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
72
|
-
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
73
|
-
},
|
|
74
|
-
"noColor": {
|
|
27
|
+
"json": {
|
|
75
28
|
"type": "boolean",
|
|
76
|
-
"description": "
|
|
77
|
-
"markdownDescription": "
|
|
29
|
+
"description": "Output in JSON format",
|
|
30
|
+
"markdownDescription": "Output in JSON format",
|
|
31
|
+
"default": false
|
|
78
32
|
},
|
|
79
|
-
"
|
|
33
|
+
"since": {
|
|
80
34
|
"type": "string",
|
|
81
|
-
"description": "
|
|
82
|
-
"markdownDescription": "
|
|
35
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
36
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
83
37
|
},
|
|
84
|
-
"
|
|
38
|
+
"until": {
|
|
85
39
|
"type": "string",
|
|
86
|
-
"description": "
|
|
87
|
-
"markdownDescription": "
|
|
88
|
-
"default": "en-CA"
|
|
40
|
+
"description": "Filter until date (inclusive)",
|
|
41
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
89
42
|
},
|
|
90
|
-
"
|
|
43
|
+
"timezone": {
|
|
91
44
|
"type": "string",
|
|
92
|
-
"description": "
|
|
93
|
-
"markdownDescription": "
|
|
45
|
+
"description": "Timezone for date grouping (IANA)",
|
|
46
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
47
|
+
},
|
|
48
|
+
"all": {
|
|
49
|
+
"type": "boolean",
|
|
50
|
+
"description": "Accepted for compatibility; all detected supported agents are included by default",
|
|
51
|
+
"markdownDescription": "Accepted for compatibility; all detected supported agents are included by default",
|
|
52
|
+
"default": false
|
|
94
53
|
},
|
|
95
54
|
"compact": {
|
|
96
55
|
"type": "boolean",
|
|
97
|
-
"description": "Force compact
|
|
98
|
-
"markdownDescription": "Force compact
|
|
56
|
+
"description": "Force compact table layout for narrow terminals",
|
|
57
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
99
58
|
"default": false
|
|
100
59
|
}
|
|
101
60
|
},
|
|
102
61
|
"additionalProperties": false,
|
|
103
|
-
"description": "Default values for all commands",
|
|
104
|
-
"markdownDescription": "Default values for all commands"
|
|
62
|
+
"description": "Default values for all-agent reports and legacy Claude commands",
|
|
63
|
+
"markdownDescription": "Default values for all-agent reports and legacy Claude commands"
|
|
105
64
|
},
|
|
106
65
|
"commands": {
|
|
107
66
|
"type": "object",
|
|
@@ -111,13 +70,13 @@
|
|
|
111
70
|
"properties": {
|
|
112
71
|
"since": {
|
|
113
72
|
"type": "string",
|
|
114
|
-
"description": "Filter from date (YYYYMMDD
|
|
115
|
-
"markdownDescription": "Filter from date (YYYYMMDD
|
|
73
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
74
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
116
75
|
},
|
|
117
76
|
"until": {
|
|
118
77
|
"type": "string",
|
|
119
|
-
"description": "Filter until date (
|
|
120
|
-
"markdownDescription": "Filter until date (
|
|
78
|
+
"description": "Filter until date (inclusive)",
|
|
79
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
121
80
|
},
|
|
122
81
|
"json": {
|
|
123
82
|
"type": "boolean",
|
|
@@ -159,8 +118,14 @@
|
|
|
159
118
|
},
|
|
160
119
|
"offline": {
|
|
161
120
|
"type": "boolean",
|
|
162
|
-
"description": "Use cached pricing data
|
|
163
|
-
"markdownDescription": "Use cached pricing data
|
|
121
|
+
"description": "Use cached pricing data where supported",
|
|
122
|
+
"markdownDescription": "Use cached pricing data where supported",
|
|
123
|
+
"default": false
|
|
124
|
+
},
|
|
125
|
+
"singleThread": {
|
|
126
|
+
"type": "boolean",
|
|
127
|
+
"description": "Disable parallel JSONL file loading",
|
|
128
|
+
"markdownDescription": "Disable parallel JSONL file loading",
|
|
164
129
|
"default": false
|
|
165
130
|
},
|
|
166
131
|
"color": {
|
|
@@ -175,24 +140,13 @@
|
|
|
175
140
|
},
|
|
176
141
|
"timezone": {
|
|
177
142
|
"type": "string",
|
|
178
|
-
"description": "Timezone for date grouping (
|
|
179
|
-
"markdownDescription": "Timezone for date grouping (
|
|
180
|
-
},
|
|
181
|
-
"locale": {
|
|
182
|
-
"type": "string",
|
|
183
|
-
"description": "Locale for date/time formatting (e.g., en-US, ja-JP, de-DE)",
|
|
184
|
-
"markdownDescription": "Locale for date/time formatting (e.g., en-US, ja-JP, de-DE)",
|
|
185
|
-
"default": "en-CA"
|
|
186
|
-
},
|
|
187
|
-
"jq": {
|
|
188
|
-
"type": "string",
|
|
189
|
-
"description": "Process JSON output with jq command (requires jq binary, implies --json)",
|
|
190
|
-
"markdownDescription": "Process JSON output with jq command (requires jq binary, implies --json)"
|
|
143
|
+
"description": "Timezone for date grouping (IANA)",
|
|
144
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
191
145
|
},
|
|
192
146
|
"compact": {
|
|
193
147
|
"type": "boolean",
|
|
194
|
-
"description": "Force compact
|
|
195
|
-
"markdownDescription": "Force compact
|
|
148
|
+
"description": "Force compact table layout for narrow terminals",
|
|
149
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
196
150
|
"default": false
|
|
197
151
|
},
|
|
198
152
|
"instances": {
|
|
@@ -210,6 +164,12 @@
|
|
|
210
164
|
"type": "string",
|
|
211
165
|
"description": "Comma-separated project aliases (e.g., 'ccusage=Usage Tracker,myproject=My Project')",
|
|
212
166
|
"markdownDescription": "Comma-separated project aliases (e.g., 'ccusage=Usage Tracker,myproject=My Project')"
|
|
167
|
+
},
|
|
168
|
+
"all": {
|
|
169
|
+
"type": "boolean",
|
|
170
|
+
"description": "Accepted for compatibility; all detected supported agents are included by default",
|
|
171
|
+
"markdownDescription": "Accepted for compatibility; all detected supported agents are included by default",
|
|
172
|
+
"default": false
|
|
213
173
|
}
|
|
214
174
|
},
|
|
215
175
|
"additionalProperties": false
|
|
@@ -219,13 +179,13 @@
|
|
|
219
179
|
"properties": {
|
|
220
180
|
"since": {
|
|
221
181
|
"type": "string",
|
|
222
|
-
"description": "Filter from date (YYYYMMDD
|
|
223
|
-
"markdownDescription": "Filter from date (YYYYMMDD
|
|
182
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
183
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
224
184
|
},
|
|
225
185
|
"until": {
|
|
226
186
|
"type": "string",
|
|
227
|
-
"description": "Filter until date (
|
|
228
|
-
"markdownDescription": "Filter until date (
|
|
187
|
+
"description": "Filter until date (inclusive)",
|
|
188
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
229
189
|
},
|
|
230
190
|
"json": {
|
|
231
191
|
"type": "boolean",
|
|
@@ -267,8 +227,14 @@
|
|
|
267
227
|
},
|
|
268
228
|
"offline": {
|
|
269
229
|
"type": "boolean",
|
|
270
|
-
"description": "Use cached pricing data
|
|
271
|
-
"markdownDescription": "Use cached pricing data
|
|
230
|
+
"description": "Use cached pricing data where supported",
|
|
231
|
+
"markdownDescription": "Use cached pricing data where supported",
|
|
232
|
+
"default": false
|
|
233
|
+
},
|
|
234
|
+
"singleThread": {
|
|
235
|
+
"type": "boolean",
|
|
236
|
+
"description": "Disable parallel JSONL file loading",
|
|
237
|
+
"markdownDescription": "Disable parallel JSONL file loading",
|
|
272
238
|
"default": false
|
|
273
239
|
},
|
|
274
240
|
"color": {
|
|
@@ -283,24 +249,19 @@
|
|
|
283
249
|
},
|
|
284
250
|
"timezone": {
|
|
285
251
|
"type": "string",
|
|
286
|
-
"description": "Timezone for date grouping (
|
|
287
|
-
"markdownDescription": "Timezone for date grouping (
|
|
288
|
-
},
|
|
289
|
-
"locale": {
|
|
290
|
-
"type": "string",
|
|
291
|
-
"description": "Locale for date/time formatting (e.g., en-US, ja-JP, de-DE)",
|
|
292
|
-
"markdownDescription": "Locale for date/time formatting (e.g., en-US, ja-JP, de-DE)",
|
|
293
|
-
"default": "en-CA"
|
|
294
|
-
},
|
|
295
|
-
"jq": {
|
|
296
|
-
"type": "string",
|
|
297
|
-
"description": "Process JSON output with jq command (requires jq binary, implies --json)",
|
|
298
|
-
"markdownDescription": "Process JSON output with jq command (requires jq binary, implies --json)"
|
|
252
|
+
"description": "Timezone for date grouping (IANA)",
|
|
253
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
299
254
|
},
|
|
300
255
|
"compact": {
|
|
301
256
|
"type": "boolean",
|
|
302
|
-
"description": "Force compact
|
|
303
|
-
"markdownDescription": "Force compact
|
|
257
|
+
"description": "Force compact table layout for narrow terminals",
|
|
258
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
259
|
+
"default": false
|
|
260
|
+
},
|
|
261
|
+
"all": {
|
|
262
|
+
"type": "boolean",
|
|
263
|
+
"description": "Accepted for compatibility; all detected supported agents are included by default",
|
|
264
|
+
"markdownDescription": "Accepted for compatibility; all detected supported agents are included by default",
|
|
304
265
|
"default": false
|
|
305
266
|
}
|
|
306
267
|
},
|
|
@@ -311,13 +272,13 @@
|
|
|
311
272
|
"properties": {
|
|
312
273
|
"since": {
|
|
313
274
|
"type": "string",
|
|
314
|
-
"description": "Filter from date (YYYYMMDD
|
|
315
|
-
"markdownDescription": "Filter from date (YYYYMMDD
|
|
275
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
276
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
316
277
|
},
|
|
317
278
|
"until": {
|
|
318
279
|
"type": "string",
|
|
319
|
-
"description": "Filter until date (
|
|
320
|
-
"markdownDescription": "Filter until date (
|
|
280
|
+
"description": "Filter until date (inclusive)",
|
|
281
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
321
282
|
},
|
|
322
283
|
"json": {
|
|
323
284
|
"type": "boolean",
|
|
@@ -359,8 +320,14 @@
|
|
|
359
320
|
},
|
|
360
321
|
"offline": {
|
|
361
322
|
"type": "boolean",
|
|
362
|
-
"description": "Use cached pricing data
|
|
363
|
-
"markdownDescription": "Use cached pricing data
|
|
323
|
+
"description": "Use cached pricing data where supported",
|
|
324
|
+
"markdownDescription": "Use cached pricing data where supported",
|
|
325
|
+
"default": false
|
|
326
|
+
},
|
|
327
|
+
"singleThread": {
|
|
328
|
+
"type": "boolean",
|
|
329
|
+
"description": "Disable parallel JSONL file loading",
|
|
330
|
+
"markdownDescription": "Disable parallel JSONL file loading",
|
|
364
331
|
"default": false
|
|
365
332
|
},
|
|
366
333
|
"color": {
|
|
@@ -375,24 +342,13 @@
|
|
|
375
342
|
},
|
|
376
343
|
"timezone": {
|
|
377
344
|
"type": "string",
|
|
378
|
-
"description": "Timezone for date grouping (
|
|
379
|
-
"markdownDescription": "Timezone for date grouping (
|
|
380
|
-
},
|
|
381
|
-
"locale": {
|
|
382
|
-
"type": "string",
|
|
383
|
-
"description": "Locale for date/time formatting (e.g., en-US, ja-JP, de-DE)",
|
|
384
|
-
"markdownDescription": "Locale for date/time formatting (e.g., en-US, ja-JP, de-DE)",
|
|
385
|
-
"default": "en-CA"
|
|
386
|
-
},
|
|
387
|
-
"jq": {
|
|
388
|
-
"type": "string",
|
|
389
|
-
"description": "Process JSON output with jq command (requires jq binary, implies --json)",
|
|
390
|
-
"markdownDescription": "Process JSON output with jq command (requires jq binary, implies --json)"
|
|
345
|
+
"description": "Timezone for date grouping (IANA)",
|
|
346
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
391
347
|
},
|
|
392
348
|
"compact": {
|
|
393
349
|
"type": "boolean",
|
|
394
|
-
"description": "Force compact
|
|
395
|
-
"markdownDescription": "Force compact
|
|
350
|
+
"description": "Force compact table layout for narrow terminals",
|
|
351
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
396
352
|
"default": false
|
|
397
353
|
},
|
|
398
354
|
"startOfWeek": {
|
|
@@ -409,6 +365,12 @@
|
|
|
409
365
|
"description": "Day to start the week on",
|
|
410
366
|
"markdownDescription": "Day to start the week on",
|
|
411
367
|
"default": "sunday"
|
|
368
|
+
},
|
|
369
|
+
"all": {
|
|
370
|
+
"type": "boolean",
|
|
371
|
+
"description": "Accepted for compatibility; all detected supported agents are included by default",
|
|
372
|
+
"markdownDescription": "Accepted for compatibility; all detected supported agents are included by default",
|
|
373
|
+
"default": false
|
|
412
374
|
}
|
|
413
375
|
},
|
|
414
376
|
"additionalProperties": false
|
|
@@ -418,13 +380,13 @@
|
|
|
418
380
|
"properties": {
|
|
419
381
|
"since": {
|
|
420
382
|
"type": "string",
|
|
421
|
-
"description": "Filter from date (YYYYMMDD
|
|
422
|
-
"markdownDescription": "Filter from date (YYYYMMDD
|
|
383
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
384
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
423
385
|
},
|
|
424
386
|
"until": {
|
|
425
387
|
"type": "string",
|
|
426
|
-
"description": "Filter until date (
|
|
427
|
-
"markdownDescription": "Filter until date (
|
|
388
|
+
"description": "Filter until date (inclusive)",
|
|
389
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
428
390
|
},
|
|
429
391
|
"json": {
|
|
430
392
|
"type": "boolean",
|
|
@@ -459,8 +421,14 @@
|
|
|
459
421
|
},
|
|
460
422
|
"offline": {
|
|
461
423
|
"type": "boolean",
|
|
462
|
-
"description": "Use cached pricing data
|
|
463
|
-
"markdownDescription": "Use cached pricing data
|
|
424
|
+
"description": "Use cached pricing data where supported",
|
|
425
|
+
"markdownDescription": "Use cached pricing data where supported",
|
|
426
|
+
"default": false
|
|
427
|
+
},
|
|
428
|
+
"singleThread": {
|
|
429
|
+
"type": "boolean",
|
|
430
|
+
"description": "Disable parallel JSONL file loading",
|
|
431
|
+
"markdownDescription": "Disable parallel JSONL file loading",
|
|
464
432
|
"default": false
|
|
465
433
|
},
|
|
466
434
|
"color": {
|
|
@@ -475,30 +443,25 @@
|
|
|
475
443
|
},
|
|
476
444
|
"timezone": {
|
|
477
445
|
"type": "string",
|
|
478
|
-
"description": "Timezone for date grouping (
|
|
479
|
-
"markdownDescription": "Timezone for date grouping (
|
|
480
|
-
},
|
|
481
|
-
"locale": {
|
|
482
|
-
"type": "string",
|
|
483
|
-
"description": "Locale for date/time formatting (e.g., en-US, ja-JP, de-DE)",
|
|
484
|
-
"markdownDescription": "Locale for date/time formatting (e.g., en-US, ja-JP, de-DE)",
|
|
485
|
-
"default": "en-CA"
|
|
486
|
-
},
|
|
487
|
-
"jq": {
|
|
488
|
-
"type": "string",
|
|
489
|
-
"description": "Process JSON output with jq command (requires jq binary, implies --json)",
|
|
490
|
-
"markdownDescription": "Process JSON output with jq command (requires jq binary, implies --json)"
|
|
446
|
+
"description": "Timezone for date grouping (IANA)",
|
|
447
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
491
448
|
},
|
|
492
449
|
"compact": {
|
|
493
450
|
"type": "boolean",
|
|
494
|
-
"description": "Force compact
|
|
495
|
-
"markdownDescription": "Force compact
|
|
451
|
+
"description": "Force compact table layout for narrow terminals",
|
|
452
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
496
453
|
"default": false
|
|
497
454
|
},
|
|
498
455
|
"id": {
|
|
499
456
|
"type": "string",
|
|
500
457
|
"description": "Load usage data for a specific session ID",
|
|
501
458
|
"markdownDescription": "Load usage data for a specific session ID"
|
|
459
|
+
},
|
|
460
|
+
"all": {
|
|
461
|
+
"type": "boolean",
|
|
462
|
+
"description": "Accepted for compatibility; all detected supported agents are included by default",
|
|
463
|
+
"markdownDescription": "Accepted for compatibility; all detected supported agents are included by default",
|
|
464
|
+
"default": false
|
|
502
465
|
}
|
|
503
466
|
},
|
|
504
467
|
"additionalProperties": false
|
|
@@ -560,6 +523,12 @@
|
|
|
560
523
|
"markdownDescription": "Use cached pricing data for Claude models instead of fetching from API",
|
|
561
524
|
"default": false
|
|
562
525
|
},
|
|
526
|
+
"singleThread": {
|
|
527
|
+
"type": "boolean",
|
|
528
|
+
"description": "Disable parallel JSONL file loading",
|
|
529
|
+
"markdownDescription": "Disable parallel JSONL file loading",
|
|
530
|
+
"default": false
|
|
531
|
+
},
|
|
563
532
|
"color": {
|
|
564
533
|
"type": "boolean",
|
|
565
534
|
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
@@ -575,17 +544,6 @@
|
|
|
575
544
|
"description": "Timezone for date grouping (e.g., UTC, America/New_York, Asia/Tokyo). Default: system timezone",
|
|
576
545
|
"markdownDescription": "Timezone for date grouping (e.g., UTC, America/New_York, Asia/Tokyo). Default: system timezone"
|
|
577
546
|
},
|
|
578
|
-
"locale": {
|
|
579
|
-
"type": "string",
|
|
580
|
-
"description": "Locale for date/time formatting (e.g., en-US, ja-JP, de-DE)",
|
|
581
|
-
"markdownDescription": "Locale for date/time formatting (e.g., en-US, ja-JP, de-DE)",
|
|
582
|
-
"default": "en-CA"
|
|
583
|
-
},
|
|
584
|
-
"jq": {
|
|
585
|
-
"type": "string",
|
|
586
|
-
"description": "Process JSON output with jq command (requires jq binary, implies --json)",
|
|
587
|
-
"markdownDescription": "Process JSON output with jq command (requires jq binary, implies --json)"
|
|
588
|
-
},
|
|
589
547
|
"compact": {
|
|
590
548
|
"type": "boolean",
|
|
591
549
|
"description": "Force compact mode for narrow displays (better for screenshots)",
|
|
@@ -654,13 +612,13 @@
|
|
|
654
612
|
"default": 1
|
|
655
613
|
},
|
|
656
614
|
"contextLowThreshold": {
|
|
657
|
-
"type": "
|
|
615
|
+
"type": "number",
|
|
658
616
|
"description": "Context usage percentage below which status is shown in green (0-100)",
|
|
659
617
|
"markdownDescription": "Context usage percentage below which status is shown in green (0-100)",
|
|
660
618
|
"default": 50
|
|
661
619
|
},
|
|
662
620
|
"contextMediumThreshold": {
|
|
663
|
-
"type": "
|
|
621
|
+
"type": "number",
|
|
664
622
|
"description": "Context usage percentage below which status is shown in yellow (0-100)",
|
|
665
623
|
"markdownDescription": "Context usage percentage below which status is shown in yellow (0-100)",
|
|
666
624
|
"default": 80
|
|
@@ -676,8 +634,1536 @@
|
|
|
676
634
|
}
|
|
677
635
|
},
|
|
678
636
|
"additionalProperties": false,
|
|
679
|
-
"description": "Command-specific configuration overrides",
|
|
680
|
-
"markdownDescription": "Command-specific configuration overrides"
|
|
637
|
+
"description": "Command-specific configuration overrides for all-agent reports",
|
|
638
|
+
"markdownDescription": "Command-specific configuration overrides for all-agent reports"
|
|
639
|
+
},
|
|
640
|
+
"claude": {
|
|
641
|
+
"type": "object",
|
|
642
|
+
"properties": {
|
|
643
|
+
"defaults": {
|
|
644
|
+
"type": "object",
|
|
645
|
+
"properties": {
|
|
646
|
+
"debug": {
|
|
647
|
+
"type": "boolean",
|
|
648
|
+
"description": "Show pricing mismatch information for debugging",
|
|
649
|
+
"markdownDescription": "Show pricing mismatch information for debugging",
|
|
650
|
+
"default": false
|
|
651
|
+
},
|
|
652
|
+
"offline": {
|
|
653
|
+
"type": "boolean",
|
|
654
|
+
"description": "Use cached pricing data for Claude models instead of fetching from API",
|
|
655
|
+
"markdownDescription": "Use cached pricing data for Claude models instead of fetching from API",
|
|
656
|
+
"default": false
|
|
657
|
+
}
|
|
658
|
+
},
|
|
659
|
+
"additionalProperties": false,
|
|
660
|
+
"description": "Default values for claude commands",
|
|
661
|
+
"markdownDescription": "Default values for claude commands"
|
|
662
|
+
},
|
|
663
|
+
"commands": {
|
|
664
|
+
"type": "object",
|
|
665
|
+
"properties": {
|
|
666
|
+
"daily": {
|
|
667
|
+
"type": "object",
|
|
668
|
+
"properties": {
|
|
669
|
+
"since": {
|
|
670
|
+
"type": "string",
|
|
671
|
+
"description": "Filter from date (YYYYMMDD format)",
|
|
672
|
+
"markdownDescription": "Filter from date (YYYYMMDD format)"
|
|
673
|
+
},
|
|
674
|
+
"until": {
|
|
675
|
+
"type": "string",
|
|
676
|
+
"description": "Filter until date (YYYYMMDD format)",
|
|
677
|
+
"markdownDescription": "Filter until date (YYYYMMDD format)"
|
|
678
|
+
},
|
|
679
|
+
"json": {
|
|
680
|
+
"type": "boolean",
|
|
681
|
+
"description": "Output in JSON format",
|
|
682
|
+
"markdownDescription": "Output in JSON format",
|
|
683
|
+
"default": false
|
|
684
|
+
},
|
|
685
|
+
"mode": {
|
|
686
|
+
"type": "string",
|
|
687
|
+
"enum": ["auto", "calculate", "display"],
|
|
688
|
+
"description": "Cost calculation mode: auto (use costUSD if exists, otherwise calculate), calculate (always calculate), display (always use costUSD)",
|
|
689
|
+
"markdownDescription": "Cost calculation mode: auto (use costUSD if exists, otherwise calculate), calculate (always calculate), display (always use costUSD)",
|
|
690
|
+
"default": "auto"
|
|
691
|
+
},
|
|
692
|
+
"debug": {
|
|
693
|
+
"type": "boolean",
|
|
694
|
+
"description": "Show pricing mismatch information for debugging",
|
|
695
|
+
"markdownDescription": "Show pricing mismatch information for debugging",
|
|
696
|
+
"default": false
|
|
697
|
+
},
|
|
698
|
+
"debugSamples": {
|
|
699
|
+
"type": "number",
|
|
700
|
+
"description": "Number of sample discrepancies to show in debug output (default: 5)",
|
|
701
|
+
"markdownDescription": "Number of sample discrepancies to show in debug output (default: 5)",
|
|
702
|
+
"default": 5
|
|
703
|
+
},
|
|
704
|
+
"order": {
|
|
705
|
+
"type": "string",
|
|
706
|
+
"enum": ["desc", "asc"],
|
|
707
|
+
"description": "Sort order: desc (newest first) or asc (oldest first)",
|
|
708
|
+
"markdownDescription": "Sort order: desc (newest first) or asc (oldest first)",
|
|
709
|
+
"default": "asc"
|
|
710
|
+
},
|
|
711
|
+
"breakdown": {
|
|
712
|
+
"type": "boolean",
|
|
713
|
+
"description": "Show per-model cost breakdown",
|
|
714
|
+
"markdownDescription": "Show per-model cost breakdown",
|
|
715
|
+
"default": false
|
|
716
|
+
},
|
|
717
|
+
"offline": {
|
|
718
|
+
"type": "boolean",
|
|
719
|
+
"description": "Use cached pricing data for Claude models instead of fetching from API",
|
|
720
|
+
"markdownDescription": "Use cached pricing data for Claude models instead of fetching from API",
|
|
721
|
+
"default": false
|
|
722
|
+
},
|
|
723
|
+
"singleThread": {
|
|
724
|
+
"type": "boolean",
|
|
725
|
+
"description": "Disable parallel JSONL file loading",
|
|
726
|
+
"markdownDescription": "Disable parallel JSONL file loading",
|
|
727
|
+
"default": false
|
|
728
|
+
},
|
|
729
|
+
"color": {
|
|
730
|
+
"type": "boolean",
|
|
731
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
732
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
733
|
+
},
|
|
734
|
+
"noColor": {
|
|
735
|
+
"type": "boolean",
|
|
736
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
737
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
738
|
+
},
|
|
739
|
+
"timezone": {
|
|
740
|
+
"type": "string",
|
|
741
|
+
"description": "Timezone for date grouping (e.g., UTC, America/New_York, Asia/Tokyo). Default: system timezone",
|
|
742
|
+
"markdownDescription": "Timezone for date grouping (e.g., UTC, America/New_York, Asia/Tokyo). Default: system timezone"
|
|
743
|
+
},
|
|
744
|
+
"compact": {
|
|
745
|
+
"type": "boolean",
|
|
746
|
+
"description": "Force compact mode for narrow displays (better for screenshots)",
|
|
747
|
+
"markdownDescription": "Force compact mode for narrow displays (better for screenshots)",
|
|
748
|
+
"default": false
|
|
749
|
+
},
|
|
750
|
+
"instances": {
|
|
751
|
+
"type": "boolean",
|
|
752
|
+
"description": "Show usage breakdown by project/instance",
|
|
753
|
+
"markdownDescription": "Show usage breakdown by project/instance",
|
|
754
|
+
"default": false
|
|
755
|
+
},
|
|
756
|
+
"project": {
|
|
757
|
+
"type": "string",
|
|
758
|
+
"description": "Filter to specific project name",
|
|
759
|
+
"markdownDescription": "Filter to specific project name"
|
|
760
|
+
},
|
|
761
|
+
"projectAliases": {
|
|
762
|
+
"type": "string",
|
|
763
|
+
"description": "Comma-separated project aliases (e.g., 'ccusage=Usage Tracker,myproject=My Project')",
|
|
764
|
+
"markdownDescription": "Comma-separated project aliases (e.g., 'ccusage=Usage Tracker,myproject=My Project')"
|
|
765
|
+
}
|
|
766
|
+
},
|
|
767
|
+
"additionalProperties": false
|
|
768
|
+
},
|
|
769
|
+
"monthly": {
|
|
770
|
+
"type": "object",
|
|
771
|
+
"properties": {
|
|
772
|
+
"since": {
|
|
773
|
+
"type": "string",
|
|
774
|
+
"description": "Filter from date (YYYYMMDD format)",
|
|
775
|
+
"markdownDescription": "Filter from date (YYYYMMDD format)"
|
|
776
|
+
},
|
|
777
|
+
"until": {
|
|
778
|
+
"type": "string",
|
|
779
|
+
"description": "Filter until date (YYYYMMDD format)",
|
|
780
|
+
"markdownDescription": "Filter until date (YYYYMMDD format)"
|
|
781
|
+
},
|
|
782
|
+
"json": {
|
|
783
|
+
"type": "boolean",
|
|
784
|
+
"description": "Output in JSON format",
|
|
785
|
+
"markdownDescription": "Output in JSON format",
|
|
786
|
+
"default": false
|
|
787
|
+
},
|
|
788
|
+
"mode": {
|
|
789
|
+
"type": "string",
|
|
790
|
+
"enum": ["auto", "calculate", "display"],
|
|
791
|
+
"description": "Cost calculation mode: auto (use costUSD if exists, otherwise calculate), calculate (always calculate), display (always use costUSD)",
|
|
792
|
+
"markdownDescription": "Cost calculation mode: auto (use costUSD if exists, otherwise calculate), calculate (always calculate), display (always use costUSD)",
|
|
793
|
+
"default": "auto"
|
|
794
|
+
},
|
|
795
|
+
"debug": {
|
|
796
|
+
"type": "boolean",
|
|
797
|
+
"description": "Show pricing mismatch information for debugging",
|
|
798
|
+
"markdownDescription": "Show pricing mismatch information for debugging",
|
|
799
|
+
"default": false
|
|
800
|
+
},
|
|
801
|
+
"debugSamples": {
|
|
802
|
+
"type": "number",
|
|
803
|
+
"description": "Number of sample discrepancies to show in debug output (default: 5)",
|
|
804
|
+
"markdownDescription": "Number of sample discrepancies to show in debug output (default: 5)",
|
|
805
|
+
"default": 5
|
|
806
|
+
},
|
|
807
|
+
"order": {
|
|
808
|
+
"type": "string",
|
|
809
|
+
"enum": ["desc", "asc"],
|
|
810
|
+
"description": "Sort order: desc (newest first) or asc (oldest first)",
|
|
811
|
+
"markdownDescription": "Sort order: desc (newest first) or asc (oldest first)",
|
|
812
|
+
"default": "asc"
|
|
813
|
+
},
|
|
814
|
+
"breakdown": {
|
|
815
|
+
"type": "boolean",
|
|
816
|
+
"description": "Show per-model cost breakdown",
|
|
817
|
+
"markdownDescription": "Show per-model cost breakdown",
|
|
818
|
+
"default": false
|
|
819
|
+
},
|
|
820
|
+
"offline": {
|
|
821
|
+
"type": "boolean",
|
|
822
|
+
"description": "Use cached pricing data for Claude models instead of fetching from API",
|
|
823
|
+
"markdownDescription": "Use cached pricing data for Claude models instead of fetching from API",
|
|
824
|
+
"default": false
|
|
825
|
+
},
|
|
826
|
+
"singleThread": {
|
|
827
|
+
"type": "boolean",
|
|
828
|
+
"description": "Disable parallel JSONL file loading",
|
|
829
|
+
"markdownDescription": "Disable parallel JSONL file loading",
|
|
830
|
+
"default": false
|
|
831
|
+
},
|
|
832
|
+
"color": {
|
|
833
|
+
"type": "boolean",
|
|
834
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
835
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
836
|
+
},
|
|
837
|
+
"noColor": {
|
|
838
|
+
"type": "boolean",
|
|
839
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
840
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
841
|
+
},
|
|
842
|
+
"timezone": {
|
|
843
|
+
"type": "string",
|
|
844
|
+
"description": "Timezone for date grouping (e.g., UTC, America/New_York, Asia/Tokyo). Default: system timezone",
|
|
845
|
+
"markdownDescription": "Timezone for date grouping (e.g., UTC, America/New_York, Asia/Tokyo). Default: system timezone"
|
|
846
|
+
},
|
|
847
|
+
"compact": {
|
|
848
|
+
"type": "boolean",
|
|
849
|
+
"description": "Force compact mode for narrow displays (better for screenshots)",
|
|
850
|
+
"markdownDescription": "Force compact mode for narrow displays (better for screenshots)",
|
|
851
|
+
"default": false
|
|
852
|
+
}
|
|
853
|
+
},
|
|
854
|
+
"additionalProperties": false
|
|
855
|
+
},
|
|
856
|
+
"weekly": {
|
|
857
|
+
"type": "object",
|
|
858
|
+
"properties": {
|
|
859
|
+
"since": {
|
|
860
|
+
"type": "string",
|
|
861
|
+
"description": "Filter from date (YYYYMMDD format)",
|
|
862
|
+
"markdownDescription": "Filter from date (YYYYMMDD format)"
|
|
863
|
+
},
|
|
864
|
+
"until": {
|
|
865
|
+
"type": "string",
|
|
866
|
+
"description": "Filter until date (YYYYMMDD format)",
|
|
867
|
+
"markdownDescription": "Filter until date (YYYYMMDD format)"
|
|
868
|
+
},
|
|
869
|
+
"json": {
|
|
870
|
+
"type": "boolean",
|
|
871
|
+
"description": "Output in JSON format",
|
|
872
|
+
"markdownDescription": "Output in JSON format",
|
|
873
|
+
"default": false
|
|
874
|
+
},
|
|
875
|
+
"mode": {
|
|
876
|
+
"type": "string",
|
|
877
|
+
"enum": ["auto", "calculate", "display"],
|
|
878
|
+
"description": "Cost calculation mode: auto (use costUSD if exists, otherwise calculate), calculate (always calculate), display (always use costUSD)",
|
|
879
|
+
"markdownDescription": "Cost calculation mode: auto (use costUSD if exists, otherwise calculate), calculate (always calculate), display (always use costUSD)",
|
|
880
|
+
"default": "auto"
|
|
881
|
+
},
|
|
882
|
+
"debug": {
|
|
883
|
+
"type": "boolean",
|
|
884
|
+
"description": "Show pricing mismatch information for debugging",
|
|
885
|
+
"markdownDescription": "Show pricing mismatch information for debugging",
|
|
886
|
+
"default": false
|
|
887
|
+
},
|
|
888
|
+
"debugSamples": {
|
|
889
|
+
"type": "number",
|
|
890
|
+
"description": "Number of sample discrepancies to show in debug output (default: 5)",
|
|
891
|
+
"markdownDescription": "Number of sample discrepancies to show in debug output (default: 5)",
|
|
892
|
+
"default": 5
|
|
893
|
+
},
|
|
894
|
+
"order": {
|
|
895
|
+
"type": "string",
|
|
896
|
+
"enum": ["desc", "asc"],
|
|
897
|
+
"description": "Sort order: desc (newest first) or asc (oldest first)",
|
|
898
|
+
"markdownDescription": "Sort order: desc (newest first) or asc (oldest first)",
|
|
899
|
+
"default": "asc"
|
|
900
|
+
},
|
|
901
|
+
"breakdown": {
|
|
902
|
+
"type": "boolean",
|
|
903
|
+
"description": "Show per-model cost breakdown",
|
|
904
|
+
"markdownDescription": "Show per-model cost breakdown",
|
|
905
|
+
"default": false
|
|
906
|
+
},
|
|
907
|
+
"offline": {
|
|
908
|
+
"type": "boolean",
|
|
909
|
+
"description": "Use cached pricing data for Claude models instead of fetching from API",
|
|
910
|
+
"markdownDescription": "Use cached pricing data for Claude models instead of fetching from API",
|
|
911
|
+
"default": false
|
|
912
|
+
},
|
|
913
|
+
"singleThread": {
|
|
914
|
+
"type": "boolean",
|
|
915
|
+
"description": "Disable parallel JSONL file loading",
|
|
916
|
+
"markdownDescription": "Disable parallel JSONL file loading",
|
|
917
|
+
"default": false
|
|
918
|
+
},
|
|
919
|
+
"color": {
|
|
920
|
+
"type": "boolean",
|
|
921
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
922
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
923
|
+
},
|
|
924
|
+
"noColor": {
|
|
925
|
+
"type": "boolean",
|
|
926
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
927
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
928
|
+
},
|
|
929
|
+
"timezone": {
|
|
930
|
+
"type": "string",
|
|
931
|
+
"description": "Timezone for date grouping (e.g., UTC, America/New_York, Asia/Tokyo). Default: system timezone",
|
|
932
|
+
"markdownDescription": "Timezone for date grouping (e.g., UTC, America/New_York, Asia/Tokyo). Default: system timezone"
|
|
933
|
+
},
|
|
934
|
+
"compact": {
|
|
935
|
+
"type": "boolean",
|
|
936
|
+
"description": "Force compact mode for narrow displays (better for screenshots)",
|
|
937
|
+
"markdownDescription": "Force compact mode for narrow displays (better for screenshots)",
|
|
938
|
+
"default": false
|
|
939
|
+
},
|
|
940
|
+
"startOfWeek": {
|
|
941
|
+
"type": "string",
|
|
942
|
+
"enum": [
|
|
943
|
+
"sunday",
|
|
944
|
+
"monday",
|
|
945
|
+
"tuesday",
|
|
946
|
+
"wednesday",
|
|
947
|
+
"thursday",
|
|
948
|
+
"friday",
|
|
949
|
+
"saturday"
|
|
950
|
+
],
|
|
951
|
+
"description": "Day to start the week on",
|
|
952
|
+
"markdownDescription": "Day to start the week on",
|
|
953
|
+
"default": "sunday"
|
|
954
|
+
}
|
|
955
|
+
},
|
|
956
|
+
"additionalProperties": false
|
|
957
|
+
},
|
|
958
|
+
"session": {
|
|
959
|
+
"type": "object",
|
|
960
|
+
"properties": {
|
|
961
|
+
"since": {
|
|
962
|
+
"type": "string",
|
|
963
|
+
"description": "Filter from date (YYYYMMDD format)",
|
|
964
|
+
"markdownDescription": "Filter from date (YYYYMMDD format)"
|
|
965
|
+
},
|
|
966
|
+
"until": {
|
|
967
|
+
"type": "string",
|
|
968
|
+
"description": "Filter until date (YYYYMMDD format)",
|
|
969
|
+
"markdownDescription": "Filter until date (YYYYMMDD format)"
|
|
970
|
+
},
|
|
971
|
+
"json": {
|
|
972
|
+
"type": "boolean",
|
|
973
|
+
"description": "Output in JSON format",
|
|
974
|
+
"markdownDescription": "Output in JSON format",
|
|
975
|
+
"default": false
|
|
976
|
+
},
|
|
977
|
+
"mode": {
|
|
978
|
+
"type": "string",
|
|
979
|
+
"enum": ["auto", "calculate", "display"],
|
|
980
|
+
"description": "Cost calculation mode: auto (use costUSD if exists, otherwise calculate), calculate (always calculate), display (always use costUSD)",
|
|
981
|
+
"markdownDescription": "Cost calculation mode: auto (use costUSD if exists, otherwise calculate), calculate (always calculate), display (always use costUSD)",
|
|
982
|
+
"default": "auto"
|
|
983
|
+
},
|
|
984
|
+
"debug": {
|
|
985
|
+
"type": "boolean",
|
|
986
|
+
"description": "Show pricing mismatch information for debugging",
|
|
987
|
+
"markdownDescription": "Show pricing mismatch information for debugging",
|
|
988
|
+
"default": false
|
|
989
|
+
},
|
|
990
|
+
"debugSamples": {
|
|
991
|
+
"type": "number",
|
|
992
|
+
"description": "Number of sample discrepancies to show in debug output (default: 5)",
|
|
993
|
+
"markdownDescription": "Number of sample discrepancies to show in debug output (default: 5)",
|
|
994
|
+
"default": 5
|
|
995
|
+
},
|
|
996
|
+
"breakdown": {
|
|
997
|
+
"type": "boolean",
|
|
998
|
+
"description": "Show per-model cost breakdown",
|
|
999
|
+
"markdownDescription": "Show per-model cost breakdown",
|
|
1000
|
+
"default": false
|
|
1001
|
+
},
|
|
1002
|
+
"offline": {
|
|
1003
|
+
"type": "boolean",
|
|
1004
|
+
"description": "Use cached pricing data for Claude models instead of fetching from API",
|
|
1005
|
+
"markdownDescription": "Use cached pricing data for Claude models instead of fetching from API",
|
|
1006
|
+
"default": false
|
|
1007
|
+
},
|
|
1008
|
+
"singleThread": {
|
|
1009
|
+
"type": "boolean",
|
|
1010
|
+
"description": "Disable parallel JSONL file loading",
|
|
1011
|
+
"markdownDescription": "Disable parallel JSONL file loading",
|
|
1012
|
+
"default": false
|
|
1013
|
+
},
|
|
1014
|
+
"color": {
|
|
1015
|
+
"type": "boolean",
|
|
1016
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
1017
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
1018
|
+
},
|
|
1019
|
+
"noColor": {
|
|
1020
|
+
"type": "boolean",
|
|
1021
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
1022
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
1023
|
+
},
|
|
1024
|
+
"timezone": {
|
|
1025
|
+
"type": "string",
|
|
1026
|
+
"description": "Timezone for date grouping (e.g., UTC, America/New_York, Asia/Tokyo). Default: system timezone",
|
|
1027
|
+
"markdownDescription": "Timezone for date grouping (e.g., UTC, America/New_York, Asia/Tokyo). Default: system timezone"
|
|
1028
|
+
},
|
|
1029
|
+
"compact": {
|
|
1030
|
+
"type": "boolean",
|
|
1031
|
+
"description": "Force compact mode for narrow displays (better for screenshots)",
|
|
1032
|
+
"markdownDescription": "Force compact mode for narrow displays (better for screenshots)",
|
|
1033
|
+
"default": false
|
|
1034
|
+
},
|
|
1035
|
+
"id": {
|
|
1036
|
+
"type": "string",
|
|
1037
|
+
"description": "Load usage data for a specific session ID",
|
|
1038
|
+
"markdownDescription": "Load usage data for a specific session ID"
|
|
1039
|
+
}
|
|
1040
|
+
},
|
|
1041
|
+
"additionalProperties": false
|
|
1042
|
+
},
|
|
1043
|
+
"blocks": {
|
|
1044
|
+
"type": "object",
|
|
1045
|
+
"properties": {
|
|
1046
|
+
"since": {
|
|
1047
|
+
"type": "string",
|
|
1048
|
+
"description": "Filter from date (YYYYMMDD format)",
|
|
1049
|
+
"markdownDescription": "Filter from date (YYYYMMDD format)"
|
|
1050
|
+
},
|
|
1051
|
+
"until": {
|
|
1052
|
+
"type": "string",
|
|
1053
|
+
"description": "Filter until date (YYYYMMDD format)",
|
|
1054
|
+
"markdownDescription": "Filter until date (YYYYMMDD format)"
|
|
1055
|
+
},
|
|
1056
|
+
"json": {
|
|
1057
|
+
"type": "boolean",
|
|
1058
|
+
"description": "Output in JSON format",
|
|
1059
|
+
"markdownDescription": "Output in JSON format",
|
|
1060
|
+
"default": false
|
|
1061
|
+
},
|
|
1062
|
+
"mode": {
|
|
1063
|
+
"type": "string",
|
|
1064
|
+
"enum": ["auto", "calculate", "display"],
|
|
1065
|
+
"description": "Cost calculation mode: auto (use costUSD if exists, otherwise calculate), calculate (always calculate), display (always use costUSD)",
|
|
1066
|
+
"markdownDescription": "Cost calculation mode: auto (use costUSD if exists, otherwise calculate), calculate (always calculate), display (always use costUSD)",
|
|
1067
|
+
"default": "auto"
|
|
1068
|
+
},
|
|
1069
|
+
"debug": {
|
|
1070
|
+
"type": "boolean",
|
|
1071
|
+
"description": "Show pricing mismatch information for debugging",
|
|
1072
|
+
"markdownDescription": "Show pricing mismatch information for debugging",
|
|
1073
|
+
"default": false
|
|
1074
|
+
},
|
|
1075
|
+
"debugSamples": {
|
|
1076
|
+
"type": "number",
|
|
1077
|
+
"description": "Number of sample discrepancies to show in debug output (default: 5)",
|
|
1078
|
+
"markdownDescription": "Number of sample discrepancies to show in debug output (default: 5)",
|
|
1079
|
+
"default": 5
|
|
1080
|
+
},
|
|
1081
|
+
"order": {
|
|
1082
|
+
"type": "string",
|
|
1083
|
+
"enum": ["desc", "asc"],
|
|
1084
|
+
"description": "Sort order: desc (newest first) or asc (oldest first)",
|
|
1085
|
+
"markdownDescription": "Sort order: desc (newest first) or asc (oldest first)",
|
|
1086
|
+
"default": "asc"
|
|
1087
|
+
},
|
|
1088
|
+
"breakdown": {
|
|
1089
|
+
"type": "boolean",
|
|
1090
|
+
"description": "Show per-model cost breakdown",
|
|
1091
|
+
"markdownDescription": "Show per-model cost breakdown",
|
|
1092
|
+
"default": false
|
|
1093
|
+
},
|
|
1094
|
+
"offline": {
|
|
1095
|
+
"type": "boolean",
|
|
1096
|
+
"description": "Use cached pricing data for Claude models instead of fetching from API",
|
|
1097
|
+
"markdownDescription": "Use cached pricing data for Claude models instead of fetching from API",
|
|
1098
|
+
"default": false
|
|
1099
|
+
},
|
|
1100
|
+
"singleThread": {
|
|
1101
|
+
"type": "boolean",
|
|
1102
|
+
"description": "Disable parallel JSONL file loading",
|
|
1103
|
+
"markdownDescription": "Disable parallel JSONL file loading",
|
|
1104
|
+
"default": false
|
|
1105
|
+
},
|
|
1106
|
+
"color": {
|
|
1107
|
+
"type": "boolean",
|
|
1108
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
1109
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
1110
|
+
},
|
|
1111
|
+
"noColor": {
|
|
1112
|
+
"type": "boolean",
|
|
1113
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
1114
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
1115
|
+
},
|
|
1116
|
+
"timezone": {
|
|
1117
|
+
"type": "string",
|
|
1118
|
+
"description": "Timezone for date grouping (e.g., UTC, America/New_York, Asia/Tokyo). Default: system timezone",
|
|
1119
|
+
"markdownDescription": "Timezone for date grouping (e.g., UTC, America/New_York, Asia/Tokyo). Default: system timezone"
|
|
1120
|
+
},
|
|
1121
|
+
"compact": {
|
|
1122
|
+
"type": "boolean",
|
|
1123
|
+
"description": "Force compact mode for narrow displays (better for screenshots)",
|
|
1124
|
+
"markdownDescription": "Force compact mode for narrow displays (better for screenshots)",
|
|
1125
|
+
"default": false
|
|
1126
|
+
},
|
|
1127
|
+
"active": {
|
|
1128
|
+
"type": "boolean",
|
|
1129
|
+
"description": "Show only active block with projections",
|
|
1130
|
+
"markdownDescription": "Show only active block with projections",
|
|
1131
|
+
"default": false
|
|
1132
|
+
},
|
|
1133
|
+
"recent": {
|
|
1134
|
+
"type": "boolean",
|
|
1135
|
+
"description": "Show blocks from last 3 days (including active)",
|
|
1136
|
+
"markdownDescription": "Show blocks from last 3 days (including active)",
|
|
1137
|
+
"default": false
|
|
1138
|
+
},
|
|
1139
|
+
"tokenLimit": {
|
|
1140
|
+
"type": "string",
|
|
1141
|
+
"description": "Token limit for quota warnings (e.g., 500000 or \"max\")",
|
|
1142
|
+
"markdownDescription": "Token limit for quota warnings (e.g., 500000 or \"max\")"
|
|
1143
|
+
},
|
|
1144
|
+
"sessionLength": {
|
|
1145
|
+
"type": "number",
|
|
1146
|
+
"description": "Session block duration in hours (default: 5)",
|
|
1147
|
+
"markdownDescription": "Session block duration in hours (default: 5)",
|
|
1148
|
+
"default": 5
|
|
1149
|
+
}
|
|
1150
|
+
},
|
|
1151
|
+
"additionalProperties": false
|
|
1152
|
+
},
|
|
1153
|
+
"statusline": {
|
|
1154
|
+
"type": "object",
|
|
1155
|
+
"properties": {
|
|
1156
|
+
"offline": {
|
|
1157
|
+
"type": "boolean",
|
|
1158
|
+
"description": "Use cached pricing data for Claude models instead of fetching from API",
|
|
1159
|
+
"markdownDescription": "Use cached pricing data for Claude models instead of fetching from API",
|
|
1160
|
+
"default": true
|
|
1161
|
+
},
|
|
1162
|
+
"visualBurnRate": {
|
|
1163
|
+
"type": "string",
|
|
1164
|
+
"enum": ["off", "emoji", "text", "emoji-text"],
|
|
1165
|
+
"description": "Controls the visualization of the burn rate status",
|
|
1166
|
+
"markdownDescription": "Controls the visualization of the burn rate status",
|
|
1167
|
+
"default": "off"
|
|
1168
|
+
},
|
|
1169
|
+
"costSource": {
|
|
1170
|
+
"type": "string",
|
|
1171
|
+
"enum": ["auto", "ccusage", "cc", "both"],
|
|
1172
|
+
"description": "Session cost source: auto (prefer CC then ccusage), ccusage (always calculate), cc (always use Claude Code cost), both (show both costs)",
|
|
1173
|
+
"markdownDescription": "Session cost source: auto (prefer CC then ccusage), ccusage (always calculate), cc (always use Claude Code cost), both (show both costs)",
|
|
1174
|
+
"default": "auto"
|
|
1175
|
+
},
|
|
1176
|
+
"cache": {
|
|
1177
|
+
"type": "boolean",
|
|
1178
|
+
"description": "Enable cache for status line output (default: true)",
|
|
1179
|
+
"markdownDescription": "Enable cache for status line output (default: true)",
|
|
1180
|
+
"default": true
|
|
1181
|
+
},
|
|
1182
|
+
"refreshInterval": {
|
|
1183
|
+
"type": "number",
|
|
1184
|
+
"description": "Refresh interval in seconds for cache expiry (default: 1)",
|
|
1185
|
+
"markdownDescription": "Refresh interval in seconds for cache expiry (default: 1)",
|
|
1186
|
+
"default": 1
|
|
1187
|
+
},
|
|
1188
|
+
"contextLowThreshold": {
|
|
1189
|
+
"type": "number",
|
|
1190
|
+
"description": "Context usage percentage below which status is shown in green (0-100)",
|
|
1191
|
+
"markdownDescription": "Context usage percentage below which status is shown in green (0-100)",
|
|
1192
|
+
"default": 50
|
|
1193
|
+
},
|
|
1194
|
+
"contextMediumThreshold": {
|
|
1195
|
+
"type": "number",
|
|
1196
|
+
"description": "Context usage percentage below which status is shown in yellow (0-100)",
|
|
1197
|
+
"markdownDescription": "Context usage percentage below which status is shown in yellow (0-100)",
|
|
1198
|
+
"default": 80
|
|
1199
|
+
},
|
|
1200
|
+
"debug": {
|
|
1201
|
+
"type": "boolean",
|
|
1202
|
+
"description": "Show pricing mismatch information for debugging",
|
|
1203
|
+
"markdownDescription": "Show pricing mismatch information for debugging",
|
|
1204
|
+
"default": false
|
|
1205
|
+
}
|
|
1206
|
+
},
|
|
1207
|
+
"additionalProperties": false
|
|
1208
|
+
}
|
|
1209
|
+
},
|
|
1210
|
+
"additionalProperties": false,
|
|
1211
|
+
"description": "Command-specific configuration overrides for claude",
|
|
1212
|
+
"markdownDescription": "Command-specific configuration overrides for claude"
|
|
1213
|
+
}
|
|
1214
|
+
},
|
|
1215
|
+
"additionalProperties": false,
|
|
1216
|
+
"description": "claude command configuration",
|
|
1217
|
+
"markdownDescription": "claude command configuration"
|
|
1218
|
+
},
|
|
1219
|
+
"codex": {
|
|
1220
|
+
"type": "object",
|
|
1221
|
+
"properties": {
|
|
1222
|
+
"defaults": {
|
|
1223
|
+
"type": "object",
|
|
1224
|
+
"properties": {
|
|
1225
|
+
"json": {
|
|
1226
|
+
"type": "boolean",
|
|
1227
|
+
"description": "Output report as JSON",
|
|
1228
|
+
"markdownDescription": "Output report as JSON",
|
|
1229
|
+
"default": false
|
|
1230
|
+
},
|
|
1231
|
+
"since": {
|
|
1232
|
+
"type": "string",
|
|
1233
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
1234
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
1235
|
+
},
|
|
1236
|
+
"until": {
|
|
1237
|
+
"type": "string",
|
|
1238
|
+
"description": "Filter until date (inclusive)",
|
|
1239
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
1240
|
+
},
|
|
1241
|
+
"timezone": {
|
|
1242
|
+
"type": "string",
|
|
1243
|
+
"description": "Timezone for date grouping (IANA)",
|
|
1244
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
1245
|
+
},
|
|
1246
|
+
"offline": {
|
|
1247
|
+
"type": "boolean",
|
|
1248
|
+
"description": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1249
|
+
"markdownDescription": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1250
|
+
"default": false
|
|
1251
|
+
},
|
|
1252
|
+
"speed": {
|
|
1253
|
+
"type": "string",
|
|
1254
|
+
"description": "Cost speed tier: auto reads Codex config.toml service_tier; use standard or fast to override",
|
|
1255
|
+
"markdownDescription": "Cost speed tier: auto reads Codex config.toml service_tier; use standard or fast to override",
|
|
1256
|
+
"default": "auto"
|
|
1257
|
+
},
|
|
1258
|
+
"compact": {
|
|
1259
|
+
"type": "boolean",
|
|
1260
|
+
"description": "Force compact table layout for narrow terminals",
|
|
1261
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
1262
|
+
"default": false
|
|
1263
|
+
},
|
|
1264
|
+
"color": {
|
|
1265
|
+
"type": "boolean",
|
|
1266
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
1267
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
1268
|
+
},
|
|
1269
|
+
"noColor": {
|
|
1270
|
+
"type": "boolean",
|
|
1271
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
1272
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
1273
|
+
}
|
|
1274
|
+
},
|
|
1275
|
+
"additionalProperties": false,
|
|
1276
|
+
"description": "Default values for codex commands",
|
|
1277
|
+
"markdownDescription": "Default values for codex commands"
|
|
1278
|
+
},
|
|
1279
|
+
"commands": {
|
|
1280
|
+
"type": "object",
|
|
1281
|
+
"properties": {
|
|
1282
|
+
"daily": {
|
|
1283
|
+
"type": "object",
|
|
1284
|
+
"properties": {
|
|
1285
|
+
"json": {
|
|
1286
|
+
"type": "boolean",
|
|
1287
|
+
"description": "Output report as JSON",
|
|
1288
|
+
"markdownDescription": "Output report as JSON",
|
|
1289
|
+
"default": false
|
|
1290
|
+
},
|
|
1291
|
+
"since": {
|
|
1292
|
+
"type": "string",
|
|
1293
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
1294
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
1295
|
+
},
|
|
1296
|
+
"until": {
|
|
1297
|
+
"type": "string",
|
|
1298
|
+
"description": "Filter until date (inclusive)",
|
|
1299
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
1300
|
+
},
|
|
1301
|
+
"timezone": {
|
|
1302
|
+
"type": "string",
|
|
1303
|
+
"description": "Timezone for date grouping (IANA)",
|
|
1304
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
1305
|
+
},
|
|
1306
|
+
"offline": {
|
|
1307
|
+
"type": "boolean",
|
|
1308
|
+
"description": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1309
|
+
"markdownDescription": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1310
|
+
"default": false
|
|
1311
|
+
},
|
|
1312
|
+
"speed": {
|
|
1313
|
+
"type": "string",
|
|
1314
|
+
"description": "Cost speed tier: auto reads Codex config.toml service_tier; use standard or fast to override",
|
|
1315
|
+
"markdownDescription": "Cost speed tier: auto reads Codex config.toml service_tier; use standard or fast to override",
|
|
1316
|
+
"default": "auto"
|
|
1317
|
+
},
|
|
1318
|
+
"compact": {
|
|
1319
|
+
"type": "boolean",
|
|
1320
|
+
"description": "Force compact table layout for narrow terminals",
|
|
1321
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
1322
|
+
"default": false
|
|
1323
|
+
},
|
|
1324
|
+
"color": {
|
|
1325
|
+
"type": "boolean",
|
|
1326
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
1327
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
1328
|
+
},
|
|
1329
|
+
"noColor": {
|
|
1330
|
+
"type": "boolean",
|
|
1331
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
1332
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
1333
|
+
}
|
|
1334
|
+
},
|
|
1335
|
+
"additionalProperties": false
|
|
1336
|
+
},
|
|
1337
|
+
"monthly": {
|
|
1338
|
+
"type": "object",
|
|
1339
|
+
"properties": {
|
|
1340
|
+
"json": {
|
|
1341
|
+
"type": "boolean",
|
|
1342
|
+
"description": "Output report as JSON",
|
|
1343
|
+
"markdownDescription": "Output report as JSON",
|
|
1344
|
+
"default": false
|
|
1345
|
+
},
|
|
1346
|
+
"since": {
|
|
1347
|
+
"type": "string",
|
|
1348
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
1349
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
1350
|
+
},
|
|
1351
|
+
"until": {
|
|
1352
|
+
"type": "string",
|
|
1353
|
+
"description": "Filter until date (inclusive)",
|
|
1354
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
1355
|
+
},
|
|
1356
|
+
"timezone": {
|
|
1357
|
+
"type": "string",
|
|
1358
|
+
"description": "Timezone for date grouping (IANA)",
|
|
1359
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
1360
|
+
},
|
|
1361
|
+
"offline": {
|
|
1362
|
+
"type": "boolean",
|
|
1363
|
+
"description": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1364
|
+
"markdownDescription": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1365
|
+
"default": false
|
|
1366
|
+
},
|
|
1367
|
+
"speed": {
|
|
1368
|
+
"type": "string",
|
|
1369
|
+
"description": "Cost speed tier: auto reads Codex config.toml service_tier; use standard or fast to override",
|
|
1370
|
+
"markdownDescription": "Cost speed tier: auto reads Codex config.toml service_tier; use standard or fast to override",
|
|
1371
|
+
"default": "auto"
|
|
1372
|
+
},
|
|
1373
|
+
"compact": {
|
|
1374
|
+
"type": "boolean",
|
|
1375
|
+
"description": "Force compact table layout for narrow terminals",
|
|
1376
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
1377
|
+
"default": false
|
|
1378
|
+
},
|
|
1379
|
+
"color": {
|
|
1380
|
+
"type": "boolean",
|
|
1381
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
1382
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
1383
|
+
},
|
|
1384
|
+
"noColor": {
|
|
1385
|
+
"type": "boolean",
|
|
1386
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
1387
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
1388
|
+
}
|
|
1389
|
+
},
|
|
1390
|
+
"additionalProperties": false
|
|
1391
|
+
},
|
|
1392
|
+
"session": {
|
|
1393
|
+
"type": "object",
|
|
1394
|
+
"properties": {
|
|
1395
|
+
"json": {
|
|
1396
|
+
"type": "boolean",
|
|
1397
|
+
"description": "Output report as JSON",
|
|
1398
|
+
"markdownDescription": "Output report as JSON",
|
|
1399
|
+
"default": false
|
|
1400
|
+
},
|
|
1401
|
+
"since": {
|
|
1402
|
+
"type": "string",
|
|
1403
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
1404
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
1405
|
+
},
|
|
1406
|
+
"until": {
|
|
1407
|
+
"type": "string",
|
|
1408
|
+
"description": "Filter until date (inclusive)",
|
|
1409
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
1410
|
+
},
|
|
1411
|
+
"timezone": {
|
|
1412
|
+
"type": "string",
|
|
1413
|
+
"description": "Timezone for date grouping (IANA)",
|
|
1414
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
1415
|
+
},
|
|
1416
|
+
"offline": {
|
|
1417
|
+
"type": "boolean",
|
|
1418
|
+
"description": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1419
|
+
"markdownDescription": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1420
|
+
"default": false
|
|
1421
|
+
},
|
|
1422
|
+
"speed": {
|
|
1423
|
+
"type": "string",
|
|
1424
|
+
"description": "Cost speed tier: auto reads Codex config.toml service_tier; use standard or fast to override",
|
|
1425
|
+
"markdownDescription": "Cost speed tier: auto reads Codex config.toml service_tier; use standard or fast to override",
|
|
1426
|
+
"default": "auto"
|
|
1427
|
+
},
|
|
1428
|
+
"compact": {
|
|
1429
|
+
"type": "boolean",
|
|
1430
|
+
"description": "Force compact table layout for narrow terminals",
|
|
1431
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
1432
|
+
"default": false
|
|
1433
|
+
},
|
|
1434
|
+
"color": {
|
|
1435
|
+
"type": "boolean",
|
|
1436
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
1437
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
1438
|
+
},
|
|
1439
|
+
"noColor": {
|
|
1440
|
+
"type": "boolean",
|
|
1441
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
1442
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
1443
|
+
}
|
|
1444
|
+
},
|
|
1445
|
+
"additionalProperties": false
|
|
1446
|
+
}
|
|
1447
|
+
},
|
|
1448
|
+
"additionalProperties": false,
|
|
1449
|
+
"description": "Command-specific configuration overrides for codex",
|
|
1450
|
+
"markdownDescription": "Command-specific configuration overrides for codex"
|
|
1451
|
+
}
|
|
1452
|
+
},
|
|
1453
|
+
"additionalProperties": false,
|
|
1454
|
+
"description": "codex command configuration",
|
|
1455
|
+
"markdownDescription": "codex command configuration"
|
|
1456
|
+
},
|
|
1457
|
+
"opencode": {
|
|
1458
|
+
"type": "object",
|
|
1459
|
+
"properties": {
|
|
1460
|
+
"defaults": {
|
|
1461
|
+
"type": "object",
|
|
1462
|
+
"properties": {
|
|
1463
|
+
"json": {
|
|
1464
|
+
"type": "boolean",
|
|
1465
|
+
"description": "Output in JSON format",
|
|
1466
|
+
"markdownDescription": "Output in JSON format",
|
|
1467
|
+
"default": false
|
|
1468
|
+
},
|
|
1469
|
+
"since": {
|
|
1470
|
+
"type": "string",
|
|
1471
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
1472
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
1473
|
+
},
|
|
1474
|
+
"until": {
|
|
1475
|
+
"type": "string",
|
|
1476
|
+
"description": "Filter until date (inclusive)",
|
|
1477
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
1478
|
+
},
|
|
1479
|
+
"timezone": {
|
|
1480
|
+
"type": "string",
|
|
1481
|
+
"description": "Timezone for date grouping (IANA)",
|
|
1482
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
1483
|
+
},
|
|
1484
|
+
"offline": {
|
|
1485
|
+
"type": "boolean",
|
|
1486
|
+
"description": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1487
|
+
"markdownDescription": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1488
|
+
"default": false
|
|
1489
|
+
},
|
|
1490
|
+
"compact": {
|
|
1491
|
+
"type": "boolean",
|
|
1492
|
+
"description": "Force compact table layout for narrow terminals",
|
|
1493
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
1494
|
+
"default": false
|
|
1495
|
+
},
|
|
1496
|
+
"color": {
|
|
1497
|
+
"type": "boolean",
|
|
1498
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
1499
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
1500
|
+
},
|
|
1501
|
+
"noColor": {
|
|
1502
|
+
"type": "boolean",
|
|
1503
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
1504
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
1505
|
+
}
|
|
1506
|
+
},
|
|
1507
|
+
"additionalProperties": false,
|
|
1508
|
+
"description": "Default values for opencode commands",
|
|
1509
|
+
"markdownDescription": "Default values for opencode commands"
|
|
1510
|
+
},
|
|
1511
|
+
"commands": {
|
|
1512
|
+
"type": "object",
|
|
1513
|
+
"properties": {
|
|
1514
|
+
"daily": {
|
|
1515
|
+
"type": "object",
|
|
1516
|
+
"properties": {
|
|
1517
|
+
"json": {
|
|
1518
|
+
"type": "boolean",
|
|
1519
|
+
"description": "Output in JSON format",
|
|
1520
|
+
"markdownDescription": "Output in JSON format",
|
|
1521
|
+
"default": false
|
|
1522
|
+
},
|
|
1523
|
+
"since": {
|
|
1524
|
+
"type": "string",
|
|
1525
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
1526
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
1527
|
+
},
|
|
1528
|
+
"until": {
|
|
1529
|
+
"type": "string",
|
|
1530
|
+
"description": "Filter until date (inclusive)",
|
|
1531
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
1532
|
+
},
|
|
1533
|
+
"timezone": {
|
|
1534
|
+
"type": "string",
|
|
1535
|
+
"description": "Timezone for date grouping (IANA)",
|
|
1536
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
1537
|
+
},
|
|
1538
|
+
"offline": {
|
|
1539
|
+
"type": "boolean",
|
|
1540
|
+
"description": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1541
|
+
"markdownDescription": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1542
|
+
"default": false
|
|
1543
|
+
},
|
|
1544
|
+
"compact": {
|
|
1545
|
+
"type": "boolean",
|
|
1546
|
+
"description": "Force compact table layout for narrow terminals",
|
|
1547
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
1548
|
+
"default": false
|
|
1549
|
+
},
|
|
1550
|
+
"color": {
|
|
1551
|
+
"type": "boolean",
|
|
1552
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
1553
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
1554
|
+
},
|
|
1555
|
+
"noColor": {
|
|
1556
|
+
"type": "boolean",
|
|
1557
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
1558
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
1559
|
+
}
|
|
1560
|
+
},
|
|
1561
|
+
"additionalProperties": false
|
|
1562
|
+
},
|
|
1563
|
+
"weekly": {
|
|
1564
|
+
"type": "object",
|
|
1565
|
+
"properties": {
|
|
1566
|
+
"json": {
|
|
1567
|
+
"type": "boolean",
|
|
1568
|
+
"description": "Output in JSON format",
|
|
1569
|
+
"markdownDescription": "Output in JSON format",
|
|
1570
|
+
"default": false
|
|
1571
|
+
},
|
|
1572
|
+
"since": {
|
|
1573
|
+
"type": "string",
|
|
1574
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
1575
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
1576
|
+
},
|
|
1577
|
+
"until": {
|
|
1578
|
+
"type": "string",
|
|
1579
|
+
"description": "Filter until date (inclusive)",
|
|
1580
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
1581
|
+
},
|
|
1582
|
+
"timezone": {
|
|
1583
|
+
"type": "string",
|
|
1584
|
+
"description": "Timezone for date grouping (IANA)",
|
|
1585
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
1586
|
+
},
|
|
1587
|
+
"offline": {
|
|
1588
|
+
"type": "boolean",
|
|
1589
|
+
"description": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1590
|
+
"markdownDescription": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1591
|
+
"default": false
|
|
1592
|
+
},
|
|
1593
|
+
"compact": {
|
|
1594
|
+
"type": "boolean",
|
|
1595
|
+
"description": "Force compact table layout for narrow terminals",
|
|
1596
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
1597
|
+
"default": false
|
|
1598
|
+
},
|
|
1599
|
+
"color": {
|
|
1600
|
+
"type": "boolean",
|
|
1601
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
1602
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
1603
|
+
},
|
|
1604
|
+
"noColor": {
|
|
1605
|
+
"type": "boolean",
|
|
1606
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
1607
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
1608
|
+
}
|
|
1609
|
+
},
|
|
1610
|
+
"additionalProperties": false
|
|
1611
|
+
},
|
|
1612
|
+
"monthly": {
|
|
1613
|
+
"type": "object",
|
|
1614
|
+
"properties": {
|
|
1615
|
+
"json": {
|
|
1616
|
+
"type": "boolean",
|
|
1617
|
+
"description": "Output in JSON format",
|
|
1618
|
+
"markdownDescription": "Output in JSON format",
|
|
1619
|
+
"default": false
|
|
1620
|
+
},
|
|
1621
|
+
"since": {
|
|
1622
|
+
"type": "string",
|
|
1623
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
1624
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
1625
|
+
},
|
|
1626
|
+
"until": {
|
|
1627
|
+
"type": "string",
|
|
1628
|
+
"description": "Filter until date (inclusive)",
|
|
1629
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
1630
|
+
},
|
|
1631
|
+
"timezone": {
|
|
1632
|
+
"type": "string",
|
|
1633
|
+
"description": "Timezone for date grouping (IANA)",
|
|
1634
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
1635
|
+
},
|
|
1636
|
+
"offline": {
|
|
1637
|
+
"type": "boolean",
|
|
1638
|
+
"description": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1639
|
+
"markdownDescription": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1640
|
+
"default": false
|
|
1641
|
+
},
|
|
1642
|
+
"compact": {
|
|
1643
|
+
"type": "boolean",
|
|
1644
|
+
"description": "Force compact table layout for narrow terminals",
|
|
1645
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
1646
|
+
"default": false
|
|
1647
|
+
},
|
|
1648
|
+
"color": {
|
|
1649
|
+
"type": "boolean",
|
|
1650
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
1651
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
1652
|
+
},
|
|
1653
|
+
"noColor": {
|
|
1654
|
+
"type": "boolean",
|
|
1655
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
1656
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
1657
|
+
}
|
|
1658
|
+
},
|
|
1659
|
+
"additionalProperties": false
|
|
1660
|
+
},
|
|
1661
|
+
"session": {
|
|
1662
|
+
"type": "object",
|
|
1663
|
+
"properties": {
|
|
1664
|
+
"json": {
|
|
1665
|
+
"type": "boolean",
|
|
1666
|
+
"description": "Output in JSON format",
|
|
1667
|
+
"markdownDescription": "Output in JSON format",
|
|
1668
|
+
"default": false
|
|
1669
|
+
},
|
|
1670
|
+
"since": {
|
|
1671
|
+
"type": "string",
|
|
1672
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
1673
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
1674
|
+
},
|
|
1675
|
+
"until": {
|
|
1676
|
+
"type": "string",
|
|
1677
|
+
"description": "Filter until date (inclusive)",
|
|
1678
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
1679
|
+
},
|
|
1680
|
+
"timezone": {
|
|
1681
|
+
"type": "string",
|
|
1682
|
+
"description": "Timezone for date grouping (IANA)",
|
|
1683
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
1684
|
+
},
|
|
1685
|
+
"offline": {
|
|
1686
|
+
"type": "boolean",
|
|
1687
|
+
"description": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1688
|
+
"markdownDescription": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1689
|
+
"default": false
|
|
1690
|
+
},
|
|
1691
|
+
"compact": {
|
|
1692
|
+
"type": "boolean",
|
|
1693
|
+
"description": "Force compact table layout for narrow terminals",
|
|
1694
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
1695
|
+
"default": false
|
|
1696
|
+
},
|
|
1697
|
+
"color": {
|
|
1698
|
+
"type": "boolean",
|
|
1699
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
1700
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
1701
|
+
},
|
|
1702
|
+
"noColor": {
|
|
1703
|
+
"type": "boolean",
|
|
1704
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
1705
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
1706
|
+
}
|
|
1707
|
+
},
|
|
1708
|
+
"additionalProperties": false
|
|
1709
|
+
}
|
|
1710
|
+
},
|
|
1711
|
+
"additionalProperties": false,
|
|
1712
|
+
"description": "Command-specific configuration overrides for opencode",
|
|
1713
|
+
"markdownDescription": "Command-specific configuration overrides for opencode"
|
|
1714
|
+
}
|
|
1715
|
+
},
|
|
1716
|
+
"additionalProperties": false,
|
|
1717
|
+
"description": "opencode command configuration",
|
|
1718
|
+
"markdownDescription": "opencode command configuration"
|
|
1719
|
+
},
|
|
1720
|
+
"amp": {
|
|
1721
|
+
"type": "object",
|
|
1722
|
+
"properties": {
|
|
1723
|
+
"defaults": {
|
|
1724
|
+
"type": "object",
|
|
1725
|
+
"properties": {
|
|
1726
|
+
"json": {
|
|
1727
|
+
"type": "boolean",
|
|
1728
|
+
"description": "Output in JSON format",
|
|
1729
|
+
"markdownDescription": "Output in JSON format",
|
|
1730
|
+
"default": false
|
|
1731
|
+
},
|
|
1732
|
+
"since": {
|
|
1733
|
+
"type": "string",
|
|
1734
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
1735
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
1736
|
+
},
|
|
1737
|
+
"until": {
|
|
1738
|
+
"type": "string",
|
|
1739
|
+
"description": "Filter until date (inclusive)",
|
|
1740
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
1741
|
+
},
|
|
1742
|
+
"timezone": {
|
|
1743
|
+
"type": "string",
|
|
1744
|
+
"description": "Timezone for date grouping (IANA)",
|
|
1745
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
1746
|
+
},
|
|
1747
|
+
"offline": {
|
|
1748
|
+
"type": "boolean",
|
|
1749
|
+
"description": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1750
|
+
"markdownDescription": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1751
|
+
"default": false
|
|
1752
|
+
},
|
|
1753
|
+
"compact": {
|
|
1754
|
+
"type": "boolean",
|
|
1755
|
+
"description": "Force compact table layout for narrow terminals",
|
|
1756
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
1757
|
+
"default": false
|
|
1758
|
+
},
|
|
1759
|
+
"color": {
|
|
1760
|
+
"type": "boolean",
|
|
1761
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
1762
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
1763
|
+
},
|
|
1764
|
+
"noColor": {
|
|
1765
|
+
"type": "boolean",
|
|
1766
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
1767
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
1768
|
+
}
|
|
1769
|
+
},
|
|
1770
|
+
"additionalProperties": false,
|
|
1771
|
+
"description": "Default values for amp commands",
|
|
1772
|
+
"markdownDescription": "Default values for amp commands"
|
|
1773
|
+
},
|
|
1774
|
+
"commands": {
|
|
1775
|
+
"type": "object",
|
|
1776
|
+
"properties": {
|
|
1777
|
+
"daily": {
|
|
1778
|
+
"type": "object",
|
|
1779
|
+
"properties": {
|
|
1780
|
+
"json": {
|
|
1781
|
+
"type": "boolean",
|
|
1782
|
+
"description": "Output in JSON format",
|
|
1783
|
+
"markdownDescription": "Output in JSON format",
|
|
1784
|
+
"default": false
|
|
1785
|
+
},
|
|
1786
|
+
"since": {
|
|
1787
|
+
"type": "string",
|
|
1788
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
1789
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
1790
|
+
},
|
|
1791
|
+
"until": {
|
|
1792
|
+
"type": "string",
|
|
1793
|
+
"description": "Filter until date (inclusive)",
|
|
1794
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
1795
|
+
},
|
|
1796
|
+
"timezone": {
|
|
1797
|
+
"type": "string",
|
|
1798
|
+
"description": "Timezone for date grouping (IANA)",
|
|
1799
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
1800
|
+
},
|
|
1801
|
+
"offline": {
|
|
1802
|
+
"type": "boolean",
|
|
1803
|
+
"description": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1804
|
+
"markdownDescription": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1805
|
+
"default": false
|
|
1806
|
+
},
|
|
1807
|
+
"compact": {
|
|
1808
|
+
"type": "boolean",
|
|
1809
|
+
"description": "Force compact table layout for narrow terminals",
|
|
1810
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
1811
|
+
"default": false
|
|
1812
|
+
},
|
|
1813
|
+
"color": {
|
|
1814
|
+
"type": "boolean",
|
|
1815
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
1816
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
1817
|
+
},
|
|
1818
|
+
"noColor": {
|
|
1819
|
+
"type": "boolean",
|
|
1820
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
1821
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
1822
|
+
}
|
|
1823
|
+
},
|
|
1824
|
+
"additionalProperties": false
|
|
1825
|
+
},
|
|
1826
|
+
"monthly": {
|
|
1827
|
+
"type": "object",
|
|
1828
|
+
"properties": {
|
|
1829
|
+
"json": {
|
|
1830
|
+
"type": "boolean",
|
|
1831
|
+
"description": "Output in JSON format",
|
|
1832
|
+
"markdownDescription": "Output in JSON format",
|
|
1833
|
+
"default": false
|
|
1834
|
+
},
|
|
1835
|
+
"since": {
|
|
1836
|
+
"type": "string",
|
|
1837
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
1838
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
1839
|
+
},
|
|
1840
|
+
"until": {
|
|
1841
|
+
"type": "string",
|
|
1842
|
+
"description": "Filter until date (inclusive)",
|
|
1843
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
1844
|
+
},
|
|
1845
|
+
"timezone": {
|
|
1846
|
+
"type": "string",
|
|
1847
|
+
"description": "Timezone for date grouping (IANA)",
|
|
1848
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
1849
|
+
},
|
|
1850
|
+
"offline": {
|
|
1851
|
+
"type": "boolean",
|
|
1852
|
+
"description": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1853
|
+
"markdownDescription": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1854
|
+
"default": false
|
|
1855
|
+
},
|
|
1856
|
+
"compact": {
|
|
1857
|
+
"type": "boolean",
|
|
1858
|
+
"description": "Force compact table layout for narrow terminals",
|
|
1859
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
1860
|
+
"default": false
|
|
1861
|
+
},
|
|
1862
|
+
"color": {
|
|
1863
|
+
"type": "boolean",
|
|
1864
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
1865
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
1866
|
+
},
|
|
1867
|
+
"noColor": {
|
|
1868
|
+
"type": "boolean",
|
|
1869
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
1870
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
1871
|
+
}
|
|
1872
|
+
},
|
|
1873
|
+
"additionalProperties": false
|
|
1874
|
+
},
|
|
1875
|
+
"session": {
|
|
1876
|
+
"type": "object",
|
|
1877
|
+
"properties": {
|
|
1878
|
+
"json": {
|
|
1879
|
+
"type": "boolean",
|
|
1880
|
+
"description": "Output in JSON format",
|
|
1881
|
+
"markdownDescription": "Output in JSON format",
|
|
1882
|
+
"default": false
|
|
1883
|
+
},
|
|
1884
|
+
"since": {
|
|
1885
|
+
"type": "string",
|
|
1886
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
1887
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
1888
|
+
},
|
|
1889
|
+
"until": {
|
|
1890
|
+
"type": "string",
|
|
1891
|
+
"description": "Filter until date (inclusive)",
|
|
1892
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
1893
|
+
},
|
|
1894
|
+
"timezone": {
|
|
1895
|
+
"type": "string",
|
|
1896
|
+
"description": "Timezone for date grouping (IANA)",
|
|
1897
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
1898
|
+
},
|
|
1899
|
+
"offline": {
|
|
1900
|
+
"type": "boolean",
|
|
1901
|
+
"description": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1902
|
+
"markdownDescription": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1903
|
+
"default": false
|
|
1904
|
+
},
|
|
1905
|
+
"compact": {
|
|
1906
|
+
"type": "boolean",
|
|
1907
|
+
"description": "Force compact table layout for narrow terminals",
|
|
1908
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
1909
|
+
"default": false
|
|
1910
|
+
},
|
|
1911
|
+
"color": {
|
|
1912
|
+
"type": "boolean",
|
|
1913
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
1914
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
1915
|
+
},
|
|
1916
|
+
"noColor": {
|
|
1917
|
+
"type": "boolean",
|
|
1918
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
1919
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
1920
|
+
}
|
|
1921
|
+
},
|
|
1922
|
+
"additionalProperties": false
|
|
1923
|
+
}
|
|
1924
|
+
},
|
|
1925
|
+
"additionalProperties": false,
|
|
1926
|
+
"description": "Command-specific configuration overrides for amp",
|
|
1927
|
+
"markdownDescription": "Command-specific configuration overrides for amp"
|
|
1928
|
+
}
|
|
1929
|
+
},
|
|
1930
|
+
"additionalProperties": false,
|
|
1931
|
+
"description": "amp command configuration",
|
|
1932
|
+
"markdownDescription": "amp command configuration"
|
|
1933
|
+
},
|
|
1934
|
+
"pi": {
|
|
1935
|
+
"type": "object",
|
|
1936
|
+
"properties": {
|
|
1937
|
+
"defaults": {
|
|
1938
|
+
"type": "object",
|
|
1939
|
+
"properties": {
|
|
1940
|
+
"json": {
|
|
1941
|
+
"type": "boolean",
|
|
1942
|
+
"description": "Output in JSON format",
|
|
1943
|
+
"markdownDescription": "Output in JSON format",
|
|
1944
|
+
"default": false
|
|
1945
|
+
},
|
|
1946
|
+
"since": {
|
|
1947
|
+
"type": "string",
|
|
1948
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
1949
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
1950
|
+
},
|
|
1951
|
+
"until": {
|
|
1952
|
+
"type": "string",
|
|
1953
|
+
"description": "Filter until date (inclusive)",
|
|
1954
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
1955
|
+
},
|
|
1956
|
+
"timezone": {
|
|
1957
|
+
"type": "string",
|
|
1958
|
+
"description": "Timezone for date grouping (IANA)",
|
|
1959
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
1960
|
+
},
|
|
1961
|
+
"offline": {
|
|
1962
|
+
"type": "boolean",
|
|
1963
|
+
"description": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1964
|
+
"markdownDescription": "Use cached pricing data instead of fetching from LiteLLM",
|
|
1965
|
+
"default": false
|
|
1966
|
+
},
|
|
1967
|
+
"compact": {
|
|
1968
|
+
"type": "boolean",
|
|
1969
|
+
"description": "Force compact table layout for narrow terminals",
|
|
1970
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
1971
|
+
"default": false
|
|
1972
|
+
},
|
|
1973
|
+
"color": {
|
|
1974
|
+
"type": "boolean",
|
|
1975
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
1976
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
1977
|
+
},
|
|
1978
|
+
"noColor": {
|
|
1979
|
+
"type": "boolean",
|
|
1980
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
1981
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
1982
|
+
},
|
|
1983
|
+
"piPath": {
|
|
1984
|
+
"type": "string",
|
|
1985
|
+
"description": "Path or comma-separated paths to pi-agent sessions directories",
|
|
1986
|
+
"markdownDescription": "Path or comma-separated paths to pi-agent sessions directories"
|
|
1987
|
+
}
|
|
1988
|
+
},
|
|
1989
|
+
"additionalProperties": false,
|
|
1990
|
+
"description": "Default values for pi-agent commands",
|
|
1991
|
+
"markdownDescription": "Default values for pi-agent commands"
|
|
1992
|
+
},
|
|
1993
|
+
"commands": {
|
|
1994
|
+
"type": "object",
|
|
1995
|
+
"properties": {
|
|
1996
|
+
"daily": {
|
|
1997
|
+
"type": "object",
|
|
1998
|
+
"properties": {
|
|
1999
|
+
"json": {
|
|
2000
|
+
"type": "boolean",
|
|
2001
|
+
"description": "Output in JSON format",
|
|
2002
|
+
"markdownDescription": "Output in JSON format",
|
|
2003
|
+
"default": false
|
|
2004
|
+
},
|
|
2005
|
+
"since": {
|
|
2006
|
+
"type": "string",
|
|
2007
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
2008
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
2009
|
+
},
|
|
2010
|
+
"until": {
|
|
2011
|
+
"type": "string",
|
|
2012
|
+
"description": "Filter until date (inclusive)",
|
|
2013
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
2014
|
+
},
|
|
2015
|
+
"timezone": {
|
|
2016
|
+
"type": "string",
|
|
2017
|
+
"description": "Timezone for date grouping (IANA)",
|
|
2018
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
2019
|
+
},
|
|
2020
|
+
"offline": {
|
|
2021
|
+
"type": "boolean",
|
|
2022
|
+
"description": "Use cached pricing data instead of fetching from LiteLLM",
|
|
2023
|
+
"markdownDescription": "Use cached pricing data instead of fetching from LiteLLM",
|
|
2024
|
+
"default": false
|
|
2025
|
+
},
|
|
2026
|
+
"compact": {
|
|
2027
|
+
"type": "boolean",
|
|
2028
|
+
"description": "Force compact table layout for narrow terminals",
|
|
2029
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
2030
|
+
"default": false
|
|
2031
|
+
},
|
|
2032
|
+
"color": {
|
|
2033
|
+
"type": "boolean",
|
|
2034
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
2035
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
2036
|
+
},
|
|
2037
|
+
"noColor": {
|
|
2038
|
+
"type": "boolean",
|
|
2039
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
2040
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
2041
|
+
},
|
|
2042
|
+
"piPath": {
|
|
2043
|
+
"type": "string",
|
|
2044
|
+
"description": "Path or comma-separated paths to pi-agent sessions directories",
|
|
2045
|
+
"markdownDescription": "Path or comma-separated paths to pi-agent sessions directories"
|
|
2046
|
+
}
|
|
2047
|
+
},
|
|
2048
|
+
"additionalProperties": false
|
|
2049
|
+
},
|
|
2050
|
+
"monthly": {
|
|
2051
|
+
"type": "object",
|
|
2052
|
+
"properties": {
|
|
2053
|
+
"json": {
|
|
2054
|
+
"type": "boolean",
|
|
2055
|
+
"description": "Output in JSON format",
|
|
2056
|
+
"markdownDescription": "Output in JSON format",
|
|
2057
|
+
"default": false
|
|
2058
|
+
},
|
|
2059
|
+
"since": {
|
|
2060
|
+
"type": "string",
|
|
2061
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
2062
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
2063
|
+
},
|
|
2064
|
+
"until": {
|
|
2065
|
+
"type": "string",
|
|
2066
|
+
"description": "Filter until date (inclusive)",
|
|
2067
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
2068
|
+
},
|
|
2069
|
+
"timezone": {
|
|
2070
|
+
"type": "string",
|
|
2071
|
+
"description": "Timezone for date grouping (IANA)",
|
|
2072
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
2073
|
+
},
|
|
2074
|
+
"offline": {
|
|
2075
|
+
"type": "boolean",
|
|
2076
|
+
"description": "Use cached pricing data instead of fetching from LiteLLM",
|
|
2077
|
+
"markdownDescription": "Use cached pricing data instead of fetching from LiteLLM",
|
|
2078
|
+
"default": false
|
|
2079
|
+
},
|
|
2080
|
+
"compact": {
|
|
2081
|
+
"type": "boolean",
|
|
2082
|
+
"description": "Force compact table layout for narrow terminals",
|
|
2083
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
2084
|
+
"default": false
|
|
2085
|
+
},
|
|
2086
|
+
"color": {
|
|
2087
|
+
"type": "boolean",
|
|
2088
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
2089
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
2090
|
+
},
|
|
2091
|
+
"noColor": {
|
|
2092
|
+
"type": "boolean",
|
|
2093
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
2094
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
2095
|
+
},
|
|
2096
|
+
"piPath": {
|
|
2097
|
+
"type": "string",
|
|
2098
|
+
"description": "Path or comma-separated paths to pi-agent sessions directories",
|
|
2099
|
+
"markdownDescription": "Path or comma-separated paths to pi-agent sessions directories"
|
|
2100
|
+
}
|
|
2101
|
+
},
|
|
2102
|
+
"additionalProperties": false
|
|
2103
|
+
},
|
|
2104
|
+
"session": {
|
|
2105
|
+
"type": "object",
|
|
2106
|
+
"properties": {
|
|
2107
|
+
"json": {
|
|
2108
|
+
"type": "boolean",
|
|
2109
|
+
"description": "Output in JSON format",
|
|
2110
|
+
"markdownDescription": "Output in JSON format",
|
|
2111
|
+
"default": false
|
|
2112
|
+
},
|
|
2113
|
+
"since": {
|
|
2114
|
+
"type": "string",
|
|
2115
|
+
"description": "Filter from date (YYYY-MM-DD or YYYYMMDD)",
|
|
2116
|
+
"markdownDescription": "Filter from date (YYYY-MM-DD or YYYYMMDD)"
|
|
2117
|
+
},
|
|
2118
|
+
"until": {
|
|
2119
|
+
"type": "string",
|
|
2120
|
+
"description": "Filter until date (inclusive)",
|
|
2121
|
+
"markdownDescription": "Filter until date (inclusive)"
|
|
2122
|
+
},
|
|
2123
|
+
"timezone": {
|
|
2124
|
+
"type": "string",
|
|
2125
|
+
"description": "Timezone for date grouping (IANA)",
|
|
2126
|
+
"markdownDescription": "Timezone for date grouping (IANA)"
|
|
2127
|
+
},
|
|
2128
|
+
"offline": {
|
|
2129
|
+
"type": "boolean",
|
|
2130
|
+
"description": "Use cached pricing data instead of fetching from LiteLLM",
|
|
2131
|
+
"markdownDescription": "Use cached pricing data instead of fetching from LiteLLM",
|
|
2132
|
+
"default": false
|
|
2133
|
+
},
|
|
2134
|
+
"compact": {
|
|
2135
|
+
"type": "boolean",
|
|
2136
|
+
"description": "Force compact table layout for narrow terminals",
|
|
2137
|
+
"markdownDescription": "Force compact table layout for narrow terminals",
|
|
2138
|
+
"default": false
|
|
2139
|
+
},
|
|
2140
|
+
"color": {
|
|
2141
|
+
"type": "boolean",
|
|
2142
|
+
"description": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect.",
|
|
2143
|
+
"markdownDescription": "Enable colored output (default: auto). FORCE_COLOR=1 has the same effect."
|
|
2144
|
+
},
|
|
2145
|
+
"noColor": {
|
|
2146
|
+
"type": "boolean",
|
|
2147
|
+
"description": "Disable colored output (default: auto). NO_COLOR=1 has the same effect.",
|
|
2148
|
+
"markdownDescription": "Disable colored output (default: auto). NO_COLOR=1 has the same effect."
|
|
2149
|
+
},
|
|
2150
|
+
"piPath": {
|
|
2151
|
+
"type": "string",
|
|
2152
|
+
"description": "Path or comma-separated paths to pi-agent sessions directories",
|
|
2153
|
+
"markdownDescription": "Path or comma-separated paths to pi-agent sessions directories"
|
|
2154
|
+
}
|
|
2155
|
+
},
|
|
2156
|
+
"additionalProperties": false
|
|
2157
|
+
}
|
|
2158
|
+
},
|
|
2159
|
+
"additionalProperties": false,
|
|
2160
|
+
"description": "Command-specific configuration overrides for pi-agent",
|
|
2161
|
+
"markdownDescription": "Command-specific configuration overrides for pi-agent"
|
|
2162
|
+
}
|
|
2163
|
+
},
|
|
2164
|
+
"additionalProperties": false,
|
|
2165
|
+
"description": "pi-agent command configuration",
|
|
2166
|
+
"markdownDescription": "pi-agent command configuration"
|
|
681
2167
|
}
|
|
682
2168
|
},
|
|
683
2169
|
"additionalProperties": false
|
|
@@ -691,16 +2177,24 @@
|
|
|
691
2177
|
"$schema": "https://ccusage.com/config-schema.json",
|
|
692
2178
|
"defaults": {
|
|
693
2179
|
"json": false,
|
|
694
|
-
"
|
|
695
|
-
"timezone": "Asia/Tokyo",
|
|
696
|
-
"locale": "ja-JP"
|
|
2180
|
+
"timezone": "Asia/Tokyo"
|
|
697
2181
|
},
|
|
698
|
-
"
|
|
699
|
-
"
|
|
700
|
-
"
|
|
2182
|
+
"claude": {
|
|
2183
|
+
"defaults": {
|
|
2184
|
+
"mode": "auto"
|
|
701
2185
|
},
|
|
702
|
-
"
|
|
703
|
-
"
|
|
2186
|
+
"commands": {
|
|
2187
|
+
"daily": {
|
|
2188
|
+
"instances": true
|
|
2189
|
+
},
|
|
2190
|
+
"blocks": {
|
|
2191
|
+
"tokenLimit": "500000"
|
|
2192
|
+
}
|
|
2193
|
+
}
|
|
2194
|
+
},
|
|
2195
|
+
"codex": {
|
|
2196
|
+
"defaults": {
|
|
2197
|
+
"speed": "auto"
|
|
704
2198
|
}
|
|
705
2199
|
}
|
|
706
2200
|
}
|