faces-cli 1.5.9 → 1.5.11
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/auth/whoami.js +69 -52
- package/dist/config.js +14 -10
- package/oclif.manifest.json +670 -670
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -53,10 +53,23 @@
|
|
|
53
53
|
"state.js"
|
|
54
54
|
]
|
|
55
55
|
},
|
|
56
|
-
"
|
|
56
|
+
"auth:connect": {
|
|
57
57
|
"aliases": [],
|
|
58
|
-
"args": {
|
|
59
|
-
|
|
58
|
+
"args": {
|
|
59
|
+
"provider": {
|
|
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
|
+
],
|
|
60
73
|
"flags": {
|
|
61
74
|
"json": {
|
|
62
75
|
"description": "Format output as json.",
|
|
@@ -88,11 +101,17 @@
|
|
|
88
101
|
"hasDynamicHelp": false,
|
|
89
102
|
"multiple": false,
|
|
90
103
|
"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"
|
|
91
110
|
}
|
|
92
111
|
},
|
|
93
112
|
"hasDynamicHelp": false,
|
|
94
113
|
"hiddenAliases": [],
|
|
95
|
-
"id": "
|
|
114
|
+
"id": "auth:connect",
|
|
96
115
|
"pluginAlias": "faces-cli",
|
|
97
116
|
"pluginName": "faces-cli",
|
|
98
117
|
"pluginType": "core",
|
|
@@ -102,14 +121,18 @@
|
|
|
102
121
|
"relativePath": [
|
|
103
122
|
"dist",
|
|
104
123
|
"commands",
|
|
105
|
-
"
|
|
106
|
-
"
|
|
124
|
+
"auth",
|
|
125
|
+
"connect.js"
|
|
107
126
|
]
|
|
108
127
|
},
|
|
109
|
-
"
|
|
128
|
+
"auth:connections": {
|
|
110
129
|
"aliases": [],
|
|
111
130
|
"args": {},
|
|
112
|
-
"description": "
|
|
131
|
+
"description": "List connected OAuth provider accounts",
|
|
132
|
+
"examples": [
|
|
133
|
+
"<%= config.bin %> auth connections",
|
|
134
|
+
"<%= config.bin %> auth connections --json"
|
|
135
|
+
],
|
|
113
136
|
"flags": {
|
|
114
137
|
"json": {
|
|
115
138
|
"description": "Format output as json.",
|
|
@@ -145,7 +168,7 @@
|
|
|
145
168
|
},
|
|
146
169
|
"hasDynamicHelp": false,
|
|
147
170
|
"hiddenAliases": [],
|
|
148
|
-
"id": "
|
|
171
|
+
"id": "auth:connections",
|
|
149
172
|
"pluginAlias": "faces-cli",
|
|
150
173
|
"pluginName": "faces-cli",
|
|
151
174
|
"pluginType": "core",
|
|
@@ -155,14 +178,26 @@
|
|
|
155
178
|
"relativePath": [
|
|
156
179
|
"dist",
|
|
157
180
|
"commands",
|
|
158
|
-
"
|
|
159
|
-
"
|
|
181
|
+
"auth",
|
|
182
|
+
"connections.js"
|
|
160
183
|
]
|
|
161
184
|
},
|
|
162
|
-
"
|
|
185
|
+
"auth:disconnect": {
|
|
163
186
|
"aliases": [],
|
|
164
|
-
"args": {
|
|
165
|
-
|
|
187
|
+
"args": {
|
|
188
|
+
"provider": {
|
|
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
|
+
],
|
|
166
201
|
"flags": {
|
|
167
202
|
"json": {
|
|
168
203
|
"description": "Format output as json.",
|
|
@@ -194,22 +229,11 @@
|
|
|
194
229
|
"hasDynamicHelp": false,
|
|
195
230
|
"multiple": false,
|
|
196
231
|
"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"
|
|
208
232
|
}
|
|
209
233
|
},
|
|
210
234
|
"hasDynamicHelp": false,
|
|
211
235
|
"hiddenAliases": [],
|
|
212
|
-
"id": "
|
|
236
|
+
"id": "auth:disconnect",
|
|
213
237
|
"pluginAlias": "faces-cli",
|
|
214
238
|
"pluginName": "faces-cli",
|
|
215
239
|
"pluginType": "core",
|
|
@@ -219,14 +243,14 @@
|
|
|
219
243
|
"relativePath": [
|
|
220
244
|
"dist",
|
|
221
245
|
"commands",
|
|
222
|
-
"
|
|
223
|
-
"
|
|
246
|
+
"auth",
|
|
247
|
+
"disconnect.js"
|
|
224
248
|
]
|
|
225
249
|
},
|
|
226
|
-
"
|
|
250
|
+
"auth:login": {
|
|
227
251
|
"aliases": [],
|
|
228
252
|
"args": {},
|
|
229
|
-
"description": "
|
|
253
|
+
"description": "Login and save JWT credentials",
|
|
230
254
|
"flags": {
|
|
231
255
|
"json": {
|
|
232
256
|
"description": "Format output as json.",
|
|
@@ -259,9 +283,18 @@
|
|
|
259
283
|
"multiple": false,
|
|
260
284
|
"type": "option"
|
|
261
285
|
},
|
|
262
|
-
"
|
|
263
|
-
"description": "
|
|
264
|
-
"name": "
|
|
286
|
+
"email": {
|
|
287
|
+
"description": "Account email",
|
|
288
|
+
"name": "email",
|
|
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,
|
|
265
298
|
"hasDynamicHelp": false,
|
|
266
299
|
"multiple": false,
|
|
267
300
|
"type": "option"
|
|
@@ -269,7 +302,7 @@
|
|
|
269
302
|
},
|
|
270
303
|
"hasDynamicHelp": false,
|
|
271
304
|
"hiddenAliases": [],
|
|
272
|
-
"id": "
|
|
305
|
+
"id": "auth:login",
|
|
273
306
|
"pluginAlias": "faces-cli",
|
|
274
307
|
"pluginName": "faces-cli",
|
|
275
308
|
"pluginType": "core",
|
|
@@ -279,14 +312,14 @@
|
|
|
279
312
|
"relativePath": [
|
|
280
313
|
"dist",
|
|
281
314
|
"commands",
|
|
282
|
-
"
|
|
283
|
-
"
|
|
315
|
+
"auth",
|
|
316
|
+
"login.js"
|
|
284
317
|
]
|
|
285
318
|
},
|
|
286
|
-
"
|
|
319
|
+
"auth:logout": {
|
|
287
320
|
"aliases": [],
|
|
288
321
|
"args": {},
|
|
289
|
-
"description": "
|
|
322
|
+
"description": "Clear saved credentials",
|
|
290
323
|
"flags": {
|
|
291
324
|
"json": {
|
|
292
325
|
"description": "Format output as json.",
|
|
@@ -322,7 +355,7 @@
|
|
|
322
355
|
},
|
|
323
356
|
"hasDynamicHelp": false,
|
|
324
357
|
"hiddenAliases": [],
|
|
325
|
-
"id": "
|
|
358
|
+
"id": "auth:logout",
|
|
326
359
|
"pluginAlias": "faces-cli",
|
|
327
360
|
"pluginName": "faces-cli",
|
|
328
361
|
"pluginType": "core",
|
|
@@ -332,14 +365,14 @@
|
|
|
332
365
|
"relativePath": [
|
|
333
366
|
"dist",
|
|
334
367
|
"commands",
|
|
335
|
-
"
|
|
336
|
-
"
|
|
368
|
+
"auth",
|
|
369
|
+
"logout.js"
|
|
337
370
|
]
|
|
338
371
|
},
|
|
339
|
-
"
|
|
372
|
+
"auth:refresh": {
|
|
340
373
|
"aliases": [],
|
|
341
374
|
"args": {},
|
|
342
|
-
"description": "
|
|
375
|
+
"description": "Exchange current JWT for a fresh one",
|
|
343
376
|
"flags": {
|
|
344
377
|
"json": {
|
|
345
378
|
"description": "Format output as json.",
|
|
@@ -375,7 +408,7 @@
|
|
|
375
408
|
},
|
|
376
409
|
"hasDynamicHelp": false,
|
|
377
410
|
"hiddenAliases": [],
|
|
378
|
-
"id": "
|
|
411
|
+
"id": "auth:refresh",
|
|
379
412
|
"pluginAlias": "faces-cli",
|
|
380
413
|
"pluginName": "faces-cli",
|
|
381
414
|
"pluginType": "core",
|
|
@@ -385,14 +418,14 @@
|
|
|
385
418
|
"relativePath": [
|
|
386
419
|
"dist",
|
|
387
420
|
"commands",
|
|
388
|
-
"
|
|
389
|
-
"
|
|
421
|
+
"auth",
|
|
422
|
+
"refresh.js"
|
|
390
423
|
]
|
|
391
424
|
},
|
|
392
|
-
"
|
|
425
|
+
"auth:register": {
|
|
393
426
|
"aliases": [],
|
|
394
427
|
"args": {},
|
|
395
|
-
"description": "
|
|
428
|
+
"description": "Create a new Faces account",
|
|
396
429
|
"flags": {
|
|
397
430
|
"json": {
|
|
398
431
|
"description": "Format output as json.",
|
|
@@ -425,25 +458,60 @@
|
|
|
425
458
|
"multiple": false,
|
|
426
459
|
"type": "option"
|
|
427
460
|
},
|
|
428
|
-
"
|
|
429
|
-
"description": "
|
|
430
|
-
"name": "
|
|
461
|
+
"email": {
|
|
462
|
+
"description": "Email address",
|
|
463
|
+
"name": "email",
|
|
431
464
|
"required": true,
|
|
432
465
|
"hasDynamicHelp": false,
|
|
433
466
|
"multiple": false,
|
|
434
467
|
"type": "option"
|
|
435
468
|
},
|
|
436
|
-
"
|
|
437
|
-
"description": "
|
|
438
|
-
"name": "
|
|
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",
|
|
487
|
+
"required": true,
|
|
488
|
+
"hasDynamicHelp": false,
|
|
489
|
+
"multiple": false,
|
|
490
|
+
"type": "option"
|
|
491
|
+
},
|
|
492
|
+
"invite-key": {
|
|
493
|
+
"description": "Invite key (if required)",
|
|
494
|
+
"name": "invite-key",
|
|
495
|
+
"hasDynamicHelp": false,
|
|
496
|
+
"multiple": false,
|
|
497
|
+
"type": "option"
|
|
498
|
+
},
|
|
499
|
+
"plan": {
|
|
500
|
+
"description": "Plan to subscribe to: \"free\" ($5 activation) or \"connect\" ($17/mo, no activation fee)",
|
|
501
|
+
"name": "plan",
|
|
502
|
+
"default": "free",
|
|
439
503
|
"hasDynamicHelp": false,
|
|
440
504
|
"multiple": false,
|
|
505
|
+
"options": [
|
|
506
|
+
"free",
|
|
507
|
+
"connect"
|
|
508
|
+
],
|
|
441
509
|
"type": "option"
|
|
442
510
|
}
|
|
443
511
|
},
|
|
444
512
|
"hasDynamicHelp": false,
|
|
445
513
|
"hiddenAliases": [],
|
|
446
|
-
"id": "
|
|
514
|
+
"id": "auth:register",
|
|
447
515
|
"pluginAlias": "faces-cli",
|
|
448
516
|
"pluginName": "faces-cli",
|
|
449
517
|
"pluginType": "core",
|
|
@@ -453,14 +521,14 @@
|
|
|
453
521
|
"relativePath": [
|
|
454
522
|
"dist",
|
|
455
523
|
"commands",
|
|
456
|
-
"
|
|
457
|
-
"
|
|
524
|
+
"auth",
|
|
525
|
+
"register.js"
|
|
458
526
|
]
|
|
459
527
|
},
|
|
460
|
-
"
|
|
528
|
+
"auth:whoami": {
|
|
461
529
|
"aliases": [],
|
|
462
530
|
"args": {},
|
|
463
|
-
"description": "
|
|
531
|
+
"description": "Print current user profile and auth diagnostic",
|
|
464
532
|
"flags": {
|
|
465
533
|
"json": {
|
|
466
534
|
"description": "Format output as json.",
|
|
@@ -492,38 +560,11 @@
|
|
|
492
560
|
"hasDynamicHelp": false,
|
|
493
561
|
"multiple": false,
|
|
494
562
|
"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"
|
|
522
563
|
}
|
|
523
564
|
},
|
|
524
565
|
"hasDynamicHelp": false,
|
|
525
566
|
"hiddenAliases": [],
|
|
526
|
-
"id": "
|
|
567
|
+
"id": "auth:whoami",
|
|
527
568
|
"pluginAlias": "faces-cli",
|
|
528
569
|
"pluginName": "faces-cli",
|
|
529
570
|
"pluginType": "core",
|
|
@@ -533,27 +574,14 @@
|
|
|
533
574
|
"relativePath": [
|
|
534
575
|
"dist",
|
|
535
576
|
"commands",
|
|
536
|
-
"
|
|
537
|
-
"
|
|
577
|
+
"auth",
|
|
578
|
+
"whoami.js"
|
|
538
579
|
]
|
|
539
580
|
},
|
|
540
|
-
"
|
|
581
|
+
"billing:balance": {
|
|
541
582
|
"aliases": [],
|
|
542
|
-
"args": {
|
|
543
|
-
|
|
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
|
-
],
|
|
583
|
+
"args": {},
|
|
584
|
+
"description": "Show credit balance and payment method status",
|
|
557
585
|
"flags": {
|
|
558
586
|
"json": {
|
|
559
587
|
"description": "Format output as json.",
|
|
@@ -585,17 +613,11 @@
|
|
|
585
613
|
"hasDynamicHelp": false,
|
|
586
614
|
"multiple": false,
|
|
587
615
|
"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"
|
|
594
616
|
}
|
|
595
617
|
},
|
|
596
618
|
"hasDynamicHelp": false,
|
|
597
619
|
"hiddenAliases": [],
|
|
598
|
-
"id": "
|
|
620
|
+
"id": "billing:balance",
|
|
599
621
|
"pluginAlias": "faces-cli",
|
|
600
622
|
"pluginName": "faces-cli",
|
|
601
623
|
"pluginType": "core",
|
|
@@ -605,18 +627,14 @@
|
|
|
605
627
|
"relativePath": [
|
|
606
628
|
"dist",
|
|
607
629
|
"commands",
|
|
608
|
-
"
|
|
609
|
-
"
|
|
630
|
+
"billing",
|
|
631
|
+
"balance.js"
|
|
610
632
|
]
|
|
611
633
|
},
|
|
612
|
-
"
|
|
634
|
+
"billing:card-setup": {
|
|
613
635
|
"aliases": [],
|
|
614
636
|
"args": {},
|
|
615
|
-
"description": "
|
|
616
|
-
"examples": [
|
|
617
|
-
"<%= config.bin %> auth connections",
|
|
618
|
-
"<%= config.bin %> auth connections --json"
|
|
619
|
-
],
|
|
637
|
+
"description": "Get a Stripe card setup URL to save a payment method",
|
|
620
638
|
"flags": {
|
|
621
639
|
"json": {
|
|
622
640
|
"description": "Format output as json.",
|
|
@@ -652,7 +670,7 @@
|
|
|
652
670
|
},
|
|
653
671
|
"hasDynamicHelp": false,
|
|
654
672
|
"hiddenAliases": [],
|
|
655
|
-
"id": "
|
|
673
|
+
"id": "billing:card-setup",
|
|
656
674
|
"pluginAlias": "faces-cli",
|
|
657
675
|
"pluginName": "faces-cli",
|
|
658
676
|
"pluginType": "core",
|
|
@@ -662,26 +680,14 @@
|
|
|
662
680
|
"relativePath": [
|
|
663
681
|
"dist",
|
|
664
682
|
"commands",
|
|
665
|
-
"
|
|
666
|
-
"
|
|
683
|
+
"billing",
|
|
684
|
+
"card-setup.js"
|
|
667
685
|
]
|
|
668
686
|
},
|
|
669
|
-
"
|
|
687
|
+
"billing:checkout": {
|
|
670
688
|
"aliases": [],
|
|
671
|
-
"args": {
|
|
672
|
-
|
|
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
|
-
],
|
|
689
|
+
"args": {},
|
|
690
|
+
"description": "Get a Stripe checkout URL to upgrade your subscription plan",
|
|
685
691
|
"flags": {
|
|
686
692
|
"json": {
|
|
687
693
|
"description": "Format output as json.",
|
|
@@ -713,11 +719,22 @@
|
|
|
713
719
|
"hasDynamicHelp": false,
|
|
714
720
|
"multiple": false,
|
|
715
721
|
"type": "option"
|
|
722
|
+
},
|
|
723
|
+
"plan": {
|
|
724
|
+
"description": "Plan to subscribe to",
|
|
725
|
+
"name": "plan",
|
|
726
|
+
"default": "connect",
|
|
727
|
+
"hasDynamicHelp": false,
|
|
728
|
+
"multiple": false,
|
|
729
|
+
"options": [
|
|
730
|
+
"connect"
|
|
731
|
+
],
|
|
732
|
+
"type": "option"
|
|
716
733
|
}
|
|
717
734
|
},
|
|
718
735
|
"hasDynamicHelp": false,
|
|
719
736
|
"hiddenAliases": [],
|
|
720
|
-
"id": "
|
|
737
|
+
"id": "billing:checkout",
|
|
721
738
|
"pluginAlias": "faces-cli",
|
|
722
739
|
"pluginName": "faces-cli",
|
|
723
740
|
"pluginType": "core",
|
|
@@ -727,14 +744,14 @@
|
|
|
727
744
|
"relativePath": [
|
|
728
745
|
"dist",
|
|
729
746
|
"commands",
|
|
730
|
-
"
|
|
731
|
-
"
|
|
747
|
+
"billing",
|
|
748
|
+
"checkout.js"
|
|
732
749
|
]
|
|
733
750
|
},
|
|
734
|
-
"
|
|
751
|
+
"billing:llm-costs": {
|
|
735
752
|
"aliases": [],
|
|
736
753
|
"args": {},
|
|
737
|
-
"description": "
|
|
754
|
+
"description": "List available LLMs and their per-token costs",
|
|
738
755
|
"flags": {
|
|
739
756
|
"json": {
|
|
740
757
|
"description": "Format output as json.",
|
|
@@ -767,18 +784,9 @@
|
|
|
767
784
|
"multiple": false,
|
|
768
785
|
"type": "option"
|
|
769
786
|
},
|
|
770
|
-
"
|
|
771
|
-
"description": "
|
|
772
|
-
"name": "
|
|
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,
|
|
787
|
+
"provider": {
|
|
788
|
+
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
789
|
+
"name": "provider",
|
|
782
790
|
"hasDynamicHelp": false,
|
|
783
791
|
"multiple": false,
|
|
784
792
|
"type": "option"
|
|
@@ -786,7 +794,7 @@
|
|
|
786
794
|
},
|
|
787
795
|
"hasDynamicHelp": false,
|
|
788
796
|
"hiddenAliases": [],
|
|
789
|
-
"id": "
|
|
797
|
+
"id": "billing:llm-costs",
|
|
790
798
|
"pluginAlias": "faces-cli",
|
|
791
799
|
"pluginName": "faces-cli",
|
|
792
800
|
"pluginType": "core",
|
|
@@ -796,14 +804,14 @@
|
|
|
796
804
|
"relativePath": [
|
|
797
805
|
"dist",
|
|
798
806
|
"commands",
|
|
799
|
-
"
|
|
800
|
-
"
|
|
807
|
+
"billing",
|
|
808
|
+
"llm-costs.js"
|
|
801
809
|
]
|
|
802
810
|
},
|
|
803
|
-
"
|
|
811
|
+
"billing:quota": {
|
|
804
812
|
"aliases": [],
|
|
805
813
|
"args": {},
|
|
806
|
-
"description": "
|
|
814
|
+
"description": "Show compile token quota and per-face stats",
|
|
807
815
|
"flags": {
|
|
808
816
|
"json": {
|
|
809
817
|
"description": "Format output as json.",
|
|
@@ -839,7 +847,7 @@
|
|
|
839
847
|
},
|
|
840
848
|
"hasDynamicHelp": false,
|
|
841
849
|
"hiddenAliases": [],
|
|
842
|
-
"id": "
|
|
850
|
+
"id": "billing:quota",
|
|
843
851
|
"pluginAlias": "faces-cli",
|
|
844
852
|
"pluginName": "faces-cli",
|
|
845
853
|
"pluginType": "core",
|
|
@@ -849,14 +857,14 @@
|
|
|
849
857
|
"relativePath": [
|
|
850
858
|
"dist",
|
|
851
859
|
"commands",
|
|
852
|
-
"
|
|
853
|
-
"
|
|
860
|
+
"billing",
|
|
861
|
+
"quota.js"
|
|
854
862
|
]
|
|
855
863
|
},
|
|
856
|
-
"
|
|
864
|
+
"billing:subscription": {
|
|
857
865
|
"aliases": [],
|
|
858
866
|
"args": {},
|
|
859
|
-
"description": "
|
|
867
|
+
"description": "Show current plan, face count, and renewal date",
|
|
860
868
|
"flags": {
|
|
861
869
|
"json": {
|
|
862
870
|
"description": "Format output as json.",
|
|
@@ -892,7 +900,7 @@
|
|
|
892
900
|
},
|
|
893
901
|
"hasDynamicHelp": false,
|
|
894
902
|
"hiddenAliases": [],
|
|
895
|
-
"id": "
|
|
903
|
+
"id": "billing:subscription",
|
|
896
904
|
"pluginAlias": "faces-cli",
|
|
897
905
|
"pluginName": "faces-cli",
|
|
898
906
|
"pluginType": "core",
|
|
@@ -902,14 +910,14 @@
|
|
|
902
910
|
"relativePath": [
|
|
903
911
|
"dist",
|
|
904
912
|
"commands",
|
|
905
|
-
"
|
|
906
|
-
"
|
|
913
|
+
"billing",
|
|
914
|
+
"subscription.js"
|
|
907
915
|
]
|
|
908
916
|
},
|
|
909
|
-
"
|
|
917
|
+
"billing:topup": {
|
|
910
918
|
"aliases": [],
|
|
911
919
|
"args": {},
|
|
912
|
-
"description": "
|
|
920
|
+
"description": "Top up credit balance using saved payment method",
|
|
913
921
|
"flags": {
|
|
914
922
|
"json": {
|
|
915
923
|
"description": "Format output as json.",
|
|
@@ -942,60 +950,25 @@
|
|
|
942
950
|
"multiple": false,
|
|
943
951
|
"type": "option"
|
|
944
952
|
},
|
|
945
|
-
"
|
|
946
|
-
"description": "
|
|
947
|
-
"name": "
|
|
948
|
-
"required": true,
|
|
949
|
-
"hasDynamicHelp": false,
|
|
950
|
-
"multiple": false,
|
|
951
|
-
"type": "option"
|
|
952
|
-
},
|
|
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",
|
|
953
|
+
"amount": {
|
|
954
|
+
"description": "Top-up amount in USD (min $1)",
|
|
955
|
+
"name": "amount",
|
|
971
956
|
"required": true,
|
|
972
957
|
"hasDynamicHelp": false,
|
|
973
958
|
"multiple": false,
|
|
974
959
|
"type": "option"
|
|
975
960
|
},
|
|
976
|
-
"
|
|
977
|
-
"description": "
|
|
978
|
-
"name": "
|
|
979
|
-
"hasDynamicHelp": false,
|
|
980
|
-
"multiple": false,
|
|
981
|
-
"type": "option"
|
|
982
|
-
},
|
|
983
|
-
"plan": {
|
|
984
|
-
"description": "Plan to subscribe to: \"free\" ($5 activation) or \"connect\" ($17/mo, no activation fee)",
|
|
985
|
-
"name": "plan",
|
|
986
|
-
"default": "free",
|
|
961
|
+
"payment-ref": {
|
|
962
|
+
"description": "Payment reference (admin/test path)",
|
|
963
|
+
"name": "payment-ref",
|
|
987
964
|
"hasDynamicHelp": false,
|
|
988
965
|
"multiple": false,
|
|
989
|
-
"options": [
|
|
990
|
-
"free",
|
|
991
|
-
"connect"
|
|
992
|
-
],
|
|
993
966
|
"type": "option"
|
|
994
967
|
}
|
|
995
968
|
},
|
|
996
969
|
"hasDynamicHelp": false,
|
|
997
970
|
"hiddenAliases": [],
|
|
998
|
-
"id": "
|
|
971
|
+
"id": "billing:topup",
|
|
999
972
|
"pluginAlias": "faces-cli",
|
|
1000
973
|
"pluginName": "faces-cli",
|
|
1001
974
|
"pluginType": "core",
|
|
@@ -1005,14 +978,14 @@
|
|
|
1005
978
|
"relativePath": [
|
|
1006
979
|
"dist",
|
|
1007
980
|
"commands",
|
|
1008
|
-
"
|
|
1009
|
-
"
|
|
981
|
+
"billing",
|
|
982
|
+
"topup.js"
|
|
1010
983
|
]
|
|
1011
984
|
},
|
|
1012
|
-
"
|
|
985
|
+
"billing:usage": {
|
|
1013
986
|
"aliases": [],
|
|
1014
987
|
"args": {},
|
|
1015
|
-
"description": "
|
|
988
|
+
"description": "Aggregated usage analytics",
|
|
1016
989
|
"flags": {
|
|
1017
990
|
"json": {
|
|
1018
991
|
"description": "Format output as json.",
|
|
@@ -1044,11 +1017,38 @@
|
|
|
1044
1017
|
"hasDynamicHelp": false,
|
|
1045
1018
|
"multiple": false,
|
|
1046
1019
|
"type": "option"
|
|
1020
|
+
},
|
|
1021
|
+
"group-by": {
|
|
1022
|
+
"description": "Group results",
|
|
1023
|
+
"name": "group-by",
|
|
1024
|
+
"hasDynamicHelp": false,
|
|
1025
|
+
"multiple": false,
|
|
1026
|
+
"options": [
|
|
1027
|
+
"api_key",
|
|
1028
|
+
"model",
|
|
1029
|
+
"llm",
|
|
1030
|
+
"date"
|
|
1031
|
+
],
|
|
1032
|
+
"type": "option"
|
|
1033
|
+
},
|
|
1034
|
+
"from": {
|
|
1035
|
+
"description": "Start date (YYYY-MM-DD)",
|
|
1036
|
+
"name": "from",
|
|
1037
|
+
"hasDynamicHelp": false,
|
|
1038
|
+
"multiple": false,
|
|
1039
|
+
"type": "option"
|
|
1040
|
+
},
|
|
1041
|
+
"to": {
|
|
1042
|
+
"description": "End date (YYYY-MM-DD)",
|
|
1043
|
+
"name": "to",
|
|
1044
|
+
"hasDynamicHelp": false,
|
|
1045
|
+
"multiple": false,
|
|
1046
|
+
"type": "option"
|
|
1047
1047
|
}
|
|
1048
1048
|
},
|
|
1049
1049
|
"hasDynamicHelp": false,
|
|
1050
1050
|
"hiddenAliases": [],
|
|
1051
|
-
"id": "
|
|
1051
|
+
"id": "billing:usage",
|
|
1052
1052
|
"pluginAlias": "faces-cli",
|
|
1053
1053
|
"pluginName": "faces-cli",
|
|
1054
1054
|
"pluginType": "core",
|
|
@@ -1058,20 +1058,14 @@
|
|
|
1058
1058
|
"relativePath": [
|
|
1059
1059
|
"dist",
|
|
1060
1060
|
"commands",
|
|
1061
|
-
"
|
|
1062
|
-
"
|
|
1061
|
+
"billing",
|
|
1062
|
+
"usage.js"
|
|
1063
1063
|
]
|
|
1064
1064
|
},
|
|
1065
|
-
"
|
|
1065
|
+
"catalog:doctor": {
|
|
1066
1066
|
"aliases": [],
|
|
1067
|
-
"args": {
|
|
1068
|
-
|
|
1069
|
-
"description": "Face alias (or alias@model)",
|
|
1070
|
-
"name": "face_username",
|
|
1071
|
-
"required": true
|
|
1072
|
-
}
|
|
1073
|
-
},
|
|
1074
|
-
"description": "Chat via a face. Auto-routes to the correct API endpoint based on model provider.",
|
|
1067
|
+
"args": {},
|
|
1068
|
+
"description": "Diagnose and repair the local face catalog",
|
|
1075
1069
|
"flags": {
|
|
1076
1070
|
"json": {
|
|
1077
1071
|
"description": "Format output as json.",
|
|
@@ -1104,66 +1098,22 @@
|
|
|
1104
1098
|
"multiple": false,
|
|
1105
1099
|
"type": "option"
|
|
1106
1100
|
},
|
|
1107
|
-
"
|
|
1108
|
-
"
|
|
1109
|
-
"
|
|
1110
|
-
"name": "message",
|
|
1111
|
-
"required": false,
|
|
1112
|
-
"hasDynamicHelp": false,
|
|
1113
|
-
"multiple": true,
|
|
1114
|
-
"type": "option"
|
|
1115
|
-
},
|
|
1116
|
-
"llm": {
|
|
1117
|
-
"description": "LLM override (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
1118
|
-
"name": "llm",
|
|
1119
|
-
"hasDynamicHelp": false,
|
|
1120
|
-
"multiple": false,
|
|
1121
|
-
"type": "option"
|
|
1122
|
-
},
|
|
1123
|
-
"system": {
|
|
1124
|
-
"description": "System prompt / instructions",
|
|
1125
|
-
"name": "system",
|
|
1126
|
-
"hasDynamicHelp": false,
|
|
1127
|
-
"multiple": false,
|
|
1128
|
-
"type": "option"
|
|
1129
|
-
},
|
|
1130
|
-
"stream": {
|
|
1131
|
-
"description": "Stream the response",
|
|
1132
|
-
"name": "stream",
|
|
1101
|
+
"fix": {
|
|
1102
|
+
"description": "Rebuild missing or stale catalog entries from API",
|
|
1103
|
+
"name": "fix",
|
|
1133
1104
|
"allowNo": false,
|
|
1134
1105
|
"type": "boolean"
|
|
1135
1106
|
},
|
|
1136
|
-
"
|
|
1137
|
-
"description": "
|
|
1138
|
-
"name": "
|
|
1139
|
-
"hasDynamicHelp": false,
|
|
1140
|
-
"multiple": false,
|
|
1141
|
-
"type": "option"
|
|
1142
|
-
},
|
|
1143
|
-
"temperature": {
|
|
1144
|
-
"description": "Temperature (0.0-2.0)",
|
|
1145
|
-
"name": "temperature",
|
|
1146
|
-
"hasDynamicHelp": false,
|
|
1147
|
-
"multiple": false,
|
|
1148
|
-
"type": "option"
|
|
1149
|
-
},
|
|
1150
|
-
"file": {
|
|
1151
|
-
"description": "Read message from file",
|
|
1152
|
-
"name": "file",
|
|
1153
|
-
"hasDynamicHelp": false,
|
|
1154
|
-
"multiple": false,
|
|
1155
|
-
"type": "option"
|
|
1156
|
-
},
|
|
1157
|
-
"responses": {
|
|
1158
|
-
"description": "Use OpenAI Responses API instead of Chat Completions",
|
|
1159
|
-
"name": "responses",
|
|
1107
|
+
"generate": {
|
|
1108
|
+
"description": "Fix + generate missing descriptions via LLM",
|
|
1109
|
+
"name": "generate",
|
|
1160
1110
|
"allowNo": false,
|
|
1161
1111
|
"type": "boolean"
|
|
1162
1112
|
}
|
|
1163
1113
|
},
|
|
1164
1114
|
"hasDynamicHelp": false,
|
|
1165
1115
|
"hiddenAliases": [],
|
|
1166
|
-
"id": "
|
|
1116
|
+
"id": "catalog:doctor",
|
|
1167
1117
|
"pluginAlias": "faces-cli",
|
|
1168
1118
|
"pluginName": "faces-cli",
|
|
1169
1119
|
"pluginType": "core",
|
|
@@ -1173,20 +1123,14 @@
|
|
|
1173
1123
|
"relativePath": [
|
|
1174
1124
|
"dist",
|
|
1175
1125
|
"commands",
|
|
1176
|
-
"
|
|
1177
|
-
"
|
|
1126
|
+
"catalog",
|
|
1127
|
+
"doctor.js"
|
|
1178
1128
|
]
|
|
1179
1129
|
},
|
|
1180
|
-
"
|
|
1130
|
+
"catalog:list": {
|
|
1181
1131
|
"aliases": [],
|
|
1182
|
-
"args": {
|
|
1183
|
-
|
|
1184
|
-
"description": "Face model (e.g. myface or myface@claude-sonnet-4-6)",
|
|
1185
|
-
"name": "face_model",
|
|
1186
|
-
"required": true
|
|
1187
|
-
}
|
|
1188
|
-
},
|
|
1189
|
-
"description": "Anthropic Messages API proxy via a face (alias: chat:chat auto-routes Anthropic models here)",
|
|
1132
|
+
"args": {},
|
|
1133
|
+
"description": "List all faces in the local catalog",
|
|
1190
1134
|
"flags": {
|
|
1191
1135
|
"json": {
|
|
1192
1136
|
"description": "Format output as json.",
|
|
@@ -1218,41 +1162,11 @@
|
|
|
1218
1162
|
"hasDynamicHelp": false,
|
|
1219
1163
|
"multiple": false,
|
|
1220
1164
|
"type": "option"
|
|
1221
|
-
},
|
|
1222
|
-
"message": {
|
|
1223
|
-
"char": "m",
|
|
1224
|
-
"description": "User message (repeatable)",
|
|
1225
|
-
"name": "message",
|
|
1226
|
-
"required": true,
|
|
1227
|
-
"hasDynamicHelp": false,
|
|
1228
|
-
"multiple": true,
|
|
1229
|
-
"type": "option"
|
|
1230
|
-
},
|
|
1231
|
-
"system": {
|
|
1232
|
-
"description": "System prompt",
|
|
1233
|
-
"name": "system",
|
|
1234
|
-
"hasDynamicHelp": false,
|
|
1235
|
-
"multiple": false,
|
|
1236
|
-
"type": "option"
|
|
1237
|
-
},
|
|
1238
|
-
"stream": {
|
|
1239
|
-
"description": "Stream the response",
|
|
1240
|
-
"name": "stream",
|
|
1241
|
-
"allowNo": false,
|
|
1242
|
-
"type": "boolean"
|
|
1243
|
-
},
|
|
1244
|
-
"max-tokens": {
|
|
1245
|
-
"description": "Max tokens",
|
|
1246
|
-
"name": "max-tokens",
|
|
1247
|
-
"default": 1024,
|
|
1248
|
-
"hasDynamicHelp": false,
|
|
1249
|
-
"multiple": false,
|
|
1250
|
-
"type": "option"
|
|
1251
1165
|
}
|
|
1252
1166
|
},
|
|
1253
1167
|
"hasDynamicHelp": false,
|
|
1254
1168
|
"hiddenAliases": [],
|
|
1255
|
-
"id": "
|
|
1169
|
+
"id": "catalog:list",
|
|
1256
1170
|
"pluginAlias": "faces-cli",
|
|
1257
1171
|
"pluginName": "faces-cli",
|
|
1258
1172
|
"pluginType": "core",
|
|
@@ -1262,20 +1176,14 @@
|
|
|
1262
1176
|
"relativePath": [
|
|
1263
1177
|
"dist",
|
|
1264
1178
|
"commands",
|
|
1265
|
-
"
|
|
1266
|
-
"
|
|
1179
|
+
"catalog",
|
|
1180
|
+
"list.js"
|
|
1267
1181
|
]
|
|
1268
1182
|
},
|
|
1269
|
-
"
|
|
1183
|
+
"catalog:manyfaced": {
|
|
1270
1184
|
"aliases": [],
|
|
1271
|
-
"args": {
|
|
1272
|
-
|
|
1273
|
-
"description": "Face model (e.g. myface or myface@gpt-4o)",
|
|
1274
|
-
"name": "face_model",
|
|
1275
|
-
"required": true
|
|
1276
|
-
}
|
|
1277
|
-
},
|
|
1278
|
-
"description": "OpenAI Responses API proxy via a face (alias: chat:chat --responses)",
|
|
1185
|
+
"args": {},
|
|
1186
|
+
"description": "Browse and install community manyfaced skills from github.com/facessh/manyfaced",
|
|
1279
1187
|
"flags": {
|
|
1280
1188
|
"json": {
|
|
1281
1189
|
"description": "Format output as json.",
|
|
@@ -1308,32 +1216,37 @@
|
|
|
1308
1216
|
"multiple": false,
|
|
1309
1217
|
"type": "option"
|
|
1310
1218
|
},
|
|
1311
|
-
"
|
|
1312
|
-
"
|
|
1313
|
-
"
|
|
1314
|
-
"name": "message",
|
|
1315
|
-
"required": true,
|
|
1219
|
+
"skill": {
|
|
1220
|
+
"description": "Show details for a specific skill",
|
|
1221
|
+
"name": "skill",
|
|
1316
1222
|
"hasDynamicHelp": false,
|
|
1317
1223
|
"multiple": false,
|
|
1318
1224
|
"type": "option"
|
|
1319
1225
|
},
|
|
1320
|
-
"
|
|
1321
|
-
"description": "
|
|
1322
|
-
"name": "
|
|
1226
|
+
"install": {
|
|
1227
|
+
"description": "Install a skill by name",
|
|
1228
|
+
"name": "install",
|
|
1323
1229
|
"hasDynamicHelp": false,
|
|
1324
1230
|
"multiple": false,
|
|
1325
1231
|
"type": "option"
|
|
1326
1232
|
},
|
|
1327
|
-
"
|
|
1328
|
-
"description": "
|
|
1329
|
-
"name": "
|
|
1233
|
+
"skills-dir": {
|
|
1234
|
+
"description": "Directory to install skills into (required for --install)",
|
|
1235
|
+
"name": "skills-dir",
|
|
1236
|
+
"hasDynamicHelp": false,
|
|
1237
|
+
"multiple": false,
|
|
1238
|
+
"type": "option"
|
|
1239
|
+
},
|
|
1240
|
+
"refresh": {
|
|
1241
|
+
"description": "Force refresh the skill index (ignore cache)",
|
|
1242
|
+
"name": "refresh",
|
|
1330
1243
|
"allowNo": false,
|
|
1331
1244
|
"type": "boolean"
|
|
1332
1245
|
}
|
|
1333
1246
|
},
|
|
1334
1247
|
"hasDynamicHelp": false,
|
|
1335
1248
|
"hiddenAliases": [],
|
|
1336
|
-
"id": "
|
|
1249
|
+
"id": "catalog:manyfaced",
|
|
1337
1250
|
"pluginAlias": "faces-cli",
|
|
1338
1251
|
"pluginName": "faces-cli",
|
|
1339
1252
|
"pluginType": "core",
|
|
@@ -1343,8 +1256,8 @@
|
|
|
1343
1256
|
"relativePath": [
|
|
1344
1257
|
"dist",
|
|
1345
1258
|
"commands",
|
|
1346
|
-
"
|
|
1347
|
-
"
|
|
1259
|
+
"catalog",
|
|
1260
|
+
"manyfaced.js"
|
|
1348
1261
|
]
|
|
1349
1262
|
},
|
|
1350
1263
|
"compile:import": {
|
|
@@ -1555,10 +1468,16 @@
|
|
|
1555
1468
|
"upload.js"
|
|
1556
1469
|
]
|
|
1557
1470
|
},
|
|
1558
|
-
"
|
|
1471
|
+
"chat:chat": {
|
|
1559
1472
|
"aliases": [],
|
|
1560
|
-
"args": {
|
|
1561
|
-
|
|
1473
|
+
"args": {
|
|
1474
|
+
"face_username": {
|
|
1475
|
+
"description": "Face alias (or alias@model)",
|
|
1476
|
+
"name": "face_username",
|
|
1477
|
+
"required": true
|
|
1478
|
+
}
|
|
1479
|
+
},
|
|
1480
|
+
"description": "Chat via a face. Auto-routes to the correct API endpoint based on model provider.",
|
|
1562
1481
|
"flags": {
|
|
1563
1482
|
"json": {
|
|
1564
1483
|
"description": "Format output as json.",
|
|
@@ -1591,22 +1510,66 @@
|
|
|
1591
1510
|
"multiple": false,
|
|
1592
1511
|
"type": "option"
|
|
1593
1512
|
},
|
|
1594
|
-
"
|
|
1595
|
-
"
|
|
1596
|
-
"
|
|
1513
|
+
"message": {
|
|
1514
|
+
"char": "m",
|
|
1515
|
+
"description": "User message (repeatable)",
|
|
1516
|
+
"name": "message",
|
|
1517
|
+
"required": false,
|
|
1518
|
+
"hasDynamicHelp": false,
|
|
1519
|
+
"multiple": true,
|
|
1520
|
+
"type": "option"
|
|
1521
|
+
},
|
|
1522
|
+
"llm": {
|
|
1523
|
+
"description": "LLM override (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
1524
|
+
"name": "llm",
|
|
1525
|
+
"hasDynamicHelp": false,
|
|
1526
|
+
"multiple": false,
|
|
1527
|
+
"type": "option"
|
|
1528
|
+
},
|
|
1529
|
+
"system": {
|
|
1530
|
+
"description": "System prompt / instructions",
|
|
1531
|
+
"name": "system",
|
|
1532
|
+
"hasDynamicHelp": false,
|
|
1533
|
+
"multiple": false,
|
|
1534
|
+
"type": "option"
|
|
1535
|
+
},
|
|
1536
|
+
"stream": {
|
|
1537
|
+
"description": "Stream the response",
|
|
1538
|
+
"name": "stream",
|
|
1597
1539
|
"allowNo": false,
|
|
1598
1540
|
"type": "boolean"
|
|
1599
1541
|
},
|
|
1600
|
-
"
|
|
1601
|
-
"description": "
|
|
1602
|
-
"name": "
|
|
1542
|
+
"max-tokens": {
|
|
1543
|
+
"description": "Max tokens",
|
|
1544
|
+
"name": "max-tokens",
|
|
1545
|
+
"hasDynamicHelp": false,
|
|
1546
|
+
"multiple": false,
|
|
1547
|
+
"type": "option"
|
|
1548
|
+
},
|
|
1549
|
+
"temperature": {
|
|
1550
|
+
"description": "Temperature (0.0-2.0)",
|
|
1551
|
+
"name": "temperature",
|
|
1552
|
+
"hasDynamicHelp": false,
|
|
1553
|
+
"multiple": false,
|
|
1554
|
+
"type": "option"
|
|
1555
|
+
},
|
|
1556
|
+
"file": {
|
|
1557
|
+
"description": "Read message from file",
|
|
1558
|
+
"name": "file",
|
|
1559
|
+
"hasDynamicHelp": false,
|
|
1560
|
+
"multiple": false,
|
|
1561
|
+
"type": "option"
|
|
1562
|
+
},
|
|
1563
|
+
"responses": {
|
|
1564
|
+
"description": "Use OpenAI Responses API instead of Chat Completions",
|
|
1565
|
+
"name": "responses",
|
|
1603
1566
|
"allowNo": false,
|
|
1604
1567
|
"type": "boolean"
|
|
1605
1568
|
}
|
|
1606
1569
|
},
|
|
1607
1570
|
"hasDynamicHelp": false,
|
|
1608
1571
|
"hiddenAliases": [],
|
|
1609
|
-
"id": "
|
|
1572
|
+
"id": "chat:chat",
|
|
1610
1573
|
"pluginAlias": "faces-cli",
|
|
1611
1574
|
"pluginName": "faces-cli",
|
|
1612
1575
|
"pluginType": "core",
|
|
@@ -1616,14 +1579,20 @@
|
|
|
1616
1579
|
"relativePath": [
|
|
1617
1580
|
"dist",
|
|
1618
1581
|
"commands",
|
|
1619
|
-
"
|
|
1620
|
-
"
|
|
1582
|
+
"chat",
|
|
1583
|
+
"chat.js"
|
|
1621
1584
|
]
|
|
1622
1585
|
},
|
|
1623
|
-
"
|
|
1586
|
+
"chat:messages": {
|
|
1624
1587
|
"aliases": [],
|
|
1625
|
-
"args": {
|
|
1626
|
-
|
|
1588
|
+
"args": {
|
|
1589
|
+
"face_model": {
|
|
1590
|
+
"description": "Face model (e.g. myface or myface@claude-sonnet-4-6)",
|
|
1591
|
+
"name": "face_model",
|
|
1592
|
+
"required": true
|
|
1593
|
+
}
|
|
1594
|
+
},
|
|
1595
|
+
"description": "Anthropic Messages API proxy via a face (alias: chat:chat auto-routes Anthropic models here)",
|
|
1627
1596
|
"flags": {
|
|
1628
1597
|
"json": {
|
|
1629
1598
|
"description": "Format output as json.",
|
|
@@ -1655,11 +1624,41 @@
|
|
|
1655
1624
|
"hasDynamicHelp": false,
|
|
1656
1625
|
"multiple": false,
|
|
1657
1626
|
"type": "option"
|
|
1627
|
+
},
|
|
1628
|
+
"message": {
|
|
1629
|
+
"char": "m",
|
|
1630
|
+
"description": "User message (repeatable)",
|
|
1631
|
+
"name": "message",
|
|
1632
|
+
"required": true,
|
|
1633
|
+
"hasDynamicHelp": false,
|
|
1634
|
+
"multiple": true,
|
|
1635
|
+
"type": "option"
|
|
1636
|
+
},
|
|
1637
|
+
"system": {
|
|
1638
|
+
"description": "System prompt",
|
|
1639
|
+
"name": "system",
|
|
1640
|
+
"hasDynamicHelp": false,
|
|
1641
|
+
"multiple": false,
|
|
1642
|
+
"type": "option"
|
|
1643
|
+
},
|
|
1644
|
+
"stream": {
|
|
1645
|
+
"description": "Stream the response",
|
|
1646
|
+
"name": "stream",
|
|
1647
|
+
"allowNo": false,
|
|
1648
|
+
"type": "boolean"
|
|
1649
|
+
},
|
|
1650
|
+
"max-tokens": {
|
|
1651
|
+
"description": "Max tokens",
|
|
1652
|
+
"name": "max-tokens",
|
|
1653
|
+
"default": 1024,
|
|
1654
|
+
"hasDynamicHelp": false,
|
|
1655
|
+
"multiple": false,
|
|
1656
|
+
"type": "option"
|
|
1658
1657
|
}
|
|
1659
1658
|
},
|
|
1660
1659
|
"hasDynamicHelp": false,
|
|
1661
1660
|
"hiddenAliases": [],
|
|
1662
|
-
"id": "
|
|
1661
|
+
"id": "chat:messages",
|
|
1663
1662
|
"pluginAlias": "faces-cli",
|
|
1664
1663
|
"pluginName": "faces-cli",
|
|
1665
1664
|
"pluginType": "core",
|
|
@@ -1669,14 +1668,20 @@
|
|
|
1669
1668
|
"relativePath": [
|
|
1670
1669
|
"dist",
|
|
1671
1670
|
"commands",
|
|
1672
|
-
"
|
|
1673
|
-
"
|
|
1671
|
+
"chat",
|
|
1672
|
+
"messages.js"
|
|
1674
1673
|
]
|
|
1675
1674
|
},
|
|
1676
|
-
"
|
|
1675
|
+
"chat:responses": {
|
|
1677
1676
|
"aliases": [],
|
|
1678
|
-
"args": {
|
|
1679
|
-
|
|
1677
|
+
"args": {
|
|
1678
|
+
"face_model": {
|
|
1679
|
+
"description": "Face model (e.g. myface or myface@gpt-4o)",
|
|
1680
|
+
"name": "face_model",
|
|
1681
|
+
"required": true
|
|
1682
|
+
}
|
|
1683
|
+
},
|
|
1684
|
+
"description": "OpenAI Responses API proxy via a face (alias: chat:chat --responses)",
|
|
1680
1685
|
"flags": {
|
|
1681
1686
|
"json": {
|
|
1682
1687
|
"description": "Format output as json.",
|
|
@@ -1709,37 +1714,32 @@
|
|
|
1709
1714
|
"multiple": false,
|
|
1710
1715
|
"type": "option"
|
|
1711
1716
|
},
|
|
1712
|
-
"
|
|
1713
|
-
"
|
|
1714
|
-
"
|
|
1715
|
-
"
|
|
1716
|
-
"
|
|
1717
|
-
"type": "option"
|
|
1718
|
-
},
|
|
1719
|
-
"install": {
|
|
1720
|
-
"description": "Install a skill by name",
|
|
1721
|
-
"name": "install",
|
|
1717
|
+
"message": {
|
|
1718
|
+
"char": "m",
|
|
1719
|
+
"description": "User input message",
|
|
1720
|
+
"name": "message",
|
|
1721
|
+
"required": true,
|
|
1722
1722
|
"hasDynamicHelp": false,
|
|
1723
1723
|
"multiple": false,
|
|
1724
1724
|
"type": "option"
|
|
1725
1725
|
},
|
|
1726
|
-
"
|
|
1727
|
-
"description": "
|
|
1728
|
-
"name": "
|
|
1726
|
+
"instructions": {
|
|
1727
|
+
"description": "System instructions",
|
|
1728
|
+
"name": "instructions",
|
|
1729
1729
|
"hasDynamicHelp": false,
|
|
1730
1730
|
"multiple": false,
|
|
1731
1731
|
"type": "option"
|
|
1732
1732
|
},
|
|
1733
|
-
"
|
|
1734
|
-
"description": "
|
|
1735
|
-
"name": "
|
|
1733
|
+
"stream": {
|
|
1734
|
+
"description": "Stream the response",
|
|
1735
|
+
"name": "stream",
|
|
1736
1736
|
"allowNo": false,
|
|
1737
1737
|
"type": "boolean"
|
|
1738
1738
|
}
|
|
1739
1739
|
},
|
|
1740
1740
|
"hasDynamicHelp": false,
|
|
1741
1741
|
"hiddenAliases": [],
|
|
1742
|
-
"id": "
|
|
1742
|
+
"id": "chat:responses",
|
|
1743
1743
|
"pluginAlias": "faces-cli",
|
|
1744
1744
|
"pluginName": "faces-cli",
|
|
1745
1745
|
"pluginType": "core",
|
|
@@ -1749,8 +1749,8 @@
|
|
|
1749
1749
|
"relativePath": [
|
|
1750
1750
|
"dist",
|
|
1751
1751
|
"commands",
|
|
1752
|
-
"
|
|
1753
|
-
"
|
|
1752
|
+
"chat",
|
|
1753
|
+
"responses.js"
|
|
1754
1754
|
]
|
|
1755
1755
|
},
|
|
1756
1756
|
"config:clear": {
|
|
@@ -1929,10 +1929,10 @@
|
|
|
1929
1929
|
"show.js"
|
|
1930
1930
|
]
|
|
1931
1931
|
},
|
|
1932
|
-
"
|
|
1932
|
+
"keys:create": {
|
|
1933
1933
|
"aliases": [],
|
|
1934
1934
|
"args": {},
|
|
1935
|
-
"description": "Create a new
|
|
1935
|
+
"description": "Create a new API key (JWT required)",
|
|
1936
1936
|
"flags": {
|
|
1937
1937
|
"json": {
|
|
1938
1938
|
"description": "Format output as json.",
|
|
@@ -1966,52 +1966,37 @@
|
|
|
1966
1966
|
"type": "option"
|
|
1967
1967
|
},
|
|
1968
1968
|
"name": {
|
|
1969
|
-
"description": "
|
|
1969
|
+
"description": "Key name/label",
|
|
1970
1970
|
"name": "name",
|
|
1971
1971
|
"required": true,
|
|
1972
1972
|
"hasDynamicHelp": false,
|
|
1973
1973
|
"multiple": false,
|
|
1974
1974
|
"type": "option"
|
|
1975
1975
|
},
|
|
1976
|
-
"
|
|
1977
|
-
"description": "
|
|
1978
|
-
"name": "
|
|
1979
|
-
"required": true,
|
|
1980
|
-
"hasDynamicHelp": false,
|
|
1981
|
-
"multiple": false,
|
|
1982
|
-
"type": "option"
|
|
1983
|
-
},
|
|
1984
|
-
"description": {
|
|
1985
|
-
"description": "Description for local catalog",
|
|
1986
|
-
"name": "description",
|
|
1987
|
-
"hasDynamicHelp": false,
|
|
1988
|
-
"multiple": false,
|
|
1989
|
-
"type": "option"
|
|
1990
|
-
},
|
|
1991
|
-
"default-model": {
|
|
1992
|
-
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
1993
|
-
"name": "default-model",
|
|
1976
|
+
"expires-days": {
|
|
1977
|
+
"description": "Expiry in days (omit for no expiry)",
|
|
1978
|
+
"name": "expires-days",
|
|
1994
1979
|
"hasDynamicHelp": false,
|
|
1995
1980
|
"multiple": false,
|
|
1996
1981
|
"type": "option"
|
|
1997
1982
|
},
|
|
1998
|
-
"
|
|
1999
|
-
"description": "
|
|
2000
|
-
"name": "
|
|
1983
|
+
"budget": {
|
|
1984
|
+
"description": "Spend budget in USD",
|
|
1985
|
+
"name": "budget",
|
|
2001
1986
|
"hasDynamicHelp": false,
|
|
2002
1987
|
"multiple": false,
|
|
2003
1988
|
"type": "option"
|
|
2004
1989
|
},
|
|
2005
|
-
"
|
|
2006
|
-
"description": "
|
|
2007
|
-
"name": "
|
|
1990
|
+
"face": {
|
|
1991
|
+
"description": "Allowed face alias (repeatable)",
|
|
1992
|
+
"name": "face",
|
|
2008
1993
|
"hasDynamicHelp": false,
|
|
2009
1994
|
"multiple": true,
|
|
2010
1995
|
"type": "option"
|
|
2011
1996
|
},
|
|
2012
|
-
"
|
|
2013
|
-
"description": "
|
|
2014
|
-
"name": "
|
|
1997
|
+
"model": {
|
|
1998
|
+
"description": "Allowed model name (repeatable)",
|
|
1999
|
+
"name": "model",
|
|
2015
2000
|
"hasDynamicHelp": false,
|
|
2016
2001
|
"multiple": true,
|
|
2017
2002
|
"type": "option"
|
|
@@ -2019,7 +2004,7 @@
|
|
|
2019
2004
|
},
|
|
2020
2005
|
"hasDynamicHelp": false,
|
|
2021
2006
|
"hiddenAliases": [],
|
|
2022
|
-
"id": "
|
|
2007
|
+
"id": "keys:create",
|
|
2023
2008
|
"pluginAlias": "faces-cli",
|
|
2024
2009
|
"pluginName": "faces-cli",
|
|
2025
2010
|
"pluginType": "core",
|
|
@@ -2029,20 +2014,14 @@
|
|
|
2029
2014
|
"relativePath": [
|
|
2030
2015
|
"dist",
|
|
2031
2016
|
"commands",
|
|
2032
|
-
"
|
|
2017
|
+
"keys",
|
|
2033
2018
|
"create.js"
|
|
2034
2019
|
]
|
|
2035
2020
|
},
|
|
2036
|
-
"
|
|
2021
|
+
"keys:list": {
|
|
2037
2022
|
"aliases": [],
|
|
2038
|
-
"args": {
|
|
2039
|
-
|
|
2040
|
-
"description": "Face alias",
|
|
2041
|
-
"name": "face_id",
|
|
2042
|
-
"required": true
|
|
2043
|
-
}
|
|
2044
|
-
},
|
|
2045
|
-
"description": "Delete a face permanently",
|
|
2023
|
+
"args": {},
|
|
2024
|
+
"description": "List all API keys (JWT required)",
|
|
2046
2025
|
"flags": {
|
|
2047
2026
|
"json": {
|
|
2048
2027
|
"description": "Format output as json.",
|
|
@@ -2074,17 +2053,11 @@
|
|
|
2074
2053
|
"hasDynamicHelp": false,
|
|
2075
2054
|
"multiple": false,
|
|
2076
2055
|
"type": "option"
|
|
2077
|
-
},
|
|
2078
|
-
"yes": {
|
|
2079
|
-
"description": "Skip confirmation",
|
|
2080
|
-
"name": "yes",
|
|
2081
|
-
"allowNo": false,
|
|
2082
|
-
"type": "boolean"
|
|
2083
2056
|
}
|
|
2084
2057
|
},
|
|
2085
2058
|
"hasDynamicHelp": false,
|
|
2086
2059
|
"hiddenAliases": [],
|
|
2087
|
-
"id": "
|
|
2060
|
+
"id": "keys:list",
|
|
2088
2061
|
"pluginAlias": "faces-cli",
|
|
2089
2062
|
"pluginName": "faces-cli",
|
|
2090
2063
|
"pluginType": "core",
|
|
@@ -2094,14 +2067,20 @@
|
|
|
2094
2067
|
"relativePath": [
|
|
2095
2068
|
"dist",
|
|
2096
2069
|
"commands",
|
|
2097
|
-
"
|
|
2098
|
-
"
|
|
2070
|
+
"keys",
|
|
2071
|
+
"list.js"
|
|
2099
2072
|
]
|
|
2100
2073
|
},
|
|
2101
|
-
"
|
|
2074
|
+
"keys:revoke": {
|
|
2102
2075
|
"aliases": [],
|
|
2103
|
-
"args": {
|
|
2104
|
-
|
|
2076
|
+
"args": {
|
|
2077
|
+
"key_id": {
|
|
2078
|
+
"description": "Key ID",
|
|
2079
|
+
"name": "key_id",
|
|
2080
|
+
"required": true
|
|
2081
|
+
}
|
|
2082
|
+
},
|
|
2083
|
+
"description": "Revoke an API key (JWT required)",
|
|
2105
2084
|
"flags": {
|
|
2106
2085
|
"json": {
|
|
2107
2086
|
"description": "Format output as json.",
|
|
@@ -2134,18 +2113,16 @@
|
|
|
2134
2113
|
"multiple": false,
|
|
2135
2114
|
"type": "option"
|
|
2136
2115
|
},
|
|
2137
|
-
"
|
|
2138
|
-
"description": "
|
|
2139
|
-
"name": "
|
|
2140
|
-
"
|
|
2141
|
-
"
|
|
2142
|
-
"multiple": true,
|
|
2143
|
-
"type": "option"
|
|
2116
|
+
"yes": {
|
|
2117
|
+
"description": "Skip confirmation",
|
|
2118
|
+
"name": "yes",
|
|
2119
|
+
"allowNo": false,
|
|
2120
|
+
"type": "boolean"
|
|
2144
2121
|
}
|
|
2145
2122
|
},
|
|
2146
2123
|
"hasDynamicHelp": false,
|
|
2147
2124
|
"hiddenAliases": [],
|
|
2148
|
-
"id": "
|
|
2125
|
+
"id": "keys:revoke",
|
|
2149
2126
|
"pluginAlias": "faces-cli",
|
|
2150
2127
|
"pluginName": "faces-cli",
|
|
2151
2128
|
"pluginType": "core",
|
|
@@ -2155,20 +2132,20 @@
|
|
|
2155
2132
|
"relativePath": [
|
|
2156
2133
|
"dist",
|
|
2157
2134
|
"commands",
|
|
2158
|
-
"
|
|
2159
|
-
"
|
|
2135
|
+
"keys",
|
|
2136
|
+
"revoke.js"
|
|
2160
2137
|
]
|
|
2161
2138
|
},
|
|
2162
|
-
"
|
|
2139
|
+
"keys:update": {
|
|
2163
2140
|
"aliases": [],
|
|
2164
2141
|
"args": {
|
|
2165
|
-
"
|
|
2166
|
-
"description": "
|
|
2167
|
-
"name": "
|
|
2142
|
+
"key_id": {
|
|
2143
|
+
"description": "Key ID",
|
|
2144
|
+
"name": "key_id",
|
|
2168
2145
|
"required": true
|
|
2169
2146
|
}
|
|
2170
2147
|
},
|
|
2171
|
-
"description": "
|
|
2148
|
+
"description": "Update API key metadata (JWT required)",
|
|
2172
2149
|
"flags": {
|
|
2173
2150
|
"json": {
|
|
2174
2151
|
"description": "Format output as json.",
|
|
@@ -2200,11 +2177,31 @@
|
|
|
2200
2177
|
"hasDynamicHelp": false,
|
|
2201
2178
|
"multiple": false,
|
|
2202
2179
|
"type": "option"
|
|
2180
|
+
},
|
|
2181
|
+
"name": {
|
|
2182
|
+
"description": "New key name",
|
|
2183
|
+
"name": "name",
|
|
2184
|
+
"hasDynamicHelp": false,
|
|
2185
|
+
"multiple": false,
|
|
2186
|
+
"type": "option"
|
|
2187
|
+
},
|
|
2188
|
+
"budget": {
|
|
2189
|
+
"description": "New spend budget in USD",
|
|
2190
|
+
"name": "budget",
|
|
2191
|
+
"hasDynamicHelp": false,
|
|
2192
|
+
"multiple": false,
|
|
2193
|
+
"type": "option"
|
|
2194
|
+
},
|
|
2195
|
+
"reset-spent": {
|
|
2196
|
+
"description": "Reset spent amount to zero",
|
|
2197
|
+
"name": "reset-spent",
|
|
2198
|
+
"allowNo": false,
|
|
2199
|
+
"type": "boolean"
|
|
2203
2200
|
}
|
|
2204
2201
|
},
|
|
2205
2202
|
"hasDynamicHelp": false,
|
|
2206
2203
|
"hiddenAliases": [],
|
|
2207
|
-
"id": "
|
|
2204
|
+
"id": "keys:update",
|
|
2208
2205
|
"pluginAlias": "faces-cli",
|
|
2209
2206
|
"pluginName": "faces-cli",
|
|
2210
2207
|
"pluginType": "core",
|
|
@@ -2214,14 +2211,14 @@
|
|
|
2214
2211
|
"relativePath": [
|
|
2215
2212
|
"dist",
|
|
2216
2213
|
"commands",
|
|
2217
|
-
"
|
|
2218
|
-
"
|
|
2214
|
+
"keys",
|
|
2215
|
+
"update.js"
|
|
2219
2216
|
]
|
|
2220
2217
|
},
|
|
2221
|
-
"face:
|
|
2218
|
+
"face:create": {
|
|
2222
2219
|
"aliases": [],
|
|
2223
2220
|
"args": {},
|
|
2224
|
-
"description": "
|
|
2221
|
+
"description": "Create a new face",
|
|
2225
2222
|
"flags": {
|
|
2226
2223
|
"json": {
|
|
2227
2224
|
"description": "Format output as json.",
|
|
@@ -2253,11 +2250,62 @@
|
|
|
2253
2250
|
"hasDynamicHelp": false,
|
|
2254
2251
|
"multiple": false,
|
|
2255
2252
|
"type": "option"
|
|
2253
|
+
},
|
|
2254
|
+
"name": {
|
|
2255
|
+
"description": "Display name",
|
|
2256
|
+
"name": "name",
|
|
2257
|
+
"required": true,
|
|
2258
|
+
"hasDynamicHelp": false,
|
|
2259
|
+
"multiple": false,
|
|
2260
|
+
"type": "option"
|
|
2261
|
+
},
|
|
2262
|
+
"alias": {
|
|
2263
|
+
"description": "Unique alias slug",
|
|
2264
|
+
"name": "alias",
|
|
2265
|
+
"required": true,
|
|
2266
|
+
"hasDynamicHelp": false,
|
|
2267
|
+
"multiple": false,
|
|
2268
|
+
"type": "option"
|
|
2269
|
+
},
|
|
2270
|
+
"description": {
|
|
2271
|
+
"description": "Description for local catalog",
|
|
2272
|
+
"name": "description",
|
|
2273
|
+
"hasDynamicHelp": false,
|
|
2274
|
+
"multiple": false,
|
|
2275
|
+
"type": "option"
|
|
2276
|
+
},
|
|
2277
|
+
"default-model": {
|
|
2278
|
+
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
2279
|
+
"name": "default-model",
|
|
2280
|
+
"hasDynamicHelp": false,
|
|
2281
|
+
"multiple": false,
|
|
2282
|
+
"type": "option"
|
|
2283
|
+
},
|
|
2284
|
+
"formula": {
|
|
2285
|
+
"description": "Boolean formula over owned concrete face aliases (e.g. \"a | b\", \"(a | b) - c\"). Creates a composite face.",
|
|
2286
|
+
"name": "formula",
|
|
2287
|
+
"hasDynamicHelp": false,
|
|
2288
|
+
"multiple": false,
|
|
2289
|
+
"type": "option"
|
|
2290
|
+
},
|
|
2291
|
+
"attr": {
|
|
2292
|
+
"description": "Attribute KEY=VALUE (repeatable)",
|
|
2293
|
+
"name": "attr",
|
|
2294
|
+
"hasDynamicHelp": false,
|
|
2295
|
+
"multiple": true,
|
|
2296
|
+
"type": "option"
|
|
2297
|
+
},
|
|
2298
|
+
"tool": {
|
|
2299
|
+
"description": "Tool name to enable (repeatable)",
|
|
2300
|
+
"name": "tool",
|
|
2301
|
+
"hasDynamicHelp": false,
|
|
2302
|
+
"multiple": true,
|
|
2303
|
+
"type": "option"
|
|
2256
2304
|
}
|
|
2257
2305
|
},
|
|
2258
2306
|
"hasDynamicHelp": false,
|
|
2259
2307
|
"hiddenAliases": [],
|
|
2260
|
-
"id": "face:
|
|
2308
|
+
"id": "face:create",
|
|
2261
2309
|
"pluginAlias": "faces-cli",
|
|
2262
2310
|
"pluginName": "faces-cli",
|
|
2263
2311
|
"pluginType": "core",
|
|
@@ -2268,10 +2316,10 @@
|
|
|
2268
2316
|
"dist",
|
|
2269
2317
|
"commands",
|
|
2270
2318
|
"face",
|
|
2271
|
-
"
|
|
2319
|
+
"create.js"
|
|
2272
2320
|
]
|
|
2273
2321
|
},
|
|
2274
|
-
"face:
|
|
2322
|
+
"face:delete": {
|
|
2275
2323
|
"aliases": [],
|
|
2276
2324
|
"args": {
|
|
2277
2325
|
"face_id": {
|
|
@@ -2280,7 +2328,7 @@
|
|
|
2280
2328
|
"required": true
|
|
2281
2329
|
}
|
|
2282
2330
|
},
|
|
2283
|
-
"description": "
|
|
2331
|
+
"description": "Delete a face permanently",
|
|
2284
2332
|
"flags": {
|
|
2285
2333
|
"json": {
|
|
2286
2334
|
"description": "Format output as json.",
|
|
@@ -2313,44 +2361,16 @@
|
|
|
2313
2361
|
"multiple": false,
|
|
2314
2362
|
"type": "option"
|
|
2315
2363
|
},
|
|
2316
|
-
"
|
|
2317
|
-
"description": "
|
|
2318
|
-
"name": "
|
|
2319
|
-
"
|
|
2320
|
-
"
|
|
2321
|
-
"multiple": false,
|
|
2322
|
-
"type": "option"
|
|
2323
|
-
},
|
|
2324
|
-
"component": {
|
|
2325
|
-
"description": "Centroid component to rank on (beta, delta, epsilon are the principal components of a face; face is their composite)",
|
|
2326
|
-
"name": "component",
|
|
2327
|
-
"default": "face",
|
|
2328
|
-
"hasDynamicHelp": false,
|
|
2329
|
-
"multiple": false,
|
|
2330
|
-
"options": [
|
|
2331
|
-
"face",
|
|
2332
|
-
"beta",
|
|
2333
|
-
"delta",
|
|
2334
|
-
"epsilon"
|
|
2335
|
-
],
|
|
2336
|
-
"type": "option"
|
|
2337
|
-
},
|
|
2338
|
-
"direction": {
|
|
2339
|
-
"description": "nearest (most similar) or furthest (most dissimilar)",
|
|
2340
|
-
"name": "direction",
|
|
2341
|
-
"default": "nearest",
|
|
2342
|
-
"hasDynamicHelp": false,
|
|
2343
|
-
"multiple": false,
|
|
2344
|
-
"options": [
|
|
2345
|
-
"nearest",
|
|
2346
|
-
"furthest"
|
|
2347
|
-
],
|
|
2348
|
-
"type": "option"
|
|
2364
|
+
"yes": {
|
|
2365
|
+
"description": "Skip confirmation",
|
|
2366
|
+
"name": "yes",
|
|
2367
|
+
"allowNo": false,
|
|
2368
|
+
"type": "boolean"
|
|
2349
2369
|
}
|
|
2350
2370
|
},
|
|
2351
2371
|
"hasDynamicHelp": false,
|
|
2352
2372
|
"hiddenAliases": [],
|
|
2353
|
-
"id": "face:
|
|
2373
|
+
"id": "face:delete",
|
|
2354
2374
|
"pluginAlias": "faces-cli",
|
|
2355
2375
|
"pluginName": "faces-cli",
|
|
2356
2376
|
"pluginType": "core",
|
|
@@ -2361,13 +2381,13 @@
|
|
|
2361
2381
|
"dist",
|
|
2362
2382
|
"commands",
|
|
2363
2383
|
"face",
|
|
2364
|
-
"
|
|
2384
|
+
"delete.js"
|
|
2365
2385
|
]
|
|
2366
2386
|
},
|
|
2367
|
-
"face:
|
|
2387
|
+
"face:diff": {
|
|
2368
2388
|
"aliases": [],
|
|
2369
2389
|
"args": {},
|
|
2370
|
-
"description": "
|
|
2390
|
+
"description": "Compare owned faces pairwise across all centroid components",
|
|
2371
2391
|
"flags": {
|
|
2372
2392
|
"json": {
|
|
2373
2393
|
"description": "Format output as json.",
|
|
@@ -2399,11 +2419,19 @@
|
|
|
2399
2419
|
"hasDynamicHelp": false,
|
|
2400
2420
|
"multiple": false,
|
|
2401
2421
|
"type": "option"
|
|
2402
|
-
}
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2422
|
+
},
|
|
2423
|
+
"face": {
|
|
2424
|
+
"description": "Face alias to include (repeatable, min 2)",
|
|
2425
|
+
"name": "face",
|
|
2426
|
+
"required": true,
|
|
2427
|
+
"hasDynamicHelp": false,
|
|
2428
|
+
"multiple": true,
|
|
2429
|
+
"type": "option"
|
|
2430
|
+
}
|
|
2431
|
+
},
|
|
2432
|
+
"hasDynamicHelp": false,
|
|
2433
|
+
"hiddenAliases": [],
|
|
2434
|
+
"id": "face:diff",
|
|
2407
2435
|
"pluginAlias": "faces-cli",
|
|
2408
2436
|
"pluginName": "faces-cli",
|
|
2409
2437
|
"pluginType": "core",
|
|
@@ -2414,10 +2442,10 @@
|
|
|
2414
2442
|
"dist",
|
|
2415
2443
|
"commands",
|
|
2416
2444
|
"face",
|
|
2417
|
-
"
|
|
2445
|
+
"diff.js"
|
|
2418
2446
|
]
|
|
2419
2447
|
},
|
|
2420
|
-
"face:
|
|
2448
|
+
"face:get": {
|
|
2421
2449
|
"aliases": [],
|
|
2422
2450
|
"args": {
|
|
2423
2451
|
"face_id": {
|
|
@@ -2426,7 +2454,7 @@
|
|
|
2426
2454
|
"required": true
|
|
2427
2455
|
}
|
|
2428
2456
|
},
|
|
2429
|
-
"description": "
|
|
2457
|
+
"description": "Get details for a face by alias",
|
|
2430
2458
|
"flags": {
|
|
2431
2459
|
"json": {
|
|
2432
2460
|
"description": "Format output as json.",
|
|
@@ -2458,53 +2486,11 @@
|
|
|
2458
2486
|
"hasDynamicHelp": false,
|
|
2459
2487
|
"multiple": false,
|
|
2460
2488
|
"type": "option"
|
|
2461
|
-
},
|
|
2462
|
-
"name": {
|
|
2463
|
-
"description": "New display name",
|
|
2464
|
-
"name": "name",
|
|
2465
|
-
"hasDynamicHelp": false,
|
|
2466
|
-
"multiple": false,
|
|
2467
|
-
"type": "option"
|
|
2468
|
-
},
|
|
2469
|
-
"description": {
|
|
2470
|
-
"description": "Description for local catalog",
|
|
2471
|
-
"name": "description",
|
|
2472
|
-
"hasDynamicHelp": false,
|
|
2473
|
-
"multiple": false,
|
|
2474
|
-
"type": "option"
|
|
2475
|
-
},
|
|
2476
|
-
"default-model": {
|
|
2477
|
-
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
2478
|
-
"name": "default-model",
|
|
2479
|
-
"hasDynamicHelp": false,
|
|
2480
|
-
"multiple": false,
|
|
2481
|
-
"type": "option"
|
|
2482
|
-
},
|
|
2483
|
-
"formula": {
|
|
2484
|
-
"description": "New boolean formula (synthetic faces only)",
|
|
2485
|
-
"name": "formula",
|
|
2486
|
-
"hasDynamicHelp": false,
|
|
2487
|
-
"multiple": false,
|
|
2488
|
-
"type": "option"
|
|
2489
|
-
},
|
|
2490
|
-
"attr": {
|
|
2491
|
-
"description": "Update attribute KEY=VALUE (repeatable)",
|
|
2492
|
-
"name": "attr",
|
|
2493
|
-
"hasDynamicHelp": false,
|
|
2494
|
-
"multiple": true,
|
|
2495
|
-
"type": "option"
|
|
2496
|
-
},
|
|
2497
|
-
"tool": {
|
|
2498
|
-
"description": "Tool names to set (replaces list, repeatable)",
|
|
2499
|
-
"name": "tool",
|
|
2500
|
-
"hasDynamicHelp": false,
|
|
2501
|
-
"multiple": true,
|
|
2502
|
-
"type": "option"
|
|
2503
2489
|
}
|
|
2504
2490
|
},
|
|
2505
2491
|
"hasDynamicHelp": false,
|
|
2506
2492
|
"hiddenAliases": [],
|
|
2507
|
-
"id": "face:
|
|
2493
|
+
"id": "face:get",
|
|
2508
2494
|
"pluginAlias": "faces-cli",
|
|
2509
2495
|
"pluginName": "faces-cli",
|
|
2510
2496
|
"pluginType": "core",
|
|
@@ -2515,19 +2501,13 @@
|
|
|
2515
2501
|
"dist",
|
|
2516
2502
|
"commands",
|
|
2517
2503
|
"face",
|
|
2518
|
-
"
|
|
2504
|
+
"get.js"
|
|
2519
2505
|
]
|
|
2520
2506
|
},
|
|
2521
|
-
"face:
|
|
2507
|
+
"face:list": {
|
|
2522
2508
|
"aliases": [],
|
|
2523
|
-
"args": {
|
|
2524
|
-
|
|
2525
|
-
"description": "Face alias",
|
|
2526
|
-
"name": "face_id",
|
|
2527
|
-
"required": true
|
|
2528
|
-
}
|
|
2529
|
-
},
|
|
2530
|
-
"description": "Upload a file (text/PDF/audio/video) to a face",
|
|
2509
|
+
"args": {},
|
|
2510
|
+
"description": "List all owned faces",
|
|
2531
2511
|
"flags": {
|
|
2532
2512
|
"json": {
|
|
2533
2513
|
"description": "Format output as json.",
|
|
@@ -2559,50 +2539,11 @@
|
|
|
2559
2539
|
"hasDynamicHelp": false,
|
|
2560
2540
|
"multiple": false,
|
|
2561
2541
|
"type": "option"
|
|
2562
|
-
},
|
|
2563
|
-
"file": {
|
|
2564
|
-
"description": "File to upload",
|
|
2565
|
-
"name": "file",
|
|
2566
|
-
"required": true,
|
|
2567
|
-
"hasDynamicHelp": false,
|
|
2568
|
-
"multiple": false,
|
|
2569
|
-
"type": "option"
|
|
2570
|
-
},
|
|
2571
|
-
"kind": {
|
|
2572
|
-
"description": "Upload kind: document or thread",
|
|
2573
|
-
"name": "kind",
|
|
2574
|
-
"default": "document",
|
|
2575
|
-
"hasDynamicHelp": false,
|
|
2576
|
-
"multiple": false,
|
|
2577
|
-
"options": [
|
|
2578
|
-
"document",
|
|
2579
|
-
"thread"
|
|
2580
|
-
],
|
|
2581
|
-
"type": "option"
|
|
2582
|
-
},
|
|
2583
|
-
"perspective": {
|
|
2584
|
-
"description": "Perspective (document only)",
|
|
2585
|
-
"name": "perspective",
|
|
2586
|
-
"default": "third-person",
|
|
2587
|
-
"hasDynamicHelp": false,
|
|
2588
|
-
"multiple": false,
|
|
2589
|
-
"options": [
|
|
2590
|
-
"first-person",
|
|
2591
|
-
"third-person"
|
|
2592
|
-
],
|
|
2593
|
-
"type": "option"
|
|
2594
|
-
},
|
|
2595
|
-
"face-speaker": {
|
|
2596
|
-
"description": "Speaker name to map to the face (thread only). If omitted, first speaker is used.",
|
|
2597
|
-
"name": "face-speaker",
|
|
2598
|
-
"hasDynamicHelp": false,
|
|
2599
|
-
"multiple": false,
|
|
2600
|
-
"type": "option"
|
|
2601
2542
|
}
|
|
2602
2543
|
},
|
|
2603
2544
|
"hasDynamicHelp": false,
|
|
2604
2545
|
"hiddenAliases": [],
|
|
2605
|
-
"id": "face:
|
|
2546
|
+
"id": "face:list",
|
|
2606
2547
|
"pluginAlias": "faces-cli",
|
|
2607
2548
|
"pluginName": "faces-cli",
|
|
2608
2549
|
"pluginType": "core",
|
|
@@ -2613,13 +2554,19 @@
|
|
|
2613
2554
|
"dist",
|
|
2614
2555
|
"commands",
|
|
2615
2556
|
"face",
|
|
2616
|
-
"
|
|
2557
|
+
"list.js"
|
|
2617
2558
|
]
|
|
2618
2559
|
},
|
|
2619
|
-
"
|
|
2560
|
+
"face:neighbors": {
|
|
2620
2561
|
"aliases": [],
|
|
2621
|
-
"args": {
|
|
2622
|
-
|
|
2562
|
+
"args": {
|
|
2563
|
+
"face_id": {
|
|
2564
|
+
"description": "Face alias",
|
|
2565
|
+
"name": "face_id",
|
|
2566
|
+
"required": true
|
|
2567
|
+
}
|
|
2568
|
+
},
|
|
2569
|
+
"description": "Find the most similar or dissimilar owned faces to a given face",
|
|
2623
2570
|
"flags": {
|
|
2624
2571
|
"json": {
|
|
2625
2572
|
"description": "Format output as json.",
|
|
@@ -2652,46 +2599,44 @@
|
|
|
2652
2599
|
"multiple": false,
|
|
2653
2600
|
"type": "option"
|
|
2654
2601
|
},
|
|
2655
|
-
"
|
|
2656
|
-
"description": "
|
|
2657
|
-
"name": "
|
|
2658
|
-
"
|
|
2602
|
+
"k": {
|
|
2603
|
+
"description": "Number of results (1–20)",
|
|
2604
|
+
"name": "k",
|
|
2605
|
+
"default": 5,
|
|
2659
2606
|
"hasDynamicHelp": false,
|
|
2660
2607
|
"multiple": false,
|
|
2661
2608
|
"type": "option"
|
|
2662
2609
|
},
|
|
2663
|
-
"
|
|
2664
|
-
"description": "
|
|
2665
|
-
"name": "
|
|
2610
|
+
"component": {
|
|
2611
|
+
"description": "Centroid component to rank on (beta, delta, epsilon are the principal components of a face; face is their composite)",
|
|
2612
|
+
"name": "component",
|
|
2613
|
+
"default": "face",
|
|
2666
2614
|
"hasDynamicHelp": false,
|
|
2667
2615
|
"multiple": false,
|
|
2616
|
+
"options": [
|
|
2617
|
+
"face",
|
|
2618
|
+
"beta",
|
|
2619
|
+
"delta",
|
|
2620
|
+
"epsilon"
|
|
2621
|
+
],
|
|
2668
2622
|
"type": "option"
|
|
2669
2623
|
},
|
|
2670
|
-
"
|
|
2671
|
-
"description": "
|
|
2672
|
-
"name": "
|
|
2624
|
+
"direction": {
|
|
2625
|
+
"description": "nearest (most similar) or furthest (most dissimilar)",
|
|
2626
|
+
"name": "direction",
|
|
2627
|
+
"default": "nearest",
|
|
2673
2628
|
"hasDynamicHelp": false,
|
|
2674
2629
|
"multiple": false,
|
|
2675
|
-
"
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
"name": "face",
|
|
2680
|
-
"hasDynamicHelp": false,
|
|
2681
|
-
"multiple": true,
|
|
2682
|
-
"type": "option"
|
|
2683
|
-
},
|
|
2684
|
-
"model": {
|
|
2685
|
-
"description": "Allowed model name (repeatable)",
|
|
2686
|
-
"name": "model",
|
|
2687
|
-
"hasDynamicHelp": false,
|
|
2688
|
-
"multiple": true,
|
|
2630
|
+
"options": [
|
|
2631
|
+
"nearest",
|
|
2632
|
+
"furthest"
|
|
2633
|
+
],
|
|
2689
2634
|
"type": "option"
|
|
2690
2635
|
}
|
|
2691
2636
|
},
|
|
2692
2637
|
"hasDynamicHelp": false,
|
|
2693
2638
|
"hiddenAliases": [],
|
|
2694
|
-
"id": "
|
|
2639
|
+
"id": "face:neighbors",
|
|
2695
2640
|
"pluginAlias": "faces-cli",
|
|
2696
2641
|
"pluginName": "faces-cli",
|
|
2697
2642
|
"pluginType": "core",
|
|
@@ -2701,14 +2646,14 @@
|
|
|
2701
2646
|
"relativePath": [
|
|
2702
2647
|
"dist",
|
|
2703
2648
|
"commands",
|
|
2704
|
-
"
|
|
2705
|
-
"
|
|
2649
|
+
"face",
|
|
2650
|
+
"neighbors.js"
|
|
2706
2651
|
]
|
|
2707
2652
|
},
|
|
2708
|
-
"
|
|
2653
|
+
"face:stats": {
|
|
2709
2654
|
"aliases": [],
|
|
2710
2655
|
"args": {},
|
|
2711
|
-
"description": "
|
|
2656
|
+
"description": "Compile and chat stats for all owned faces",
|
|
2712
2657
|
"flags": {
|
|
2713
2658
|
"json": {
|
|
2714
2659
|
"description": "Format output as json.",
|
|
@@ -2744,7 +2689,7 @@
|
|
|
2744
2689
|
},
|
|
2745
2690
|
"hasDynamicHelp": false,
|
|
2746
2691
|
"hiddenAliases": [],
|
|
2747
|
-
"id": "
|
|
2692
|
+
"id": "face:stats",
|
|
2748
2693
|
"pluginAlias": "faces-cli",
|
|
2749
2694
|
"pluginName": "faces-cli",
|
|
2750
2695
|
"pluginType": "core",
|
|
@@ -2754,20 +2699,20 @@
|
|
|
2754
2699
|
"relativePath": [
|
|
2755
2700
|
"dist",
|
|
2756
2701
|
"commands",
|
|
2757
|
-
"
|
|
2758
|
-
"
|
|
2702
|
+
"face",
|
|
2703
|
+
"stats.js"
|
|
2759
2704
|
]
|
|
2760
2705
|
},
|
|
2761
|
-
"
|
|
2706
|
+
"face:update": {
|
|
2762
2707
|
"aliases": [],
|
|
2763
2708
|
"args": {
|
|
2764
|
-
"
|
|
2765
|
-
"description": "
|
|
2766
|
-
"name": "
|
|
2709
|
+
"face_id": {
|
|
2710
|
+
"description": "Face alias",
|
|
2711
|
+
"name": "face_id",
|
|
2767
2712
|
"required": true
|
|
2768
2713
|
}
|
|
2769
2714
|
},
|
|
2770
|
-
"description": "
|
|
2715
|
+
"description": "Update a face's metadata",
|
|
2771
2716
|
"flags": {
|
|
2772
2717
|
"json": {
|
|
2773
2718
|
"description": "Format output as json.",
|
|
@@ -2800,16 +2745,52 @@
|
|
|
2800
2745
|
"multiple": false,
|
|
2801
2746
|
"type": "option"
|
|
2802
2747
|
},
|
|
2803
|
-
"
|
|
2804
|
-
"description": "
|
|
2805
|
-
"name": "
|
|
2806
|
-
"
|
|
2807
|
-
"
|
|
2748
|
+
"name": {
|
|
2749
|
+
"description": "New display name",
|
|
2750
|
+
"name": "name",
|
|
2751
|
+
"hasDynamicHelp": false,
|
|
2752
|
+
"multiple": false,
|
|
2753
|
+
"type": "option"
|
|
2754
|
+
},
|
|
2755
|
+
"description": {
|
|
2756
|
+
"description": "Description for local catalog",
|
|
2757
|
+
"name": "description",
|
|
2758
|
+
"hasDynamicHelp": false,
|
|
2759
|
+
"multiple": false,
|
|
2760
|
+
"type": "option"
|
|
2761
|
+
},
|
|
2762
|
+
"default-model": {
|
|
2763
|
+
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
2764
|
+
"name": "default-model",
|
|
2765
|
+
"hasDynamicHelp": false,
|
|
2766
|
+
"multiple": false,
|
|
2767
|
+
"type": "option"
|
|
2768
|
+
},
|
|
2769
|
+
"formula": {
|
|
2770
|
+
"description": "New boolean formula (synthetic faces only)",
|
|
2771
|
+
"name": "formula",
|
|
2772
|
+
"hasDynamicHelp": false,
|
|
2773
|
+
"multiple": false,
|
|
2774
|
+
"type": "option"
|
|
2775
|
+
},
|
|
2776
|
+
"attr": {
|
|
2777
|
+
"description": "Update attribute KEY=VALUE (repeatable)",
|
|
2778
|
+
"name": "attr",
|
|
2779
|
+
"hasDynamicHelp": false,
|
|
2780
|
+
"multiple": true,
|
|
2781
|
+
"type": "option"
|
|
2782
|
+
},
|
|
2783
|
+
"tool": {
|
|
2784
|
+
"description": "Tool names to set (replaces list, repeatable)",
|
|
2785
|
+
"name": "tool",
|
|
2786
|
+
"hasDynamicHelp": false,
|
|
2787
|
+
"multiple": true,
|
|
2788
|
+
"type": "option"
|
|
2808
2789
|
}
|
|
2809
2790
|
},
|
|
2810
2791
|
"hasDynamicHelp": false,
|
|
2811
2792
|
"hiddenAliases": [],
|
|
2812
|
-
"id": "
|
|
2793
|
+
"id": "face:update",
|
|
2813
2794
|
"pluginAlias": "faces-cli",
|
|
2814
2795
|
"pluginName": "faces-cli",
|
|
2815
2796
|
"pluginType": "core",
|
|
@@ -2819,20 +2800,20 @@
|
|
|
2819
2800
|
"relativePath": [
|
|
2820
2801
|
"dist",
|
|
2821
2802
|
"commands",
|
|
2822
|
-
"
|
|
2823
|
-
"
|
|
2803
|
+
"face",
|
|
2804
|
+
"update.js"
|
|
2824
2805
|
]
|
|
2825
2806
|
},
|
|
2826
|
-
"
|
|
2807
|
+
"face:upload": {
|
|
2827
2808
|
"aliases": [],
|
|
2828
2809
|
"args": {
|
|
2829
|
-
"
|
|
2830
|
-
"description": "
|
|
2831
|
-
"name": "
|
|
2810
|
+
"face_id": {
|
|
2811
|
+
"description": "Face alias",
|
|
2812
|
+
"name": "face_id",
|
|
2832
2813
|
"required": true
|
|
2833
2814
|
}
|
|
2834
2815
|
},
|
|
2835
|
-
"description": "
|
|
2816
|
+
"description": "Upload a file (text/PDF/audio/video) to a face",
|
|
2836
2817
|
"flags": {
|
|
2837
2818
|
"json": {
|
|
2838
2819
|
"description": "Format output as json.",
|
|
@@ -2865,30 +2846,49 @@
|
|
|
2865
2846
|
"multiple": false,
|
|
2866
2847
|
"type": "option"
|
|
2867
2848
|
},
|
|
2868
|
-
"
|
|
2869
|
-
"description": "
|
|
2870
|
-
"name": "
|
|
2849
|
+
"file": {
|
|
2850
|
+
"description": "File to upload",
|
|
2851
|
+
"name": "file",
|
|
2852
|
+
"required": true,
|
|
2871
2853
|
"hasDynamicHelp": false,
|
|
2872
2854
|
"multiple": false,
|
|
2873
2855
|
"type": "option"
|
|
2874
2856
|
},
|
|
2875
|
-
"
|
|
2876
|
-
"description": "
|
|
2877
|
-
"name": "
|
|
2857
|
+
"kind": {
|
|
2858
|
+
"description": "Upload kind: document or thread",
|
|
2859
|
+
"name": "kind",
|
|
2860
|
+
"default": "document",
|
|
2878
2861
|
"hasDynamicHelp": false,
|
|
2879
2862
|
"multiple": false,
|
|
2863
|
+
"options": [
|
|
2864
|
+
"document",
|
|
2865
|
+
"thread"
|
|
2866
|
+
],
|
|
2880
2867
|
"type": "option"
|
|
2881
2868
|
},
|
|
2882
|
-
"
|
|
2883
|
-
"description": "
|
|
2884
|
-
"name": "
|
|
2885
|
-
"
|
|
2886
|
-
"
|
|
2869
|
+
"perspective": {
|
|
2870
|
+
"description": "Perspective (document only)",
|
|
2871
|
+
"name": "perspective",
|
|
2872
|
+
"default": "third-person",
|
|
2873
|
+
"hasDynamicHelp": false,
|
|
2874
|
+
"multiple": false,
|
|
2875
|
+
"options": [
|
|
2876
|
+
"first-person",
|
|
2877
|
+
"third-person"
|
|
2878
|
+
],
|
|
2879
|
+
"type": "option"
|
|
2880
|
+
},
|
|
2881
|
+
"face-speaker": {
|
|
2882
|
+
"description": "Speaker name to map to the face (thread only). If omitted, first speaker is used.",
|
|
2883
|
+
"name": "face-speaker",
|
|
2884
|
+
"hasDynamicHelp": false,
|
|
2885
|
+
"multiple": false,
|
|
2886
|
+
"type": "option"
|
|
2887
2887
|
}
|
|
2888
2888
|
},
|
|
2889
2889
|
"hasDynamicHelp": false,
|
|
2890
2890
|
"hiddenAliases": [],
|
|
2891
|
-
"id": "
|
|
2891
|
+
"id": "face:upload",
|
|
2892
2892
|
"pluginAlias": "faces-cli",
|
|
2893
2893
|
"pluginName": "faces-cli",
|
|
2894
2894
|
"pluginType": "core",
|
|
@@ -2898,8 +2898,8 @@
|
|
|
2898
2898
|
"relativePath": [
|
|
2899
2899
|
"dist",
|
|
2900
2900
|
"commands",
|
|
2901
|
-
"
|
|
2902
|
-
"
|
|
2901
|
+
"face",
|
|
2902
|
+
"upload.js"
|
|
2903
2903
|
]
|
|
2904
2904
|
},
|
|
2905
2905
|
"compile:doc:create": {
|
|
@@ -4231,5 +4231,5 @@
|
|
|
4231
4231
|
]
|
|
4232
4232
|
}
|
|
4233
4233
|
},
|
|
4234
|
-
"version": "1.5.
|
|
4234
|
+
"version": "1.5.11"
|
|
4235
4235
|
}
|