faces-cli 1.4.5 → 1.5.0
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/dist/commands/compile/import.js +55 -20
- package/dist/commands/compile/upload.d.ts +17 -0
- package/dist/commands/compile/upload.js +108 -0
- package/oclif.manifest.json +585 -487
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -53,23 +53,10 @@
|
|
|
53
53
|
"state.js"
|
|
54
54
|
]
|
|
55
55
|
},
|
|
56
|
-
"
|
|
56
|
+
"billing:balance": {
|
|
57
57
|
"aliases": [],
|
|
58
|
-
"args": {
|
|
59
|
-
|
|
60
|
-
"description": "OAuth provider to connect",
|
|
61
|
-
"name": "provider",
|
|
62
|
-
"options": [
|
|
63
|
-
"openai"
|
|
64
|
-
],
|
|
65
|
-
"required": true
|
|
66
|
-
}
|
|
67
|
-
},
|
|
68
|
-
"description": "Connect an OAuth provider account to Faces (e.g. ChatGPT Plus/Pro)",
|
|
69
|
-
"examples": [
|
|
70
|
-
"<%= config.bin %> auth connect openai",
|
|
71
|
-
"<%= config.bin %> auth connect openai --manual"
|
|
72
|
-
],
|
|
58
|
+
"args": {},
|
|
59
|
+
"description": "Show credit balance and payment method status",
|
|
73
60
|
"flags": {
|
|
74
61
|
"json": {
|
|
75
62
|
"description": "Format output as json.",
|
|
@@ -101,17 +88,11 @@
|
|
|
101
88
|
"hasDynamicHelp": false,
|
|
102
89
|
"multiple": false,
|
|
103
90
|
"type": "option"
|
|
104
|
-
},
|
|
105
|
-
"manual": {
|
|
106
|
-
"description": "Manual mode for headless environments: prints the authorize URL and prompts you to paste the callback URL after approving in any browser.",
|
|
107
|
-
"name": "manual",
|
|
108
|
-
"allowNo": false,
|
|
109
|
-
"type": "boolean"
|
|
110
91
|
}
|
|
111
92
|
},
|
|
112
93
|
"hasDynamicHelp": false,
|
|
113
94
|
"hiddenAliases": [],
|
|
114
|
-
"id": "
|
|
95
|
+
"id": "billing:balance",
|
|
115
96
|
"pluginAlias": "faces-cli",
|
|
116
97
|
"pluginName": "faces-cli",
|
|
117
98
|
"pluginType": "core",
|
|
@@ -121,18 +102,14 @@
|
|
|
121
102
|
"relativePath": [
|
|
122
103
|
"dist",
|
|
123
104
|
"commands",
|
|
124
|
-
"
|
|
125
|
-
"
|
|
105
|
+
"billing",
|
|
106
|
+
"balance.js"
|
|
126
107
|
]
|
|
127
108
|
},
|
|
128
|
-
"
|
|
109
|
+
"billing:card-setup": {
|
|
129
110
|
"aliases": [],
|
|
130
111
|
"args": {},
|
|
131
|
-
"description": "
|
|
132
|
-
"examples": [
|
|
133
|
-
"<%= config.bin %> auth connections",
|
|
134
|
-
"<%= config.bin %> auth connections --json"
|
|
135
|
-
],
|
|
112
|
+
"description": "Get a Stripe card setup URL to save a payment method",
|
|
136
113
|
"flags": {
|
|
137
114
|
"json": {
|
|
138
115
|
"description": "Format output as json.",
|
|
@@ -168,7 +145,7 @@
|
|
|
168
145
|
},
|
|
169
146
|
"hasDynamicHelp": false,
|
|
170
147
|
"hiddenAliases": [],
|
|
171
|
-
"id": "
|
|
148
|
+
"id": "billing:card-setup",
|
|
172
149
|
"pluginAlias": "faces-cli",
|
|
173
150
|
"pluginName": "faces-cli",
|
|
174
151
|
"pluginType": "core",
|
|
@@ -178,26 +155,14 @@
|
|
|
178
155
|
"relativePath": [
|
|
179
156
|
"dist",
|
|
180
157
|
"commands",
|
|
181
|
-
"
|
|
182
|
-
"
|
|
158
|
+
"billing",
|
|
159
|
+
"card-setup.js"
|
|
183
160
|
]
|
|
184
161
|
},
|
|
185
|
-
"
|
|
162
|
+
"billing:checkout": {
|
|
186
163
|
"aliases": [],
|
|
187
|
-
"args": {
|
|
188
|
-
|
|
189
|
-
"description": "OAuth provider to disconnect",
|
|
190
|
-
"name": "provider",
|
|
191
|
-
"options": [
|
|
192
|
-
"openai"
|
|
193
|
-
],
|
|
194
|
-
"required": true
|
|
195
|
-
}
|
|
196
|
-
},
|
|
197
|
-
"description": "Disconnect a linked OAuth provider account",
|
|
198
|
-
"examples": [
|
|
199
|
-
"<%= config.bin %> auth disconnect openai"
|
|
200
|
-
],
|
|
164
|
+
"args": {},
|
|
165
|
+
"description": "Get a Stripe checkout URL to upgrade your subscription plan",
|
|
201
166
|
"flags": {
|
|
202
167
|
"json": {
|
|
203
168
|
"description": "Format output as json.",
|
|
@@ -229,11 +194,22 @@
|
|
|
229
194
|
"hasDynamicHelp": false,
|
|
230
195
|
"multiple": false,
|
|
231
196
|
"type": "option"
|
|
197
|
+
},
|
|
198
|
+
"plan": {
|
|
199
|
+
"description": "Plan to subscribe to",
|
|
200
|
+
"name": "plan",
|
|
201
|
+
"default": "connect",
|
|
202
|
+
"hasDynamicHelp": false,
|
|
203
|
+
"multiple": false,
|
|
204
|
+
"options": [
|
|
205
|
+
"connect"
|
|
206
|
+
],
|
|
207
|
+
"type": "option"
|
|
232
208
|
}
|
|
233
209
|
},
|
|
234
210
|
"hasDynamicHelp": false,
|
|
235
211
|
"hiddenAliases": [],
|
|
236
|
-
"id": "
|
|
212
|
+
"id": "billing:checkout",
|
|
237
213
|
"pluginAlias": "faces-cli",
|
|
238
214
|
"pluginName": "faces-cli",
|
|
239
215
|
"pluginType": "core",
|
|
@@ -243,14 +219,14 @@
|
|
|
243
219
|
"relativePath": [
|
|
244
220
|
"dist",
|
|
245
221
|
"commands",
|
|
246
|
-
"
|
|
247
|
-
"
|
|
222
|
+
"billing",
|
|
223
|
+
"checkout.js"
|
|
248
224
|
]
|
|
249
225
|
},
|
|
250
|
-
"
|
|
226
|
+
"billing:llm-costs": {
|
|
251
227
|
"aliases": [],
|
|
252
228
|
"args": {},
|
|
253
|
-
"description": "
|
|
229
|
+
"description": "List available LLMs and their per-token costs",
|
|
254
230
|
"flags": {
|
|
255
231
|
"json": {
|
|
256
232
|
"description": "Format output as json.",
|
|
@@ -283,18 +259,9 @@
|
|
|
283
259
|
"multiple": false,
|
|
284
260
|
"type": "option"
|
|
285
261
|
},
|
|
286
|
-
"
|
|
287
|
-
"description": "
|
|
288
|
-
"name": "
|
|
289
|
-
"required": true,
|
|
290
|
-
"hasDynamicHelp": false,
|
|
291
|
-
"multiple": false,
|
|
292
|
-
"type": "option"
|
|
293
|
-
},
|
|
294
|
-
"password": {
|
|
295
|
-
"description": "Account password",
|
|
296
|
-
"name": "password",
|
|
297
|
-
"required": true,
|
|
262
|
+
"provider": {
|
|
263
|
+
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
264
|
+
"name": "provider",
|
|
298
265
|
"hasDynamicHelp": false,
|
|
299
266
|
"multiple": false,
|
|
300
267
|
"type": "option"
|
|
@@ -302,7 +269,7 @@
|
|
|
302
269
|
},
|
|
303
270
|
"hasDynamicHelp": false,
|
|
304
271
|
"hiddenAliases": [],
|
|
305
|
-
"id": "
|
|
272
|
+
"id": "billing:llm-costs",
|
|
306
273
|
"pluginAlias": "faces-cli",
|
|
307
274
|
"pluginName": "faces-cli",
|
|
308
275
|
"pluginType": "core",
|
|
@@ -312,14 +279,14 @@
|
|
|
312
279
|
"relativePath": [
|
|
313
280
|
"dist",
|
|
314
281
|
"commands",
|
|
315
|
-
"
|
|
316
|
-
"
|
|
282
|
+
"billing",
|
|
283
|
+
"llm-costs.js"
|
|
317
284
|
]
|
|
318
285
|
},
|
|
319
|
-
"
|
|
286
|
+
"billing:quota": {
|
|
320
287
|
"aliases": [],
|
|
321
288
|
"args": {},
|
|
322
|
-
"description": "
|
|
289
|
+
"description": "Show compile token quota and per-face stats",
|
|
323
290
|
"flags": {
|
|
324
291
|
"json": {
|
|
325
292
|
"description": "Format output as json.",
|
|
@@ -355,7 +322,7 @@
|
|
|
355
322
|
},
|
|
356
323
|
"hasDynamicHelp": false,
|
|
357
324
|
"hiddenAliases": [],
|
|
358
|
-
"id": "
|
|
325
|
+
"id": "billing:quota",
|
|
359
326
|
"pluginAlias": "faces-cli",
|
|
360
327
|
"pluginName": "faces-cli",
|
|
361
328
|
"pluginType": "core",
|
|
@@ -365,14 +332,14 @@
|
|
|
365
332
|
"relativePath": [
|
|
366
333
|
"dist",
|
|
367
334
|
"commands",
|
|
368
|
-
"
|
|
369
|
-
"
|
|
335
|
+
"billing",
|
|
336
|
+
"quota.js"
|
|
370
337
|
]
|
|
371
338
|
},
|
|
372
|
-
"
|
|
339
|
+
"billing:subscription": {
|
|
373
340
|
"aliases": [],
|
|
374
341
|
"args": {},
|
|
375
|
-
"description": "
|
|
342
|
+
"description": "Show current plan, face count, and renewal date",
|
|
376
343
|
"flags": {
|
|
377
344
|
"json": {
|
|
378
345
|
"description": "Format output as json.",
|
|
@@ -408,7 +375,7 @@
|
|
|
408
375
|
},
|
|
409
376
|
"hasDynamicHelp": false,
|
|
410
377
|
"hiddenAliases": [],
|
|
411
|
-
"id": "
|
|
378
|
+
"id": "billing:subscription",
|
|
412
379
|
"pluginAlias": "faces-cli",
|
|
413
380
|
"pluginName": "faces-cli",
|
|
414
381
|
"pluginType": "core",
|
|
@@ -418,14 +385,14 @@
|
|
|
418
385
|
"relativePath": [
|
|
419
386
|
"dist",
|
|
420
387
|
"commands",
|
|
421
|
-
"
|
|
422
|
-
"
|
|
388
|
+
"billing",
|
|
389
|
+
"subscription.js"
|
|
423
390
|
]
|
|
424
391
|
},
|
|
425
|
-
"
|
|
392
|
+
"billing:topup": {
|
|
426
393
|
"aliases": [],
|
|
427
394
|
"args": {},
|
|
428
|
-
"description": "
|
|
395
|
+
"description": "Top up credit balance using saved payment method",
|
|
429
396
|
"flags": {
|
|
430
397
|
"json": {
|
|
431
398
|
"description": "Format output as json.",
|
|
@@ -458,40 +425,17 @@
|
|
|
458
425
|
"multiple": false,
|
|
459
426
|
"type": "option"
|
|
460
427
|
},
|
|
461
|
-
"
|
|
462
|
-
"description": "
|
|
463
|
-
"name": "
|
|
464
|
-
"required": true,
|
|
465
|
-
"hasDynamicHelp": false,
|
|
466
|
-
"multiple": false,
|
|
467
|
-
"type": "option"
|
|
468
|
-
},
|
|
469
|
-
"password": {
|
|
470
|
-
"description": "Password",
|
|
471
|
-
"name": "password",
|
|
472
|
-
"required": true,
|
|
473
|
-
"hasDynamicHelp": false,
|
|
474
|
-
"multiple": false,
|
|
475
|
-
"type": "option"
|
|
476
|
-
},
|
|
477
|
-
"name": {
|
|
478
|
-
"description": "Display name (defaults to username)",
|
|
479
|
-
"name": "name",
|
|
480
|
-
"hasDynamicHelp": false,
|
|
481
|
-
"multiple": false,
|
|
482
|
-
"type": "option"
|
|
483
|
-
},
|
|
484
|
-
"username": {
|
|
485
|
-
"description": "Username (lowercase, dashes, numbers)",
|
|
486
|
-
"name": "username",
|
|
428
|
+
"amount": {
|
|
429
|
+
"description": "Top-up amount in USD (min $1)",
|
|
430
|
+
"name": "amount",
|
|
487
431
|
"required": true,
|
|
488
432
|
"hasDynamicHelp": false,
|
|
489
433
|
"multiple": false,
|
|
490
434
|
"type": "option"
|
|
491
435
|
},
|
|
492
|
-
"
|
|
493
|
-
"description": "
|
|
494
|
-
"name": "
|
|
436
|
+
"payment-ref": {
|
|
437
|
+
"description": "Payment reference (admin/test path)",
|
|
438
|
+
"name": "payment-ref",
|
|
495
439
|
"hasDynamicHelp": false,
|
|
496
440
|
"multiple": false,
|
|
497
441
|
"type": "option"
|
|
@@ -499,7 +443,7 @@
|
|
|
499
443
|
},
|
|
500
444
|
"hasDynamicHelp": false,
|
|
501
445
|
"hiddenAliases": [],
|
|
502
|
-
"id": "
|
|
446
|
+
"id": "billing:topup",
|
|
503
447
|
"pluginAlias": "faces-cli",
|
|
504
448
|
"pluginName": "faces-cli",
|
|
505
449
|
"pluginType": "core",
|
|
@@ -509,14 +453,14 @@
|
|
|
509
453
|
"relativePath": [
|
|
510
454
|
"dist",
|
|
511
455
|
"commands",
|
|
512
|
-
"
|
|
513
|
-
"
|
|
456
|
+
"billing",
|
|
457
|
+
"topup.js"
|
|
514
458
|
]
|
|
515
459
|
},
|
|
516
|
-
"
|
|
460
|
+
"billing:usage": {
|
|
517
461
|
"aliases": [],
|
|
518
462
|
"args": {},
|
|
519
|
-
"description": "
|
|
463
|
+
"description": "Aggregated usage analytics",
|
|
520
464
|
"flags": {
|
|
521
465
|
"json": {
|
|
522
466
|
"description": "Format output as json.",
|
|
@@ -548,11 +492,38 @@
|
|
|
548
492
|
"hasDynamicHelp": false,
|
|
549
493
|
"multiple": false,
|
|
550
494
|
"type": "option"
|
|
495
|
+
},
|
|
496
|
+
"group-by": {
|
|
497
|
+
"description": "Group results",
|
|
498
|
+
"name": "group-by",
|
|
499
|
+
"hasDynamicHelp": false,
|
|
500
|
+
"multiple": false,
|
|
501
|
+
"options": [
|
|
502
|
+
"api_key",
|
|
503
|
+
"model",
|
|
504
|
+
"llm",
|
|
505
|
+
"date"
|
|
506
|
+
],
|
|
507
|
+
"type": "option"
|
|
508
|
+
},
|
|
509
|
+
"from": {
|
|
510
|
+
"description": "Start date (YYYY-MM-DD)",
|
|
511
|
+
"name": "from",
|
|
512
|
+
"hasDynamicHelp": false,
|
|
513
|
+
"multiple": false,
|
|
514
|
+
"type": "option"
|
|
515
|
+
},
|
|
516
|
+
"to": {
|
|
517
|
+
"description": "End date (YYYY-MM-DD)",
|
|
518
|
+
"name": "to",
|
|
519
|
+
"hasDynamicHelp": false,
|
|
520
|
+
"multiple": false,
|
|
521
|
+
"type": "option"
|
|
551
522
|
}
|
|
552
523
|
},
|
|
553
524
|
"hasDynamicHelp": false,
|
|
554
525
|
"hiddenAliases": [],
|
|
555
|
-
"id": "
|
|
526
|
+
"id": "billing:usage",
|
|
556
527
|
"pluginAlias": "faces-cli",
|
|
557
528
|
"pluginName": "faces-cli",
|
|
558
529
|
"pluginType": "core",
|
|
@@ -562,14 +533,27 @@
|
|
|
562
533
|
"relativePath": [
|
|
563
534
|
"dist",
|
|
564
535
|
"commands",
|
|
565
|
-
"
|
|
566
|
-
"
|
|
536
|
+
"billing",
|
|
537
|
+
"usage.js"
|
|
567
538
|
]
|
|
568
539
|
},
|
|
569
|
-
"
|
|
540
|
+
"auth:connect": {
|
|
570
541
|
"aliases": [],
|
|
571
|
-
"args": {
|
|
572
|
-
|
|
542
|
+
"args": {
|
|
543
|
+
"provider": {
|
|
544
|
+
"description": "OAuth provider to connect",
|
|
545
|
+
"name": "provider",
|
|
546
|
+
"options": [
|
|
547
|
+
"openai"
|
|
548
|
+
],
|
|
549
|
+
"required": true
|
|
550
|
+
}
|
|
551
|
+
},
|
|
552
|
+
"description": "Connect an OAuth provider account to Faces (e.g. ChatGPT Plus/Pro)",
|
|
553
|
+
"examples": [
|
|
554
|
+
"<%= config.bin %> auth connect openai",
|
|
555
|
+
"<%= config.bin %> auth connect openai --manual"
|
|
556
|
+
],
|
|
573
557
|
"flags": {
|
|
574
558
|
"json": {
|
|
575
559
|
"description": "Format output as json.",
|
|
@@ -601,11 +585,17 @@
|
|
|
601
585
|
"hasDynamicHelp": false,
|
|
602
586
|
"multiple": false,
|
|
603
587
|
"type": "option"
|
|
588
|
+
},
|
|
589
|
+
"manual": {
|
|
590
|
+
"description": "Manual mode for headless environments: prints the authorize URL and prompts you to paste the callback URL after approving in any browser.",
|
|
591
|
+
"name": "manual",
|
|
592
|
+
"allowNo": false,
|
|
593
|
+
"type": "boolean"
|
|
604
594
|
}
|
|
605
595
|
},
|
|
606
596
|
"hasDynamicHelp": false,
|
|
607
597
|
"hiddenAliases": [],
|
|
608
|
-
"id": "
|
|
598
|
+
"id": "auth:connect",
|
|
609
599
|
"pluginAlias": "faces-cli",
|
|
610
600
|
"pluginName": "faces-cli",
|
|
611
601
|
"pluginType": "core",
|
|
@@ -615,14 +605,18 @@
|
|
|
615
605
|
"relativePath": [
|
|
616
606
|
"dist",
|
|
617
607
|
"commands",
|
|
618
|
-
"
|
|
619
|
-
"
|
|
608
|
+
"auth",
|
|
609
|
+
"connect.js"
|
|
620
610
|
]
|
|
621
611
|
},
|
|
622
|
-
"
|
|
612
|
+
"auth:connections": {
|
|
623
613
|
"aliases": [],
|
|
624
614
|
"args": {},
|
|
625
|
-
"description": "
|
|
615
|
+
"description": "List connected OAuth provider accounts",
|
|
616
|
+
"examples": [
|
|
617
|
+
"<%= config.bin %> auth connections",
|
|
618
|
+
"<%= config.bin %> auth connections --json"
|
|
619
|
+
],
|
|
626
620
|
"flags": {
|
|
627
621
|
"json": {
|
|
628
622
|
"description": "Format output as json.",
|
|
@@ -658,7 +652,7 @@
|
|
|
658
652
|
},
|
|
659
653
|
"hasDynamicHelp": false,
|
|
660
654
|
"hiddenAliases": [],
|
|
661
|
-
"id": "
|
|
655
|
+
"id": "auth:connections",
|
|
662
656
|
"pluginAlias": "faces-cli",
|
|
663
657
|
"pluginName": "faces-cli",
|
|
664
658
|
"pluginType": "core",
|
|
@@ -668,14 +662,26 @@
|
|
|
668
662
|
"relativePath": [
|
|
669
663
|
"dist",
|
|
670
664
|
"commands",
|
|
671
|
-
"
|
|
672
|
-
"
|
|
665
|
+
"auth",
|
|
666
|
+
"connections.js"
|
|
673
667
|
]
|
|
674
668
|
},
|
|
675
|
-
"
|
|
669
|
+
"auth:disconnect": {
|
|
676
670
|
"aliases": [],
|
|
677
|
-
"args": {
|
|
678
|
-
|
|
671
|
+
"args": {
|
|
672
|
+
"provider": {
|
|
673
|
+
"description": "OAuth provider to disconnect",
|
|
674
|
+
"name": "provider",
|
|
675
|
+
"options": [
|
|
676
|
+
"openai"
|
|
677
|
+
],
|
|
678
|
+
"required": true
|
|
679
|
+
}
|
|
680
|
+
},
|
|
681
|
+
"description": "Disconnect a linked OAuth provider account",
|
|
682
|
+
"examples": [
|
|
683
|
+
"<%= config.bin %> auth disconnect openai"
|
|
684
|
+
],
|
|
679
685
|
"flags": {
|
|
680
686
|
"json": {
|
|
681
687
|
"description": "Format output as json.",
|
|
@@ -707,22 +713,11 @@
|
|
|
707
713
|
"hasDynamicHelp": false,
|
|
708
714
|
"multiple": false,
|
|
709
715
|
"type": "option"
|
|
710
|
-
},
|
|
711
|
-
"plan": {
|
|
712
|
-
"description": "Plan to subscribe to",
|
|
713
|
-
"name": "plan",
|
|
714
|
-
"default": "connect",
|
|
715
|
-
"hasDynamicHelp": false,
|
|
716
|
-
"multiple": false,
|
|
717
|
-
"options": [
|
|
718
|
-
"connect"
|
|
719
|
-
],
|
|
720
|
-
"type": "option"
|
|
721
716
|
}
|
|
722
717
|
},
|
|
723
718
|
"hasDynamicHelp": false,
|
|
724
719
|
"hiddenAliases": [],
|
|
725
|
-
"id": "
|
|
720
|
+
"id": "auth:disconnect",
|
|
726
721
|
"pluginAlias": "faces-cli",
|
|
727
722
|
"pluginName": "faces-cli",
|
|
728
723
|
"pluginType": "core",
|
|
@@ -732,14 +727,14 @@
|
|
|
732
727
|
"relativePath": [
|
|
733
728
|
"dist",
|
|
734
729
|
"commands",
|
|
735
|
-
"
|
|
736
|
-
"
|
|
730
|
+
"auth",
|
|
731
|
+
"disconnect.js"
|
|
737
732
|
]
|
|
738
733
|
},
|
|
739
|
-
"
|
|
734
|
+
"auth:login": {
|
|
740
735
|
"aliases": [],
|
|
741
736
|
"args": {},
|
|
742
|
-
"description": "
|
|
737
|
+
"description": "Login and save JWT credentials",
|
|
743
738
|
"flags": {
|
|
744
739
|
"json": {
|
|
745
740
|
"description": "Format output as json.",
|
|
@@ -772,9 +767,18 @@
|
|
|
772
767
|
"multiple": false,
|
|
773
768
|
"type": "option"
|
|
774
769
|
},
|
|
775
|
-
"
|
|
776
|
-
"description": "
|
|
777
|
-
"name": "
|
|
770
|
+
"email": {
|
|
771
|
+
"description": "Account email",
|
|
772
|
+
"name": "email",
|
|
773
|
+
"required": true,
|
|
774
|
+
"hasDynamicHelp": false,
|
|
775
|
+
"multiple": false,
|
|
776
|
+
"type": "option"
|
|
777
|
+
},
|
|
778
|
+
"password": {
|
|
779
|
+
"description": "Account password",
|
|
780
|
+
"name": "password",
|
|
781
|
+
"required": true,
|
|
778
782
|
"hasDynamicHelp": false,
|
|
779
783
|
"multiple": false,
|
|
780
784
|
"type": "option"
|
|
@@ -782,7 +786,7 @@
|
|
|
782
786
|
},
|
|
783
787
|
"hasDynamicHelp": false,
|
|
784
788
|
"hiddenAliases": [],
|
|
785
|
-
"id": "
|
|
789
|
+
"id": "auth:login",
|
|
786
790
|
"pluginAlias": "faces-cli",
|
|
787
791
|
"pluginName": "faces-cli",
|
|
788
792
|
"pluginType": "core",
|
|
@@ -792,14 +796,14 @@
|
|
|
792
796
|
"relativePath": [
|
|
793
797
|
"dist",
|
|
794
798
|
"commands",
|
|
795
|
-
"
|
|
796
|
-
"
|
|
799
|
+
"auth",
|
|
800
|
+
"login.js"
|
|
797
801
|
]
|
|
798
802
|
},
|
|
799
|
-
"
|
|
803
|
+
"auth:logout": {
|
|
800
804
|
"aliases": [],
|
|
801
805
|
"args": {},
|
|
802
|
-
"description": "
|
|
806
|
+
"description": "Clear saved credentials",
|
|
803
807
|
"flags": {
|
|
804
808
|
"json": {
|
|
805
809
|
"description": "Format output as json.",
|
|
@@ -835,7 +839,7 @@
|
|
|
835
839
|
},
|
|
836
840
|
"hasDynamicHelp": false,
|
|
837
841
|
"hiddenAliases": [],
|
|
838
|
-
"id": "
|
|
842
|
+
"id": "auth:logout",
|
|
839
843
|
"pluginAlias": "faces-cli",
|
|
840
844
|
"pluginName": "faces-cli",
|
|
841
845
|
"pluginType": "core",
|
|
@@ -845,14 +849,14 @@
|
|
|
845
849
|
"relativePath": [
|
|
846
850
|
"dist",
|
|
847
851
|
"commands",
|
|
848
|
-
"
|
|
849
|
-
"
|
|
852
|
+
"auth",
|
|
853
|
+
"logout.js"
|
|
850
854
|
]
|
|
851
855
|
},
|
|
852
|
-
"
|
|
856
|
+
"auth:refresh": {
|
|
853
857
|
"aliases": [],
|
|
854
858
|
"args": {},
|
|
855
|
-
"description": "
|
|
859
|
+
"description": "Exchange current JWT for a fresh one",
|
|
856
860
|
"flags": {
|
|
857
861
|
"json": {
|
|
858
862
|
"description": "Format output as json.",
|
|
@@ -888,7 +892,7 @@
|
|
|
888
892
|
},
|
|
889
893
|
"hasDynamicHelp": false,
|
|
890
894
|
"hiddenAliases": [],
|
|
891
|
-
"id": "
|
|
895
|
+
"id": "auth:refresh",
|
|
892
896
|
"pluginAlias": "faces-cli",
|
|
893
897
|
"pluginName": "faces-cli",
|
|
894
898
|
"pluginType": "core",
|
|
@@ -898,14 +902,14 @@
|
|
|
898
902
|
"relativePath": [
|
|
899
903
|
"dist",
|
|
900
904
|
"commands",
|
|
901
|
-
"
|
|
902
|
-
"
|
|
905
|
+
"auth",
|
|
906
|
+
"refresh.js"
|
|
903
907
|
]
|
|
904
908
|
},
|
|
905
|
-
"
|
|
909
|
+
"auth:register": {
|
|
906
910
|
"aliases": [],
|
|
907
911
|
"args": {},
|
|
908
|
-
"description": "
|
|
912
|
+
"description": "Create a new Faces account",
|
|
909
913
|
"flags": {
|
|
910
914
|
"json": {
|
|
911
915
|
"description": "Format output as json.",
|
|
@@ -938,17 +942,40 @@
|
|
|
938
942
|
"multiple": false,
|
|
939
943
|
"type": "option"
|
|
940
944
|
},
|
|
941
|
-
"
|
|
942
|
-
"description": "
|
|
943
|
-
"name": "
|
|
945
|
+
"email": {
|
|
946
|
+
"description": "Email address",
|
|
947
|
+
"name": "email",
|
|
944
948
|
"required": true,
|
|
945
949
|
"hasDynamicHelp": false,
|
|
946
950
|
"multiple": false,
|
|
947
951
|
"type": "option"
|
|
948
952
|
},
|
|
949
|
-
"
|
|
950
|
-
"description": "
|
|
951
|
-
"name": "
|
|
953
|
+
"password": {
|
|
954
|
+
"description": "Password",
|
|
955
|
+
"name": "password",
|
|
956
|
+
"required": true,
|
|
957
|
+
"hasDynamicHelp": false,
|
|
958
|
+
"multiple": false,
|
|
959
|
+
"type": "option"
|
|
960
|
+
},
|
|
961
|
+
"name": {
|
|
962
|
+
"description": "Display name (defaults to username)",
|
|
963
|
+
"name": "name",
|
|
964
|
+
"hasDynamicHelp": false,
|
|
965
|
+
"multiple": false,
|
|
966
|
+
"type": "option"
|
|
967
|
+
},
|
|
968
|
+
"username": {
|
|
969
|
+
"description": "Username (lowercase, dashes, numbers)",
|
|
970
|
+
"name": "username",
|
|
971
|
+
"required": true,
|
|
972
|
+
"hasDynamicHelp": false,
|
|
973
|
+
"multiple": false,
|
|
974
|
+
"type": "option"
|
|
975
|
+
},
|
|
976
|
+
"invite-key": {
|
|
977
|
+
"description": "Invite key (if required)",
|
|
978
|
+
"name": "invite-key",
|
|
952
979
|
"hasDynamicHelp": false,
|
|
953
980
|
"multiple": false,
|
|
954
981
|
"type": "option"
|
|
@@ -956,7 +983,7 @@
|
|
|
956
983
|
},
|
|
957
984
|
"hasDynamicHelp": false,
|
|
958
985
|
"hiddenAliases": [],
|
|
959
|
-
"id": "
|
|
986
|
+
"id": "auth:register",
|
|
960
987
|
"pluginAlias": "faces-cli",
|
|
961
988
|
"pluginName": "faces-cli",
|
|
962
989
|
"pluginType": "core",
|
|
@@ -966,14 +993,14 @@
|
|
|
966
993
|
"relativePath": [
|
|
967
994
|
"dist",
|
|
968
995
|
"commands",
|
|
969
|
-
"
|
|
970
|
-
"
|
|
996
|
+
"auth",
|
|
997
|
+
"register.js"
|
|
971
998
|
]
|
|
972
999
|
},
|
|
973
|
-
"
|
|
1000
|
+
"auth:whoami": {
|
|
974
1001
|
"aliases": [],
|
|
975
1002
|
"args": {},
|
|
976
|
-
"description": "
|
|
1003
|
+
"description": "Print current user profile",
|
|
977
1004
|
"flags": {
|
|
978
1005
|
"json": {
|
|
979
1006
|
"description": "Format output as json.",
|
|
@@ -1005,38 +1032,11 @@
|
|
|
1005
1032
|
"hasDynamicHelp": false,
|
|
1006
1033
|
"multiple": false,
|
|
1007
1034
|
"type": "option"
|
|
1008
|
-
},
|
|
1009
|
-
"group-by": {
|
|
1010
|
-
"description": "Group results",
|
|
1011
|
-
"name": "group-by",
|
|
1012
|
-
"hasDynamicHelp": false,
|
|
1013
|
-
"multiple": false,
|
|
1014
|
-
"options": [
|
|
1015
|
-
"api_key",
|
|
1016
|
-
"model",
|
|
1017
|
-
"llm",
|
|
1018
|
-
"date"
|
|
1019
|
-
],
|
|
1020
|
-
"type": "option"
|
|
1021
|
-
},
|
|
1022
|
-
"from": {
|
|
1023
|
-
"description": "Start date (YYYY-MM-DD)",
|
|
1024
|
-
"name": "from",
|
|
1025
|
-
"hasDynamicHelp": false,
|
|
1026
|
-
"multiple": false,
|
|
1027
|
-
"type": "option"
|
|
1028
|
-
},
|
|
1029
|
-
"to": {
|
|
1030
|
-
"description": "End date (YYYY-MM-DD)",
|
|
1031
|
-
"name": "to",
|
|
1032
|
-
"hasDynamicHelp": false,
|
|
1033
|
-
"multiple": false,
|
|
1034
|
-
"type": "option"
|
|
1035
1035
|
}
|
|
1036
1036
|
},
|
|
1037
1037
|
"hasDynamicHelp": false,
|
|
1038
1038
|
"hiddenAliases": [],
|
|
1039
|
-
"id": "
|
|
1039
|
+
"id": "auth:whoami",
|
|
1040
1040
|
"pluginAlias": "faces-cli",
|
|
1041
1041
|
"pluginName": "faces-cli",
|
|
1042
1042
|
"pluginType": "core",
|
|
@@ -1046,8 +1046,8 @@
|
|
|
1046
1046
|
"relativePath": [
|
|
1047
1047
|
"dist",
|
|
1048
1048
|
"commands",
|
|
1049
|
-
"
|
|
1050
|
-
"
|
|
1049
|
+
"auth",
|
|
1050
|
+
"whoami.js"
|
|
1051
1051
|
]
|
|
1052
1052
|
},
|
|
1053
1053
|
"catalog:doctor": {
|
|
@@ -1551,6 +1551,104 @@
|
|
|
1551
1551
|
"import.js"
|
|
1552
1552
|
]
|
|
1553
1553
|
},
|
|
1554
|
+
"compile:upload": {
|
|
1555
|
+
"aliases": [],
|
|
1556
|
+
"args": {
|
|
1557
|
+
"alias": {
|
|
1558
|
+
"description": "Face alias",
|
|
1559
|
+
"name": "alias",
|
|
1560
|
+
"required": true
|
|
1561
|
+
}
|
|
1562
|
+
},
|
|
1563
|
+
"description": "Upload a file (text/PDF/audio/video) to compile into a face",
|
|
1564
|
+
"flags": {
|
|
1565
|
+
"json": {
|
|
1566
|
+
"description": "Format output as json.",
|
|
1567
|
+
"helpGroup": "GLOBAL",
|
|
1568
|
+
"name": "json",
|
|
1569
|
+
"allowNo": false,
|
|
1570
|
+
"type": "boolean"
|
|
1571
|
+
},
|
|
1572
|
+
"base-url": {
|
|
1573
|
+
"description": "API base URL",
|
|
1574
|
+
"env": "FACES_BASE_URL",
|
|
1575
|
+
"name": "base-url",
|
|
1576
|
+
"hasDynamicHelp": false,
|
|
1577
|
+
"multiple": false,
|
|
1578
|
+
"type": "option"
|
|
1579
|
+
},
|
|
1580
|
+
"token": {
|
|
1581
|
+
"description": "JWT bearer token",
|
|
1582
|
+
"env": "FACES_TOKEN",
|
|
1583
|
+
"name": "token",
|
|
1584
|
+
"hasDynamicHelp": false,
|
|
1585
|
+
"multiple": false,
|
|
1586
|
+
"type": "option"
|
|
1587
|
+
},
|
|
1588
|
+
"api-key": {
|
|
1589
|
+
"description": "API key",
|
|
1590
|
+
"env": "FACES_API_KEY",
|
|
1591
|
+
"name": "api-key",
|
|
1592
|
+
"hasDynamicHelp": false,
|
|
1593
|
+
"multiple": false,
|
|
1594
|
+
"type": "option"
|
|
1595
|
+
},
|
|
1596
|
+
"file": {
|
|
1597
|
+
"description": "File to upload",
|
|
1598
|
+
"name": "file",
|
|
1599
|
+
"required": true,
|
|
1600
|
+
"hasDynamicHelp": false,
|
|
1601
|
+
"multiple": false,
|
|
1602
|
+
"type": "option"
|
|
1603
|
+
},
|
|
1604
|
+
"kind": {
|
|
1605
|
+
"description": "Upload kind: document or thread",
|
|
1606
|
+
"name": "kind",
|
|
1607
|
+
"default": "document",
|
|
1608
|
+
"hasDynamicHelp": false,
|
|
1609
|
+
"multiple": false,
|
|
1610
|
+
"options": [
|
|
1611
|
+
"document",
|
|
1612
|
+
"thread"
|
|
1613
|
+
],
|
|
1614
|
+
"type": "option"
|
|
1615
|
+
},
|
|
1616
|
+
"perspective": {
|
|
1617
|
+
"description": "Perspective (document only)",
|
|
1618
|
+
"name": "perspective",
|
|
1619
|
+
"default": "third-person",
|
|
1620
|
+
"hasDynamicHelp": false,
|
|
1621
|
+
"multiple": false,
|
|
1622
|
+
"options": [
|
|
1623
|
+
"first-person",
|
|
1624
|
+
"third-person"
|
|
1625
|
+
],
|
|
1626
|
+
"type": "option"
|
|
1627
|
+
},
|
|
1628
|
+
"face-speaker": {
|
|
1629
|
+
"description": "Speaker name to map to the face (thread only). If omitted, auto-detected from face name.",
|
|
1630
|
+
"name": "face-speaker",
|
|
1631
|
+
"hasDynamicHelp": false,
|
|
1632
|
+
"multiple": false,
|
|
1633
|
+
"type": "option"
|
|
1634
|
+
}
|
|
1635
|
+
},
|
|
1636
|
+
"hasDynamicHelp": false,
|
|
1637
|
+
"hiddenAliases": [],
|
|
1638
|
+
"id": "compile:upload",
|
|
1639
|
+
"pluginAlias": "faces-cli",
|
|
1640
|
+
"pluginName": "faces-cli",
|
|
1641
|
+
"pluginType": "core",
|
|
1642
|
+
"strict": true,
|
|
1643
|
+
"enableJsonFlag": true,
|
|
1644
|
+
"isESM": true,
|
|
1645
|
+
"relativePath": [
|
|
1646
|
+
"dist",
|
|
1647
|
+
"commands",
|
|
1648
|
+
"compile",
|
|
1649
|
+
"upload.js"
|
|
1650
|
+
]
|
|
1651
|
+
},
|
|
1554
1652
|
"config:clear": {
|
|
1555
1653
|
"aliases": [],
|
|
1556
1654
|
"args": {},
|
|
@@ -1727,10 +1825,10 @@
|
|
|
1727
1825
|
"show.js"
|
|
1728
1826
|
]
|
|
1729
1827
|
},
|
|
1730
|
-
"
|
|
1828
|
+
"keys:create": {
|
|
1731
1829
|
"aliases": [],
|
|
1732
1830
|
"args": {},
|
|
1733
|
-
"description": "Create a new
|
|
1831
|
+
"description": "Create a new API key (JWT required)",
|
|
1734
1832
|
"flags": {
|
|
1735
1833
|
"json": {
|
|
1736
1834
|
"description": "Format output as json.",
|
|
@@ -1764,52 +1862,37 @@
|
|
|
1764
1862
|
"type": "option"
|
|
1765
1863
|
},
|
|
1766
1864
|
"name": {
|
|
1767
|
-
"description": "
|
|
1865
|
+
"description": "Key name/label",
|
|
1768
1866
|
"name": "name",
|
|
1769
1867
|
"required": true,
|
|
1770
1868
|
"hasDynamicHelp": false,
|
|
1771
1869
|
"multiple": false,
|
|
1772
1870
|
"type": "option"
|
|
1773
1871
|
},
|
|
1774
|
-
"
|
|
1775
|
-
"description": "
|
|
1776
|
-
"name": "
|
|
1777
|
-
"required": true,
|
|
1778
|
-
"hasDynamicHelp": false,
|
|
1779
|
-
"multiple": false,
|
|
1780
|
-
"type": "option"
|
|
1781
|
-
},
|
|
1782
|
-
"description": {
|
|
1783
|
-
"description": "Description for local catalog",
|
|
1784
|
-
"name": "description",
|
|
1785
|
-
"hasDynamicHelp": false,
|
|
1786
|
-
"multiple": false,
|
|
1787
|
-
"type": "option"
|
|
1788
|
-
},
|
|
1789
|
-
"default-model": {
|
|
1790
|
-
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
1791
|
-
"name": "default-model",
|
|
1872
|
+
"expires-days": {
|
|
1873
|
+
"description": "Expiry in days (omit for no expiry)",
|
|
1874
|
+
"name": "expires-days",
|
|
1792
1875
|
"hasDynamicHelp": false,
|
|
1793
1876
|
"multiple": false,
|
|
1794
1877
|
"type": "option"
|
|
1795
1878
|
},
|
|
1796
|
-
"
|
|
1797
|
-
"description": "
|
|
1798
|
-
"name": "
|
|
1879
|
+
"budget": {
|
|
1880
|
+
"description": "Spend budget in USD",
|
|
1881
|
+
"name": "budget",
|
|
1799
1882
|
"hasDynamicHelp": false,
|
|
1800
1883
|
"multiple": false,
|
|
1801
1884
|
"type": "option"
|
|
1802
1885
|
},
|
|
1803
|
-
"
|
|
1804
|
-
"description": "
|
|
1805
|
-
"name": "
|
|
1886
|
+
"face": {
|
|
1887
|
+
"description": "Allowed face alias (repeatable)",
|
|
1888
|
+
"name": "face",
|
|
1806
1889
|
"hasDynamicHelp": false,
|
|
1807
1890
|
"multiple": true,
|
|
1808
1891
|
"type": "option"
|
|
1809
1892
|
},
|
|
1810
|
-
"
|
|
1811
|
-
"description": "
|
|
1812
|
-
"name": "
|
|
1893
|
+
"model": {
|
|
1894
|
+
"description": "Allowed model name (repeatable)",
|
|
1895
|
+
"name": "model",
|
|
1813
1896
|
"hasDynamicHelp": false,
|
|
1814
1897
|
"multiple": true,
|
|
1815
1898
|
"type": "option"
|
|
@@ -1817,7 +1900,7 @@
|
|
|
1817
1900
|
},
|
|
1818
1901
|
"hasDynamicHelp": false,
|
|
1819
1902
|
"hiddenAliases": [],
|
|
1820
|
-
"id": "
|
|
1903
|
+
"id": "keys:create",
|
|
1821
1904
|
"pluginAlias": "faces-cli",
|
|
1822
1905
|
"pluginName": "faces-cli",
|
|
1823
1906
|
"pluginType": "core",
|
|
@@ -1827,20 +1910,14 @@
|
|
|
1827
1910
|
"relativePath": [
|
|
1828
1911
|
"dist",
|
|
1829
1912
|
"commands",
|
|
1830
|
-
"
|
|
1913
|
+
"keys",
|
|
1831
1914
|
"create.js"
|
|
1832
1915
|
]
|
|
1833
1916
|
},
|
|
1834
|
-
"
|
|
1917
|
+
"keys:list": {
|
|
1835
1918
|
"aliases": [],
|
|
1836
|
-
"args": {
|
|
1837
|
-
|
|
1838
|
-
"description": "Face alias",
|
|
1839
|
-
"name": "face_id",
|
|
1840
|
-
"required": true
|
|
1841
|
-
}
|
|
1842
|
-
},
|
|
1843
|
-
"description": "Delete a face permanently",
|
|
1919
|
+
"args": {},
|
|
1920
|
+
"description": "List all API keys (JWT required)",
|
|
1844
1921
|
"flags": {
|
|
1845
1922
|
"json": {
|
|
1846
1923
|
"description": "Format output as json.",
|
|
@@ -1872,17 +1949,11 @@
|
|
|
1872
1949
|
"hasDynamicHelp": false,
|
|
1873
1950
|
"multiple": false,
|
|
1874
1951
|
"type": "option"
|
|
1875
|
-
},
|
|
1876
|
-
"yes": {
|
|
1877
|
-
"description": "Skip confirmation",
|
|
1878
|
-
"name": "yes",
|
|
1879
|
-
"allowNo": false,
|
|
1880
|
-
"type": "boolean"
|
|
1881
1952
|
}
|
|
1882
1953
|
},
|
|
1883
1954
|
"hasDynamicHelp": false,
|
|
1884
1955
|
"hiddenAliases": [],
|
|
1885
|
-
"id": "
|
|
1956
|
+
"id": "keys:list",
|
|
1886
1957
|
"pluginAlias": "faces-cli",
|
|
1887
1958
|
"pluginName": "faces-cli",
|
|
1888
1959
|
"pluginType": "core",
|
|
@@ -1892,14 +1963,20 @@
|
|
|
1892
1963
|
"relativePath": [
|
|
1893
1964
|
"dist",
|
|
1894
1965
|
"commands",
|
|
1895
|
-
"
|
|
1896
|
-
"
|
|
1966
|
+
"keys",
|
|
1967
|
+
"list.js"
|
|
1897
1968
|
]
|
|
1898
1969
|
},
|
|
1899
|
-
"
|
|
1970
|
+
"keys:revoke": {
|
|
1900
1971
|
"aliases": [],
|
|
1901
|
-
"args": {
|
|
1902
|
-
|
|
1972
|
+
"args": {
|
|
1973
|
+
"key_id": {
|
|
1974
|
+
"description": "Key ID",
|
|
1975
|
+
"name": "key_id",
|
|
1976
|
+
"required": true
|
|
1977
|
+
}
|
|
1978
|
+
},
|
|
1979
|
+
"description": "Revoke an API key (JWT required)",
|
|
1903
1980
|
"flags": {
|
|
1904
1981
|
"json": {
|
|
1905
1982
|
"description": "Format output as json.",
|
|
@@ -1932,18 +2009,16 @@
|
|
|
1932
2009
|
"multiple": false,
|
|
1933
2010
|
"type": "option"
|
|
1934
2011
|
},
|
|
1935
|
-
"
|
|
1936
|
-
"description": "
|
|
1937
|
-
"name": "
|
|
1938
|
-
"
|
|
1939
|
-
"
|
|
1940
|
-
"multiple": true,
|
|
1941
|
-
"type": "option"
|
|
2012
|
+
"yes": {
|
|
2013
|
+
"description": "Skip confirmation",
|
|
2014
|
+
"name": "yes",
|
|
2015
|
+
"allowNo": false,
|
|
2016
|
+
"type": "boolean"
|
|
1942
2017
|
}
|
|
1943
2018
|
},
|
|
1944
2019
|
"hasDynamicHelp": false,
|
|
1945
2020
|
"hiddenAliases": [],
|
|
1946
|
-
"id": "
|
|
2021
|
+
"id": "keys:revoke",
|
|
1947
2022
|
"pluginAlias": "faces-cli",
|
|
1948
2023
|
"pluginName": "faces-cli",
|
|
1949
2024
|
"pluginType": "core",
|
|
@@ -1953,20 +2028,20 @@
|
|
|
1953
2028
|
"relativePath": [
|
|
1954
2029
|
"dist",
|
|
1955
2030
|
"commands",
|
|
1956
|
-
"
|
|
1957
|
-
"
|
|
2031
|
+
"keys",
|
|
2032
|
+
"revoke.js"
|
|
1958
2033
|
]
|
|
1959
2034
|
},
|
|
1960
|
-
"
|
|
2035
|
+
"keys:update": {
|
|
1961
2036
|
"aliases": [],
|
|
1962
2037
|
"args": {
|
|
1963
|
-
"
|
|
1964
|
-
"description": "
|
|
1965
|
-
"name": "
|
|
2038
|
+
"key_id": {
|
|
2039
|
+
"description": "Key ID",
|
|
2040
|
+
"name": "key_id",
|
|
1966
2041
|
"required": true
|
|
1967
2042
|
}
|
|
1968
2043
|
},
|
|
1969
|
-
"description": "
|
|
2044
|
+
"description": "Update API key metadata (JWT required)",
|
|
1970
2045
|
"flags": {
|
|
1971
2046
|
"json": {
|
|
1972
2047
|
"description": "Format output as json.",
|
|
@@ -1998,11 +2073,31 @@
|
|
|
1998
2073
|
"hasDynamicHelp": false,
|
|
1999
2074
|
"multiple": false,
|
|
2000
2075
|
"type": "option"
|
|
2076
|
+
},
|
|
2077
|
+
"name": {
|
|
2078
|
+
"description": "New key name",
|
|
2079
|
+
"name": "name",
|
|
2080
|
+
"hasDynamicHelp": false,
|
|
2081
|
+
"multiple": false,
|
|
2082
|
+
"type": "option"
|
|
2083
|
+
},
|
|
2084
|
+
"budget": {
|
|
2085
|
+
"description": "New spend budget in USD",
|
|
2086
|
+
"name": "budget",
|
|
2087
|
+
"hasDynamicHelp": false,
|
|
2088
|
+
"multiple": false,
|
|
2089
|
+
"type": "option"
|
|
2090
|
+
},
|
|
2091
|
+
"reset-spent": {
|
|
2092
|
+
"description": "Reset spent amount to zero",
|
|
2093
|
+
"name": "reset-spent",
|
|
2094
|
+
"allowNo": false,
|
|
2095
|
+
"type": "boolean"
|
|
2001
2096
|
}
|
|
2002
2097
|
},
|
|
2003
2098
|
"hasDynamicHelp": false,
|
|
2004
2099
|
"hiddenAliases": [],
|
|
2005
|
-
"id": "
|
|
2100
|
+
"id": "keys:update",
|
|
2006
2101
|
"pluginAlias": "faces-cli",
|
|
2007
2102
|
"pluginName": "faces-cli",
|
|
2008
2103
|
"pluginType": "core",
|
|
@@ -2012,14 +2107,14 @@
|
|
|
2012
2107
|
"relativePath": [
|
|
2013
2108
|
"dist",
|
|
2014
2109
|
"commands",
|
|
2015
|
-
"
|
|
2016
|
-
"
|
|
2110
|
+
"keys",
|
|
2111
|
+
"update.js"
|
|
2017
2112
|
]
|
|
2018
2113
|
},
|
|
2019
|
-
"face:
|
|
2114
|
+
"face:create": {
|
|
2020
2115
|
"aliases": [],
|
|
2021
2116
|
"args": {},
|
|
2022
|
-
"description": "
|
|
2117
|
+
"description": "Create a new face",
|
|
2023
2118
|
"flags": {
|
|
2024
2119
|
"json": {
|
|
2025
2120
|
"description": "Format output as json.",
|
|
@@ -2051,11 +2146,62 @@
|
|
|
2051
2146
|
"hasDynamicHelp": false,
|
|
2052
2147
|
"multiple": false,
|
|
2053
2148
|
"type": "option"
|
|
2149
|
+
},
|
|
2150
|
+
"name": {
|
|
2151
|
+
"description": "Display name",
|
|
2152
|
+
"name": "name",
|
|
2153
|
+
"required": true,
|
|
2154
|
+
"hasDynamicHelp": false,
|
|
2155
|
+
"multiple": false,
|
|
2156
|
+
"type": "option"
|
|
2157
|
+
},
|
|
2158
|
+
"alias": {
|
|
2159
|
+
"description": "Unique alias slug",
|
|
2160
|
+
"name": "alias",
|
|
2161
|
+
"required": true,
|
|
2162
|
+
"hasDynamicHelp": false,
|
|
2163
|
+
"multiple": false,
|
|
2164
|
+
"type": "option"
|
|
2165
|
+
},
|
|
2166
|
+
"description": {
|
|
2167
|
+
"description": "Description for local catalog",
|
|
2168
|
+
"name": "description",
|
|
2169
|
+
"hasDynamicHelp": false,
|
|
2170
|
+
"multiple": false,
|
|
2171
|
+
"type": "option"
|
|
2172
|
+
},
|
|
2173
|
+
"default-model": {
|
|
2174
|
+
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
2175
|
+
"name": "default-model",
|
|
2176
|
+
"hasDynamicHelp": false,
|
|
2177
|
+
"multiple": false,
|
|
2178
|
+
"type": "option"
|
|
2179
|
+
},
|
|
2180
|
+
"formula": {
|
|
2181
|
+
"description": "Boolean formula over owned concrete face aliases (e.g. \"a | b\", \"(a | b) - c\"). Creates a composite face.",
|
|
2182
|
+
"name": "formula",
|
|
2183
|
+
"hasDynamicHelp": false,
|
|
2184
|
+
"multiple": false,
|
|
2185
|
+
"type": "option"
|
|
2186
|
+
},
|
|
2187
|
+
"attr": {
|
|
2188
|
+
"description": "Attribute KEY=VALUE (repeatable)",
|
|
2189
|
+
"name": "attr",
|
|
2190
|
+
"hasDynamicHelp": false,
|
|
2191
|
+
"multiple": true,
|
|
2192
|
+
"type": "option"
|
|
2193
|
+
},
|
|
2194
|
+
"tool": {
|
|
2195
|
+
"description": "Tool name to enable (repeatable)",
|
|
2196
|
+
"name": "tool",
|
|
2197
|
+
"hasDynamicHelp": false,
|
|
2198
|
+
"multiple": true,
|
|
2199
|
+
"type": "option"
|
|
2054
2200
|
}
|
|
2055
2201
|
},
|
|
2056
2202
|
"hasDynamicHelp": false,
|
|
2057
2203
|
"hiddenAliases": [],
|
|
2058
|
-
"id": "face:
|
|
2204
|
+
"id": "face:create",
|
|
2059
2205
|
"pluginAlias": "faces-cli",
|
|
2060
2206
|
"pluginName": "faces-cli",
|
|
2061
2207
|
"pluginType": "core",
|
|
@@ -2066,10 +2212,10 @@
|
|
|
2066
2212
|
"dist",
|
|
2067
2213
|
"commands",
|
|
2068
2214
|
"face",
|
|
2069
|
-
"
|
|
2215
|
+
"create.js"
|
|
2070
2216
|
]
|
|
2071
2217
|
},
|
|
2072
|
-
"face:
|
|
2218
|
+
"face:delete": {
|
|
2073
2219
|
"aliases": [],
|
|
2074
2220
|
"args": {
|
|
2075
2221
|
"face_id": {
|
|
@@ -2078,7 +2224,7 @@
|
|
|
2078
2224
|
"required": true
|
|
2079
2225
|
}
|
|
2080
2226
|
},
|
|
2081
|
-
"description": "
|
|
2227
|
+
"description": "Delete a face permanently",
|
|
2082
2228
|
"flags": {
|
|
2083
2229
|
"json": {
|
|
2084
2230
|
"description": "Format output as json.",
|
|
@@ -2111,44 +2257,16 @@
|
|
|
2111
2257
|
"multiple": false,
|
|
2112
2258
|
"type": "option"
|
|
2113
2259
|
},
|
|
2114
|
-
"
|
|
2115
|
-
"description": "
|
|
2116
|
-
"name": "
|
|
2117
|
-
"
|
|
2118
|
-
"
|
|
2119
|
-
"multiple": false,
|
|
2120
|
-
"type": "option"
|
|
2121
|
-
},
|
|
2122
|
-
"component": {
|
|
2123
|
-
"description": "Centroid component to rank on (beta, delta, epsilon are the principal components of a face; face is their composite)",
|
|
2124
|
-
"name": "component",
|
|
2125
|
-
"default": "face",
|
|
2126
|
-
"hasDynamicHelp": false,
|
|
2127
|
-
"multiple": false,
|
|
2128
|
-
"options": [
|
|
2129
|
-
"face",
|
|
2130
|
-
"beta",
|
|
2131
|
-
"delta",
|
|
2132
|
-
"epsilon"
|
|
2133
|
-
],
|
|
2134
|
-
"type": "option"
|
|
2135
|
-
},
|
|
2136
|
-
"direction": {
|
|
2137
|
-
"description": "nearest (most similar) or furthest (most dissimilar)",
|
|
2138
|
-
"name": "direction",
|
|
2139
|
-
"default": "nearest",
|
|
2140
|
-
"hasDynamicHelp": false,
|
|
2141
|
-
"multiple": false,
|
|
2142
|
-
"options": [
|
|
2143
|
-
"nearest",
|
|
2144
|
-
"furthest"
|
|
2145
|
-
],
|
|
2146
|
-
"type": "option"
|
|
2260
|
+
"yes": {
|
|
2261
|
+
"description": "Skip confirmation",
|
|
2262
|
+
"name": "yes",
|
|
2263
|
+
"allowNo": false,
|
|
2264
|
+
"type": "boolean"
|
|
2147
2265
|
}
|
|
2148
2266
|
},
|
|
2149
2267
|
"hasDynamicHelp": false,
|
|
2150
2268
|
"hiddenAliases": [],
|
|
2151
|
-
"id": "face:
|
|
2269
|
+
"id": "face:delete",
|
|
2152
2270
|
"pluginAlias": "faces-cli",
|
|
2153
2271
|
"pluginName": "faces-cli",
|
|
2154
2272
|
"pluginType": "core",
|
|
@@ -2159,13 +2277,13 @@
|
|
|
2159
2277
|
"dist",
|
|
2160
2278
|
"commands",
|
|
2161
2279
|
"face",
|
|
2162
|
-
"
|
|
2280
|
+
"delete.js"
|
|
2163
2281
|
]
|
|
2164
2282
|
},
|
|
2165
|
-
"face:
|
|
2283
|
+
"face:diff": {
|
|
2166
2284
|
"aliases": [],
|
|
2167
2285
|
"args": {},
|
|
2168
|
-
"description": "
|
|
2286
|
+
"description": "Compare owned faces pairwise across all centroid components",
|
|
2169
2287
|
"flags": {
|
|
2170
2288
|
"json": {
|
|
2171
2289
|
"description": "Format output as json.",
|
|
@@ -2197,11 +2315,19 @@
|
|
|
2197
2315
|
"hasDynamicHelp": false,
|
|
2198
2316
|
"multiple": false,
|
|
2199
2317
|
"type": "option"
|
|
2318
|
+
},
|
|
2319
|
+
"face": {
|
|
2320
|
+
"description": "Face alias to include (repeatable, min 2)",
|
|
2321
|
+
"name": "face",
|
|
2322
|
+
"required": true,
|
|
2323
|
+
"hasDynamicHelp": false,
|
|
2324
|
+
"multiple": true,
|
|
2325
|
+
"type": "option"
|
|
2200
2326
|
}
|
|
2201
2327
|
},
|
|
2202
2328
|
"hasDynamicHelp": false,
|
|
2203
2329
|
"hiddenAliases": [],
|
|
2204
|
-
"id": "face:
|
|
2330
|
+
"id": "face:diff",
|
|
2205
2331
|
"pluginAlias": "faces-cli",
|
|
2206
2332
|
"pluginName": "faces-cli",
|
|
2207
2333
|
"pluginType": "core",
|
|
@@ -2212,10 +2338,10 @@
|
|
|
2212
2338
|
"dist",
|
|
2213
2339
|
"commands",
|
|
2214
2340
|
"face",
|
|
2215
|
-
"
|
|
2341
|
+
"diff.js"
|
|
2216
2342
|
]
|
|
2217
2343
|
},
|
|
2218
|
-
"face:
|
|
2344
|
+
"face:get": {
|
|
2219
2345
|
"aliases": [],
|
|
2220
2346
|
"args": {
|
|
2221
2347
|
"face_id": {
|
|
@@ -2224,7 +2350,7 @@
|
|
|
2224
2350
|
"required": true
|
|
2225
2351
|
}
|
|
2226
2352
|
},
|
|
2227
|
-
"description": "
|
|
2353
|
+
"description": "Get details for a face by alias",
|
|
2228
2354
|
"flags": {
|
|
2229
2355
|
"json": {
|
|
2230
2356
|
"description": "Format output as json.",
|
|
@@ -2256,53 +2382,11 @@
|
|
|
2256
2382
|
"hasDynamicHelp": false,
|
|
2257
2383
|
"multiple": false,
|
|
2258
2384
|
"type": "option"
|
|
2259
|
-
},
|
|
2260
|
-
"name": {
|
|
2261
|
-
"description": "New display name",
|
|
2262
|
-
"name": "name",
|
|
2263
|
-
"hasDynamicHelp": false,
|
|
2264
|
-
"multiple": false,
|
|
2265
|
-
"type": "option"
|
|
2266
|
-
},
|
|
2267
|
-
"description": {
|
|
2268
|
-
"description": "Description for local catalog",
|
|
2269
|
-
"name": "description",
|
|
2270
|
-
"hasDynamicHelp": false,
|
|
2271
|
-
"multiple": false,
|
|
2272
|
-
"type": "option"
|
|
2273
|
-
},
|
|
2274
|
-
"default-model": {
|
|
2275
|
-
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
2276
|
-
"name": "default-model",
|
|
2277
|
-
"hasDynamicHelp": false,
|
|
2278
|
-
"multiple": false,
|
|
2279
|
-
"type": "option"
|
|
2280
|
-
},
|
|
2281
|
-
"formula": {
|
|
2282
|
-
"description": "New boolean formula (synthetic faces only)",
|
|
2283
|
-
"name": "formula",
|
|
2284
|
-
"hasDynamicHelp": false,
|
|
2285
|
-
"multiple": false,
|
|
2286
|
-
"type": "option"
|
|
2287
|
-
},
|
|
2288
|
-
"attr": {
|
|
2289
|
-
"description": "Update attribute KEY=VALUE (repeatable)",
|
|
2290
|
-
"name": "attr",
|
|
2291
|
-
"hasDynamicHelp": false,
|
|
2292
|
-
"multiple": true,
|
|
2293
|
-
"type": "option"
|
|
2294
|
-
},
|
|
2295
|
-
"tool": {
|
|
2296
|
-
"description": "Tool names to set (replaces list, repeatable)",
|
|
2297
|
-
"name": "tool",
|
|
2298
|
-
"hasDynamicHelp": false,
|
|
2299
|
-
"multiple": true,
|
|
2300
|
-
"type": "option"
|
|
2301
2385
|
}
|
|
2302
2386
|
},
|
|
2303
2387
|
"hasDynamicHelp": false,
|
|
2304
2388
|
"hiddenAliases": [],
|
|
2305
|
-
"id": "face:
|
|
2389
|
+
"id": "face:get",
|
|
2306
2390
|
"pluginAlias": "faces-cli",
|
|
2307
2391
|
"pluginName": "faces-cli",
|
|
2308
2392
|
"pluginType": "core",
|
|
@@ -2313,19 +2397,13 @@
|
|
|
2313
2397
|
"dist",
|
|
2314
2398
|
"commands",
|
|
2315
2399
|
"face",
|
|
2316
|
-
"
|
|
2400
|
+
"get.js"
|
|
2317
2401
|
]
|
|
2318
2402
|
},
|
|
2319
|
-
"face:
|
|
2403
|
+
"face:list": {
|
|
2320
2404
|
"aliases": [],
|
|
2321
|
-
"args": {
|
|
2322
|
-
|
|
2323
|
-
"description": "Face alias",
|
|
2324
|
-
"name": "face_id",
|
|
2325
|
-
"required": true
|
|
2326
|
-
}
|
|
2327
|
-
},
|
|
2328
|
-
"description": "Upload a file (text/PDF/audio/video) to a face",
|
|
2405
|
+
"args": {},
|
|
2406
|
+
"description": "List all owned faces",
|
|
2329
2407
|
"flags": {
|
|
2330
2408
|
"json": {
|
|
2331
2409
|
"description": "Format output as json.",
|
|
@@ -2357,50 +2435,11 @@
|
|
|
2357
2435
|
"hasDynamicHelp": false,
|
|
2358
2436
|
"multiple": false,
|
|
2359
2437
|
"type": "option"
|
|
2360
|
-
},
|
|
2361
|
-
"file": {
|
|
2362
|
-
"description": "File to upload",
|
|
2363
|
-
"name": "file",
|
|
2364
|
-
"required": true,
|
|
2365
|
-
"hasDynamicHelp": false,
|
|
2366
|
-
"multiple": false,
|
|
2367
|
-
"type": "option"
|
|
2368
|
-
},
|
|
2369
|
-
"kind": {
|
|
2370
|
-
"description": "Upload kind: document or thread",
|
|
2371
|
-
"name": "kind",
|
|
2372
|
-
"default": "document",
|
|
2373
|
-
"hasDynamicHelp": false,
|
|
2374
|
-
"multiple": false,
|
|
2375
|
-
"options": [
|
|
2376
|
-
"document",
|
|
2377
|
-
"thread"
|
|
2378
|
-
],
|
|
2379
|
-
"type": "option"
|
|
2380
|
-
},
|
|
2381
|
-
"perspective": {
|
|
2382
|
-
"description": "Perspective (document only)",
|
|
2383
|
-
"name": "perspective",
|
|
2384
|
-
"default": "third-person",
|
|
2385
|
-
"hasDynamicHelp": false,
|
|
2386
|
-
"multiple": false,
|
|
2387
|
-
"options": [
|
|
2388
|
-
"first-person",
|
|
2389
|
-
"third-person"
|
|
2390
|
-
],
|
|
2391
|
-
"type": "option"
|
|
2392
|
-
},
|
|
2393
|
-
"face-speaker": {
|
|
2394
|
-
"description": "Speaker name to map to the face (thread only). If omitted, first speaker is used.",
|
|
2395
|
-
"name": "face-speaker",
|
|
2396
|
-
"hasDynamicHelp": false,
|
|
2397
|
-
"multiple": false,
|
|
2398
|
-
"type": "option"
|
|
2399
2438
|
}
|
|
2400
2439
|
},
|
|
2401
2440
|
"hasDynamicHelp": false,
|
|
2402
2441
|
"hiddenAliases": [],
|
|
2403
|
-
"id": "face:
|
|
2442
|
+
"id": "face:list",
|
|
2404
2443
|
"pluginAlias": "faces-cli",
|
|
2405
2444
|
"pluginName": "faces-cli",
|
|
2406
2445
|
"pluginType": "core",
|
|
@@ -2411,13 +2450,19 @@
|
|
|
2411
2450
|
"dist",
|
|
2412
2451
|
"commands",
|
|
2413
2452
|
"face",
|
|
2414
|
-
"
|
|
2453
|
+
"list.js"
|
|
2415
2454
|
]
|
|
2416
2455
|
},
|
|
2417
|
-
"
|
|
2456
|
+
"face:neighbors": {
|
|
2418
2457
|
"aliases": [],
|
|
2419
|
-
"args": {
|
|
2420
|
-
|
|
2458
|
+
"args": {
|
|
2459
|
+
"face_id": {
|
|
2460
|
+
"description": "Face alias",
|
|
2461
|
+
"name": "face_id",
|
|
2462
|
+
"required": true
|
|
2463
|
+
}
|
|
2464
|
+
},
|
|
2465
|
+
"description": "Find the most similar or dissimilar owned faces to a given face",
|
|
2421
2466
|
"flags": {
|
|
2422
2467
|
"json": {
|
|
2423
2468
|
"description": "Format output as json.",
|
|
@@ -2450,46 +2495,44 @@
|
|
|
2450
2495
|
"multiple": false,
|
|
2451
2496
|
"type": "option"
|
|
2452
2497
|
},
|
|
2453
|
-
"
|
|
2454
|
-
"description": "
|
|
2455
|
-
"name": "
|
|
2456
|
-
"
|
|
2498
|
+
"k": {
|
|
2499
|
+
"description": "Number of results (1–20)",
|
|
2500
|
+
"name": "k",
|
|
2501
|
+
"default": 5,
|
|
2457
2502
|
"hasDynamicHelp": false,
|
|
2458
2503
|
"multiple": false,
|
|
2459
2504
|
"type": "option"
|
|
2460
2505
|
},
|
|
2461
|
-
"
|
|
2462
|
-
"description": "
|
|
2463
|
-
"name": "
|
|
2506
|
+
"component": {
|
|
2507
|
+
"description": "Centroid component to rank on (beta, delta, epsilon are the principal components of a face; face is their composite)",
|
|
2508
|
+
"name": "component",
|
|
2509
|
+
"default": "face",
|
|
2464
2510
|
"hasDynamicHelp": false,
|
|
2465
2511
|
"multiple": false,
|
|
2512
|
+
"options": [
|
|
2513
|
+
"face",
|
|
2514
|
+
"beta",
|
|
2515
|
+
"delta",
|
|
2516
|
+
"epsilon"
|
|
2517
|
+
],
|
|
2466
2518
|
"type": "option"
|
|
2467
2519
|
},
|
|
2468
|
-
"
|
|
2469
|
-
"description": "
|
|
2470
|
-
"name": "
|
|
2520
|
+
"direction": {
|
|
2521
|
+
"description": "nearest (most similar) or furthest (most dissimilar)",
|
|
2522
|
+
"name": "direction",
|
|
2523
|
+
"default": "nearest",
|
|
2471
2524
|
"hasDynamicHelp": false,
|
|
2472
2525
|
"multiple": false,
|
|
2473
|
-
"
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
"name": "face",
|
|
2478
|
-
"hasDynamicHelp": false,
|
|
2479
|
-
"multiple": true,
|
|
2480
|
-
"type": "option"
|
|
2481
|
-
},
|
|
2482
|
-
"model": {
|
|
2483
|
-
"description": "Allowed model name (repeatable)",
|
|
2484
|
-
"name": "model",
|
|
2485
|
-
"hasDynamicHelp": false,
|
|
2486
|
-
"multiple": true,
|
|
2526
|
+
"options": [
|
|
2527
|
+
"nearest",
|
|
2528
|
+
"furthest"
|
|
2529
|
+
],
|
|
2487
2530
|
"type": "option"
|
|
2488
2531
|
}
|
|
2489
2532
|
},
|
|
2490
2533
|
"hasDynamicHelp": false,
|
|
2491
2534
|
"hiddenAliases": [],
|
|
2492
|
-
"id": "
|
|
2535
|
+
"id": "face:neighbors",
|
|
2493
2536
|
"pluginAlias": "faces-cli",
|
|
2494
2537
|
"pluginName": "faces-cli",
|
|
2495
2538
|
"pluginType": "core",
|
|
@@ -2499,14 +2542,14 @@
|
|
|
2499
2542
|
"relativePath": [
|
|
2500
2543
|
"dist",
|
|
2501
2544
|
"commands",
|
|
2502
|
-
"
|
|
2503
|
-
"
|
|
2545
|
+
"face",
|
|
2546
|
+
"neighbors.js"
|
|
2504
2547
|
]
|
|
2505
2548
|
},
|
|
2506
|
-
"
|
|
2549
|
+
"face:stats": {
|
|
2507
2550
|
"aliases": [],
|
|
2508
2551
|
"args": {},
|
|
2509
|
-
"description": "
|
|
2552
|
+
"description": "Compile and chat stats for all owned faces",
|
|
2510
2553
|
"flags": {
|
|
2511
2554
|
"json": {
|
|
2512
2555
|
"description": "Format output as json.",
|
|
@@ -2542,7 +2585,7 @@
|
|
|
2542
2585
|
},
|
|
2543
2586
|
"hasDynamicHelp": false,
|
|
2544
2587
|
"hiddenAliases": [],
|
|
2545
|
-
"id": "
|
|
2588
|
+
"id": "face:stats",
|
|
2546
2589
|
"pluginAlias": "faces-cli",
|
|
2547
2590
|
"pluginName": "faces-cli",
|
|
2548
2591
|
"pluginType": "core",
|
|
@@ -2552,20 +2595,20 @@
|
|
|
2552
2595
|
"relativePath": [
|
|
2553
2596
|
"dist",
|
|
2554
2597
|
"commands",
|
|
2555
|
-
"
|
|
2556
|
-
"
|
|
2598
|
+
"face",
|
|
2599
|
+
"stats.js"
|
|
2557
2600
|
]
|
|
2558
2601
|
},
|
|
2559
|
-
"
|
|
2602
|
+
"face:update": {
|
|
2560
2603
|
"aliases": [],
|
|
2561
2604
|
"args": {
|
|
2562
|
-
"
|
|
2563
|
-
"description": "
|
|
2564
|
-
"name": "
|
|
2605
|
+
"face_id": {
|
|
2606
|
+
"description": "Face alias",
|
|
2607
|
+
"name": "face_id",
|
|
2565
2608
|
"required": true
|
|
2566
2609
|
}
|
|
2567
2610
|
},
|
|
2568
|
-
"description": "
|
|
2611
|
+
"description": "Update a face's metadata",
|
|
2569
2612
|
"flags": {
|
|
2570
2613
|
"json": {
|
|
2571
2614
|
"description": "Format output as json.",
|
|
@@ -2598,16 +2641,52 @@
|
|
|
2598
2641
|
"multiple": false,
|
|
2599
2642
|
"type": "option"
|
|
2600
2643
|
},
|
|
2601
|
-
"
|
|
2602
|
-
"description": "
|
|
2603
|
-
"name": "
|
|
2604
|
-
"
|
|
2605
|
-
"
|
|
2644
|
+
"name": {
|
|
2645
|
+
"description": "New display name",
|
|
2646
|
+
"name": "name",
|
|
2647
|
+
"hasDynamicHelp": false,
|
|
2648
|
+
"multiple": false,
|
|
2649
|
+
"type": "option"
|
|
2650
|
+
},
|
|
2651
|
+
"description": {
|
|
2652
|
+
"description": "Description for local catalog",
|
|
2653
|
+
"name": "description",
|
|
2654
|
+
"hasDynamicHelp": false,
|
|
2655
|
+
"multiple": false,
|
|
2656
|
+
"type": "option"
|
|
2657
|
+
},
|
|
2658
|
+
"default-model": {
|
|
2659
|
+
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
2660
|
+
"name": "default-model",
|
|
2661
|
+
"hasDynamicHelp": false,
|
|
2662
|
+
"multiple": false,
|
|
2663
|
+
"type": "option"
|
|
2664
|
+
},
|
|
2665
|
+
"formula": {
|
|
2666
|
+
"description": "New boolean formula (synthetic faces only)",
|
|
2667
|
+
"name": "formula",
|
|
2668
|
+
"hasDynamicHelp": false,
|
|
2669
|
+
"multiple": false,
|
|
2670
|
+
"type": "option"
|
|
2671
|
+
},
|
|
2672
|
+
"attr": {
|
|
2673
|
+
"description": "Update attribute KEY=VALUE (repeatable)",
|
|
2674
|
+
"name": "attr",
|
|
2675
|
+
"hasDynamicHelp": false,
|
|
2676
|
+
"multiple": true,
|
|
2677
|
+
"type": "option"
|
|
2678
|
+
},
|
|
2679
|
+
"tool": {
|
|
2680
|
+
"description": "Tool names to set (replaces list, repeatable)",
|
|
2681
|
+
"name": "tool",
|
|
2682
|
+
"hasDynamicHelp": false,
|
|
2683
|
+
"multiple": true,
|
|
2684
|
+
"type": "option"
|
|
2606
2685
|
}
|
|
2607
2686
|
},
|
|
2608
2687
|
"hasDynamicHelp": false,
|
|
2609
2688
|
"hiddenAliases": [],
|
|
2610
|
-
"id": "
|
|
2689
|
+
"id": "face:update",
|
|
2611
2690
|
"pluginAlias": "faces-cli",
|
|
2612
2691
|
"pluginName": "faces-cli",
|
|
2613
2692
|
"pluginType": "core",
|
|
@@ -2617,20 +2696,20 @@
|
|
|
2617
2696
|
"relativePath": [
|
|
2618
2697
|
"dist",
|
|
2619
2698
|
"commands",
|
|
2620
|
-
"
|
|
2621
|
-
"
|
|
2699
|
+
"face",
|
|
2700
|
+
"update.js"
|
|
2622
2701
|
]
|
|
2623
2702
|
},
|
|
2624
|
-
"
|
|
2703
|
+
"face:upload": {
|
|
2625
2704
|
"aliases": [],
|
|
2626
2705
|
"args": {
|
|
2627
|
-
"
|
|
2628
|
-
"description": "
|
|
2629
|
-
"name": "
|
|
2706
|
+
"face_id": {
|
|
2707
|
+
"description": "Face alias",
|
|
2708
|
+
"name": "face_id",
|
|
2630
2709
|
"required": true
|
|
2631
2710
|
}
|
|
2632
2711
|
},
|
|
2633
|
-
"description": "
|
|
2712
|
+
"description": "Upload a file (text/PDF/audio/video) to a face",
|
|
2634
2713
|
"flags": {
|
|
2635
2714
|
"json": {
|
|
2636
2715
|
"description": "Format output as json.",
|
|
@@ -2663,30 +2742,49 @@
|
|
|
2663
2742
|
"multiple": false,
|
|
2664
2743
|
"type": "option"
|
|
2665
2744
|
},
|
|
2666
|
-
"
|
|
2667
|
-
"description": "
|
|
2668
|
-
"name": "
|
|
2745
|
+
"file": {
|
|
2746
|
+
"description": "File to upload",
|
|
2747
|
+
"name": "file",
|
|
2748
|
+
"required": true,
|
|
2669
2749
|
"hasDynamicHelp": false,
|
|
2670
2750
|
"multiple": false,
|
|
2671
2751
|
"type": "option"
|
|
2672
2752
|
},
|
|
2673
|
-
"
|
|
2674
|
-
"description": "
|
|
2675
|
-
"name": "
|
|
2753
|
+
"kind": {
|
|
2754
|
+
"description": "Upload kind: document or thread",
|
|
2755
|
+
"name": "kind",
|
|
2756
|
+
"default": "document",
|
|
2676
2757
|
"hasDynamicHelp": false,
|
|
2677
2758
|
"multiple": false,
|
|
2759
|
+
"options": [
|
|
2760
|
+
"document",
|
|
2761
|
+
"thread"
|
|
2762
|
+
],
|
|
2678
2763
|
"type": "option"
|
|
2679
2764
|
},
|
|
2680
|
-
"
|
|
2681
|
-
"description": "
|
|
2682
|
-
"name": "
|
|
2683
|
-
"
|
|
2684
|
-
"
|
|
2765
|
+
"perspective": {
|
|
2766
|
+
"description": "Perspective (document only)",
|
|
2767
|
+
"name": "perspective",
|
|
2768
|
+
"default": "third-person",
|
|
2769
|
+
"hasDynamicHelp": false,
|
|
2770
|
+
"multiple": false,
|
|
2771
|
+
"options": [
|
|
2772
|
+
"first-person",
|
|
2773
|
+
"third-person"
|
|
2774
|
+
],
|
|
2775
|
+
"type": "option"
|
|
2776
|
+
},
|
|
2777
|
+
"face-speaker": {
|
|
2778
|
+
"description": "Speaker name to map to the face (thread only). If omitted, first speaker is used.",
|
|
2779
|
+
"name": "face-speaker",
|
|
2780
|
+
"hasDynamicHelp": false,
|
|
2781
|
+
"multiple": false,
|
|
2782
|
+
"type": "option"
|
|
2685
2783
|
}
|
|
2686
2784
|
},
|
|
2687
2785
|
"hasDynamicHelp": false,
|
|
2688
2786
|
"hiddenAliases": [],
|
|
2689
|
-
"id": "
|
|
2787
|
+
"id": "face:upload",
|
|
2690
2788
|
"pluginAlias": "faces-cli",
|
|
2691
2789
|
"pluginName": "faces-cli",
|
|
2692
2790
|
"pluginType": "core",
|
|
@@ -2696,8 +2794,8 @@
|
|
|
2696
2794
|
"relativePath": [
|
|
2697
2795
|
"dist",
|
|
2698
2796
|
"commands",
|
|
2699
|
-
"
|
|
2700
|
-
"
|
|
2797
|
+
"face",
|
|
2798
|
+
"upload.js"
|
|
2701
2799
|
]
|
|
2702
2800
|
},
|
|
2703
2801
|
"compile:doc:create": {
|
|
@@ -3753,5 +3851,5 @@
|
|
|
3753
3851
|
]
|
|
3754
3852
|
}
|
|
3755
3853
|
},
|
|
3756
|
-
"version": "1.
|
|
3854
|
+
"version": "1.5.0"
|
|
3757
3855
|
}
|