faces-cli 1.6.18 → 1.7.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/catalog/doctor.js +17 -2
- package/dist/commands/chat/chat.d.ts +3 -1
- package/dist/commands/chat/chat.js +60 -118
- package/dist/commands/chat/thread.d.ts +4 -3
- package/dist/commands/chat/thread.js +62 -37
- package/dist/routing.d.ts +19 -0
- package/dist/routing.js +116 -0
- package/oclif.manifest.json +552 -552
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -120,23 +120,10 @@
|
|
|
120
120
|
"state.js"
|
|
121
121
|
]
|
|
122
122
|
},
|
|
123
|
-
"
|
|
123
|
+
"catalog:backup": {
|
|
124
124
|
"aliases": [],
|
|
125
|
-
"args": {
|
|
126
|
-
|
|
127
|
-
"description": "OAuth provider to connect",
|
|
128
|
-
"name": "provider",
|
|
129
|
-
"options": [
|
|
130
|
-
"openai"
|
|
131
|
-
],
|
|
132
|
-
"required": true
|
|
133
|
-
}
|
|
134
|
-
},
|
|
135
|
-
"description": "Connect your ChatGPT account to Faces via device-code authorization (Subscription Connect plan)",
|
|
136
|
-
"examples": [
|
|
137
|
-
"<%= config.bin %> auth connect openai",
|
|
138
|
-
"<%= config.bin %> auth connect openai --json"
|
|
139
|
-
],
|
|
125
|
+
"args": {},
|
|
126
|
+
"description": "Snapshot all faces, teams, and source material for migration",
|
|
140
127
|
"flags": {
|
|
141
128
|
"json": {
|
|
142
129
|
"description": "Format output as json.",
|
|
@@ -172,7 +159,7 @@
|
|
|
172
159
|
},
|
|
173
160
|
"hasDynamicHelp": false,
|
|
174
161
|
"hiddenAliases": [],
|
|
175
|
-
"id": "
|
|
162
|
+
"id": "catalog:backup",
|
|
176
163
|
"pluginAlias": "faces-cli",
|
|
177
164
|
"pluginName": "faces-cli",
|
|
178
165
|
"pluginType": "core",
|
|
@@ -182,18 +169,14 @@
|
|
|
182
169
|
"relativePath": [
|
|
183
170
|
"dist",
|
|
184
171
|
"commands",
|
|
185
|
-
"
|
|
186
|
-
"
|
|
172
|
+
"catalog",
|
|
173
|
+
"backup.js"
|
|
187
174
|
]
|
|
188
175
|
},
|
|
189
|
-
"
|
|
176
|
+
"catalog:doctor": {
|
|
190
177
|
"aliases": [],
|
|
191
178
|
"args": {},
|
|
192
|
-
"description": "
|
|
193
|
-
"examples": [
|
|
194
|
-
"<%= config.bin %> auth connections",
|
|
195
|
-
"<%= config.bin %> auth connections --json"
|
|
196
|
-
],
|
|
179
|
+
"description": "Diagnose and repair the local face and team catalog",
|
|
197
180
|
"flags": {
|
|
198
181
|
"json": {
|
|
199
182
|
"description": "Format output as json.",
|
|
@@ -225,11 +208,23 @@
|
|
|
225
208
|
"hasDynamicHelp": false,
|
|
226
209
|
"multiple": false,
|
|
227
210
|
"type": "option"
|
|
211
|
+
},
|
|
212
|
+
"fix": {
|
|
213
|
+
"description": "Rebuild missing or stale catalog entries from API",
|
|
214
|
+
"name": "fix",
|
|
215
|
+
"allowNo": false,
|
|
216
|
+
"type": "boolean"
|
|
217
|
+
},
|
|
218
|
+
"generate": {
|
|
219
|
+
"description": "Fix + generate missing descriptions via LLM",
|
|
220
|
+
"name": "generate",
|
|
221
|
+
"allowNo": false,
|
|
222
|
+
"type": "boolean"
|
|
228
223
|
}
|
|
229
224
|
},
|
|
230
225
|
"hasDynamicHelp": false,
|
|
231
226
|
"hiddenAliases": [],
|
|
232
|
-
"id": "
|
|
227
|
+
"id": "catalog:doctor",
|
|
233
228
|
"pluginAlias": "faces-cli",
|
|
234
229
|
"pluginName": "faces-cli",
|
|
235
230
|
"pluginType": "core",
|
|
@@ -239,26 +234,14 @@
|
|
|
239
234
|
"relativePath": [
|
|
240
235
|
"dist",
|
|
241
236
|
"commands",
|
|
242
|
-
"
|
|
243
|
-
"
|
|
237
|
+
"catalog",
|
|
238
|
+
"doctor.js"
|
|
244
239
|
]
|
|
245
240
|
},
|
|
246
|
-
"
|
|
241
|
+
"catalog:list": {
|
|
247
242
|
"aliases": [],
|
|
248
|
-
"args": {
|
|
249
|
-
|
|
250
|
-
"description": "OAuth provider to disconnect",
|
|
251
|
-
"name": "provider",
|
|
252
|
-
"options": [
|
|
253
|
-
"openai"
|
|
254
|
-
],
|
|
255
|
-
"required": true
|
|
256
|
-
}
|
|
257
|
-
},
|
|
258
|
-
"description": "Disconnect a linked OAuth provider account",
|
|
259
|
-
"examples": [
|
|
260
|
-
"<%= config.bin %> auth disconnect openai"
|
|
261
|
-
],
|
|
243
|
+
"args": {},
|
|
244
|
+
"description": "List all faces in the local catalog",
|
|
262
245
|
"flags": {
|
|
263
246
|
"json": {
|
|
264
247
|
"description": "Format output as json.",
|
|
@@ -294,7 +277,7 @@
|
|
|
294
277
|
},
|
|
295
278
|
"hasDynamicHelp": false,
|
|
296
279
|
"hiddenAliases": [],
|
|
297
|
-
"id": "
|
|
280
|
+
"id": "catalog:list",
|
|
298
281
|
"pluginAlias": "faces-cli",
|
|
299
282
|
"pluginName": "faces-cli",
|
|
300
283
|
"pluginType": "core",
|
|
@@ -304,14 +287,14 @@
|
|
|
304
287
|
"relativePath": [
|
|
305
288
|
"dist",
|
|
306
289
|
"commands",
|
|
307
|
-
"
|
|
308
|
-
"
|
|
290
|
+
"catalog",
|
|
291
|
+
"list.js"
|
|
309
292
|
]
|
|
310
293
|
},
|
|
311
|
-
"
|
|
294
|
+
"catalog:manyfaced": {
|
|
312
295
|
"aliases": [],
|
|
313
296
|
"args": {},
|
|
314
|
-
"description": "
|
|
297
|
+
"description": "Browse and install community manyfaced skills from github.com/facessh/manyfaced",
|
|
315
298
|
"flags": {
|
|
316
299
|
"json": {
|
|
317
300
|
"description": "Format output as json.",
|
|
@@ -344,26 +327,37 @@
|
|
|
344
327
|
"multiple": false,
|
|
345
328
|
"type": "option"
|
|
346
329
|
},
|
|
347
|
-
"
|
|
348
|
-
"description": "
|
|
349
|
-
"name": "
|
|
350
|
-
"required": true,
|
|
330
|
+
"skill": {
|
|
331
|
+
"description": "Show details for a specific skill",
|
|
332
|
+
"name": "skill",
|
|
351
333
|
"hasDynamicHelp": false,
|
|
352
334
|
"multiple": false,
|
|
353
335
|
"type": "option"
|
|
354
336
|
},
|
|
355
|
-
"
|
|
356
|
-
"description": "
|
|
357
|
-
"name": "
|
|
358
|
-
"
|
|
337
|
+
"install": {
|
|
338
|
+
"description": "Install a skill by name",
|
|
339
|
+
"name": "install",
|
|
340
|
+
"hasDynamicHelp": false,
|
|
341
|
+
"multiple": false,
|
|
342
|
+
"type": "option"
|
|
343
|
+
},
|
|
344
|
+
"skills-dir": {
|
|
345
|
+
"description": "Directory to install skills into (required for --install)",
|
|
346
|
+
"name": "skills-dir",
|
|
359
347
|
"hasDynamicHelp": false,
|
|
360
348
|
"multiple": false,
|
|
361
349
|
"type": "option"
|
|
350
|
+
},
|
|
351
|
+
"refresh": {
|
|
352
|
+
"description": "Force refresh the skill index (ignore cache)",
|
|
353
|
+
"name": "refresh",
|
|
354
|
+
"allowNo": false,
|
|
355
|
+
"type": "boolean"
|
|
362
356
|
}
|
|
363
357
|
},
|
|
364
358
|
"hasDynamicHelp": false,
|
|
365
359
|
"hiddenAliases": [],
|
|
366
|
-
"id": "
|
|
360
|
+
"id": "catalog:manyfaced",
|
|
367
361
|
"pluginAlias": "faces-cli",
|
|
368
362
|
"pluginName": "faces-cli",
|
|
369
363
|
"pluginType": "core",
|
|
@@ -373,14 +367,19 @@
|
|
|
373
367
|
"relativePath": [
|
|
374
368
|
"dist",
|
|
375
369
|
"commands",
|
|
376
|
-
"
|
|
377
|
-
"
|
|
370
|
+
"catalog",
|
|
371
|
+
"manyfaced.js"
|
|
378
372
|
]
|
|
379
373
|
},
|
|
380
|
-
"
|
|
374
|
+
"catalog:restore": {
|
|
381
375
|
"aliases": [],
|
|
382
|
-
"args": {
|
|
383
|
-
|
|
376
|
+
"args": {
|
|
377
|
+
"file": {
|
|
378
|
+
"description": "Backup file path (default: most recent in ~/.faces/backups/)",
|
|
379
|
+
"name": "file"
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
"description": "Restore faces, teams, and source material from a backup snapshot",
|
|
384
383
|
"flags": {
|
|
385
384
|
"json": {
|
|
386
385
|
"description": "Format output as json.",
|
|
@@ -412,11 +411,17 @@
|
|
|
412
411
|
"hasDynamicHelp": false,
|
|
413
412
|
"multiple": false,
|
|
414
413
|
"type": "option"
|
|
414
|
+
},
|
|
415
|
+
"compile": {
|
|
416
|
+
"description": "Run compile:all after restoring",
|
|
417
|
+
"name": "compile",
|
|
418
|
+
"allowNo": false,
|
|
419
|
+
"type": "boolean"
|
|
415
420
|
}
|
|
416
421
|
},
|
|
417
422
|
"hasDynamicHelp": false,
|
|
418
423
|
"hiddenAliases": [],
|
|
419
|
-
"id": "
|
|
424
|
+
"id": "catalog:restore",
|
|
420
425
|
"pluginAlias": "faces-cli",
|
|
421
426
|
"pluginName": "faces-cli",
|
|
422
427
|
"pluginType": "core",
|
|
@@ -426,14 +431,27 @@
|
|
|
426
431
|
"relativePath": [
|
|
427
432
|
"dist",
|
|
428
433
|
"commands",
|
|
429
|
-
"
|
|
430
|
-
"
|
|
434
|
+
"catalog",
|
|
435
|
+
"restore.js"
|
|
431
436
|
]
|
|
432
437
|
},
|
|
433
|
-
"auth:
|
|
438
|
+
"auth:connect": {
|
|
434
439
|
"aliases": [],
|
|
435
|
-
"args": {
|
|
436
|
-
|
|
440
|
+
"args": {
|
|
441
|
+
"provider": {
|
|
442
|
+
"description": "OAuth provider to connect",
|
|
443
|
+
"name": "provider",
|
|
444
|
+
"options": [
|
|
445
|
+
"openai"
|
|
446
|
+
],
|
|
447
|
+
"required": true
|
|
448
|
+
}
|
|
449
|
+
},
|
|
450
|
+
"description": "Connect your ChatGPT account to Faces via device-code authorization (Subscription Connect plan)",
|
|
451
|
+
"examples": [
|
|
452
|
+
"<%= config.bin %> auth connect openai",
|
|
453
|
+
"<%= config.bin %> auth connect openai --json"
|
|
454
|
+
],
|
|
437
455
|
"flags": {
|
|
438
456
|
"json": {
|
|
439
457
|
"description": "Format output as json.",
|
|
@@ -469,7 +487,7 @@
|
|
|
469
487
|
},
|
|
470
488
|
"hasDynamicHelp": false,
|
|
471
489
|
"hiddenAliases": [],
|
|
472
|
-
"id": "auth:
|
|
490
|
+
"id": "auth:connect",
|
|
473
491
|
"pluginAlias": "faces-cli",
|
|
474
492
|
"pluginName": "faces-cli",
|
|
475
493
|
"pluginType": "core",
|
|
@@ -480,13 +498,17 @@
|
|
|
480
498
|
"dist",
|
|
481
499
|
"commands",
|
|
482
500
|
"auth",
|
|
483
|
-
"
|
|
501
|
+
"connect.js"
|
|
484
502
|
]
|
|
485
503
|
},
|
|
486
|
-
"auth:
|
|
504
|
+
"auth:connections": {
|
|
487
505
|
"aliases": [],
|
|
488
506
|
"args": {},
|
|
489
|
-
"description": "
|
|
507
|
+
"description": "List connected OAuth provider accounts",
|
|
508
|
+
"examples": [
|
|
509
|
+
"<%= config.bin %> auth connections",
|
|
510
|
+
"<%= config.bin %> auth connections --json"
|
|
511
|
+
],
|
|
490
512
|
"flags": {
|
|
491
513
|
"json": {
|
|
492
514
|
"description": "Format output as json.",
|
|
@@ -518,54 +540,11 @@
|
|
|
518
540
|
"hasDynamicHelp": false,
|
|
519
541
|
"multiple": false,
|
|
520
542
|
"type": "option"
|
|
521
|
-
},
|
|
522
|
-
"email": {
|
|
523
|
-
"description": "Email address",
|
|
524
|
-
"name": "email",
|
|
525
|
-
"required": true,
|
|
526
|
-
"hasDynamicHelp": false,
|
|
527
|
-
"multiple": false,
|
|
528
|
-
"type": "option"
|
|
529
|
-
},
|
|
530
|
-
"password": {
|
|
531
|
-
"description": "Password",
|
|
532
|
-
"name": "password",
|
|
533
|
-
"required": true,
|
|
534
|
-
"hasDynamicHelp": false,
|
|
535
|
-
"multiple": false,
|
|
536
|
-
"type": "option"
|
|
537
|
-
},
|
|
538
|
-
"username": {
|
|
539
|
-
"description": "Username (lowercase, dashes, numbers)",
|
|
540
|
-
"name": "username",
|
|
541
|
-
"required": true,
|
|
542
|
-
"hasDynamicHelp": false,
|
|
543
|
-
"multiple": false,
|
|
544
|
-
"type": "option"
|
|
545
|
-
},
|
|
546
|
-
"invite-key": {
|
|
547
|
-
"description": "Invite key (if required)",
|
|
548
|
-
"name": "invite-key",
|
|
549
|
-
"hasDynamicHelp": false,
|
|
550
|
-
"multiple": false,
|
|
551
|
-
"type": "option"
|
|
552
|
-
},
|
|
553
|
-
"plan": {
|
|
554
|
-
"description": "Plan to subscribe to: \"free\" ($5 activation) or \"connect\" ($17/mo, no activation fee)",
|
|
555
|
-
"name": "plan",
|
|
556
|
-
"default": "free",
|
|
557
|
-
"hasDynamicHelp": false,
|
|
558
|
-
"multiple": false,
|
|
559
|
-
"options": [
|
|
560
|
-
"free",
|
|
561
|
-
"connect"
|
|
562
|
-
],
|
|
563
|
-
"type": "option"
|
|
564
543
|
}
|
|
565
544
|
},
|
|
566
545
|
"hasDynamicHelp": false,
|
|
567
546
|
"hiddenAliases": [],
|
|
568
|
-
"id": "auth:
|
|
547
|
+
"id": "auth:connections",
|
|
569
548
|
"pluginAlias": "faces-cli",
|
|
570
549
|
"pluginName": "faces-cli",
|
|
571
550
|
"pluginType": "core",
|
|
@@ -576,13 +555,25 @@
|
|
|
576
555
|
"dist",
|
|
577
556
|
"commands",
|
|
578
557
|
"auth",
|
|
579
|
-
"
|
|
558
|
+
"connections.js"
|
|
580
559
|
]
|
|
581
560
|
},
|
|
582
|
-
"auth:
|
|
561
|
+
"auth:disconnect": {
|
|
583
562
|
"aliases": [],
|
|
584
|
-
"args": {
|
|
585
|
-
|
|
563
|
+
"args": {
|
|
564
|
+
"provider": {
|
|
565
|
+
"description": "OAuth provider to disconnect",
|
|
566
|
+
"name": "provider",
|
|
567
|
+
"options": [
|
|
568
|
+
"openai"
|
|
569
|
+
],
|
|
570
|
+
"required": true
|
|
571
|
+
}
|
|
572
|
+
},
|
|
573
|
+
"description": "Disconnect a linked OAuth provider account",
|
|
574
|
+
"examples": [
|
|
575
|
+
"<%= config.bin %> auth disconnect openai"
|
|
576
|
+
],
|
|
586
577
|
"flags": {
|
|
587
578
|
"json": {
|
|
588
579
|
"description": "Format output as json.",
|
|
@@ -618,7 +609,7 @@
|
|
|
618
609
|
},
|
|
619
610
|
"hasDynamicHelp": false,
|
|
620
611
|
"hiddenAliases": [],
|
|
621
|
-
"id": "auth:
|
|
612
|
+
"id": "auth:disconnect",
|
|
622
613
|
"pluginAlias": "faces-cli",
|
|
623
614
|
"pluginName": "faces-cli",
|
|
624
615
|
"pluginType": "core",
|
|
@@ -629,13 +620,13 @@
|
|
|
629
620
|
"dist",
|
|
630
621
|
"commands",
|
|
631
622
|
"auth",
|
|
632
|
-
"
|
|
623
|
+
"disconnect.js"
|
|
633
624
|
]
|
|
634
625
|
},
|
|
635
|
-
"
|
|
626
|
+
"auth:login": {
|
|
636
627
|
"aliases": [],
|
|
637
628
|
"args": {},
|
|
638
|
-
"description": "
|
|
629
|
+
"description": "Login and save JWT credentials",
|
|
639
630
|
"flags": {
|
|
640
631
|
"json": {
|
|
641
632
|
"description": "Format output as json.",
|
|
@@ -667,11 +658,27 @@
|
|
|
667
658
|
"hasDynamicHelp": false,
|
|
668
659
|
"multiple": false,
|
|
669
660
|
"type": "option"
|
|
661
|
+
},
|
|
662
|
+
"email": {
|
|
663
|
+
"description": "Account email",
|
|
664
|
+
"name": "email",
|
|
665
|
+
"required": true,
|
|
666
|
+
"hasDynamicHelp": false,
|
|
667
|
+
"multiple": false,
|
|
668
|
+
"type": "option"
|
|
669
|
+
},
|
|
670
|
+
"password": {
|
|
671
|
+
"description": "Account password",
|
|
672
|
+
"name": "password",
|
|
673
|
+
"required": true,
|
|
674
|
+
"hasDynamicHelp": false,
|
|
675
|
+
"multiple": false,
|
|
676
|
+
"type": "option"
|
|
670
677
|
}
|
|
671
678
|
},
|
|
672
679
|
"hasDynamicHelp": false,
|
|
673
680
|
"hiddenAliases": [],
|
|
674
|
-
"id": "
|
|
681
|
+
"id": "auth:login",
|
|
675
682
|
"pluginAlias": "faces-cli",
|
|
676
683
|
"pluginName": "faces-cli",
|
|
677
684
|
"pluginType": "core",
|
|
@@ -681,14 +688,14 @@
|
|
|
681
688
|
"relativePath": [
|
|
682
689
|
"dist",
|
|
683
690
|
"commands",
|
|
684
|
-
"
|
|
685
|
-
"
|
|
691
|
+
"auth",
|
|
692
|
+
"login.js"
|
|
686
693
|
]
|
|
687
694
|
},
|
|
688
|
-
"
|
|
695
|
+
"auth:logout": {
|
|
689
696
|
"aliases": [],
|
|
690
697
|
"args": {},
|
|
691
|
-
"description": "
|
|
698
|
+
"description": "Clear saved credentials",
|
|
692
699
|
"flags": {
|
|
693
700
|
"json": {
|
|
694
701
|
"description": "Format output as json.",
|
|
@@ -720,23 +727,11 @@
|
|
|
720
727
|
"hasDynamicHelp": false,
|
|
721
728
|
"multiple": false,
|
|
722
729
|
"type": "option"
|
|
723
|
-
},
|
|
724
|
-
"fix": {
|
|
725
|
-
"description": "Rebuild missing or stale catalog entries from API",
|
|
726
|
-
"name": "fix",
|
|
727
|
-
"allowNo": false,
|
|
728
|
-
"type": "boolean"
|
|
729
|
-
},
|
|
730
|
-
"generate": {
|
|
731
|
-
"description": "Fix + generate missing descriptions via LLM",
|
|
732
|
-
"name": "generate",
|
|
733
|
-
"allowNo": false,
|
|
734
|
-
"type": "boolean"
|
|
735
730
|
}
|
|
736
731
|
},
|
|
737
732
|
"hasDynamicHelp": false,
|
|
738
733
|
"hiddenAliases": [],
|
|
739
|
-
"id": "
|
|
734
|
+
"id": "auth:logout",
|
|
740
735
|
"pluginAlias": "faces-cli",
|
|
741
736
|
"pluginName": "faces-cli",
|
|
742
737
|
"pluginType": "core",
|
|
@@ -746,14 +741,14 @@
|
|
|
746
741
|
"relativePath": [
|
|
747
742
|
"dist",
|
|
748
743
|
"commands",
|
|
749
|
-
"
|
|
750
|
-
"
|
|
744
|
+
"auth",
|
|
745
|
+
"logout.js"
|
|
751
746
|
]
|
|
752
747
|
},
|
|
753
|
-
"
|
|
748
|
+
"auth:refresh": {
|
|
754
749
|
"aliases": [],
|
|
755
750
|
"args": {},
|
|
756
|
-
"description": "
|
|
751
|
+
"description": "Exchange current JWT for a fresh one",
|
|
757
752
|
"flags": {
|
|
758
753
|
"json": {
|
|
759
754
|
"description": "Format output as json.",
|
|
@@ -789,7 +784,7 @@
|
|
|
789
784
|
},
|
|
790
785
|
"hasDynamicHelp": false,
|
|
791
786
|
"hiddenAliases": [],
|
|
792
|
-
"id": "
|
|
787
|
+
"id": "auth:refresh",
|
|
793
788
|
"pluginAlias": "faces-cli",
|
|
794
789
|
"pluginName": "faces-cli",
|
|
795
790
|
"pluginType": "core",
|
|
@@ -799,14 +794,14 @@
|
|
|
799
794
|
"relativePath": [
|
|
800
795
|
"dist",
|
|
801
796
|
"commands",
|
|
802
|
-
"
|
|
803
|
-
"
|
|
797
|
+
"auth",
|
|
798
|
+
"refresh.js"
|
|
804
799
|
]
|
|
805
800
|
},
|
|
806
|
-
"
|
|
801
|
+
"auth:register": {
|
|
807
802
|
"aliases": [],
|
|
808
803
|
"args": {},
|
|
809
|
-
"description": "
|
|
804
|
+
"description": "Create a new Faces account",
|
|
810
805
|
"flags": {
|
|
811
806
|
"json": {
|
|
812
807
|
"description": "Format output as json.",
|
|
@@ -839,37 +834,53 @@
|
|
|
839
834
|
"multiple": false,
|
|
840
835
|
"type": "option"
|
|
841
836
|
},
|
|
842
|
-
"
|
|
843
|
-
"description": "
|
|
844
|
-
"name": "
|
|
837
|
+
"email": {
|
|
838
|
+
"description": "Email address",
|
|
839
|
+
"name": "email",
|
|
840
|
+
"required": true,
|
|
845
841
|
"hasDynamicHelp": false,
|
|
846
842
|
"multiple": false,
|
|
847
843
|
"type": "option"
|
|
848
844
|
},
|
|
849
|
-
"
|
|
850
|
-
"description": "
|
|
851
|
-
"name": "
|
|
845
|
+
"password": {
|
|
846
|
+
"description": "Password",
|
|
847
|
+
"name": "password",
|
|
848
|
+
"required": true,
|
|
852
849
|
"hasDynamicHelp": false,
|
|
853
850
|
"multiple": false,
|
|
854
851
|
"type": "option"
|
|
855
852
|
},
|
|
856
|
-
"
|
|
857
|
-
"description": "
|
|
858
|
-
"name": "
|
|
853
|
+
"username": {
|
|
854
|
+
"description": "Username (lowercase, dashes, numbers)",
|
|
855
|
+
"name": "username",
|
|
856
|
+
"required": true,
|
|
859
857
|
"hasDynamicHelp": false,
|
|
860
858
|
"multiple": false,
|
|
861
859
|
"type": "option"
|
|
862
860
|
},
|
|
863
|
-
"
|
|
864
|
-
"description": "
|
|
865
|
-
"name": "
|
|
866
|
-
"
|
|
867
|
-
"
|
|
861
|
+
"invite-key": {
|
|
862
|
+
"description": "Invite key (if required)",
|
|
863
|
+
"name": "invite-key",
|
|
864
|
+
"hasDynamicHelp": false,
|
|
865
|
+
"multiple": false,
|
|
866
|
+
"type": "option"
|
|
867
|
+
},
|
|
868
|
+
"plan": {
|
|
869
|
+
"description": "Plan to subscribe to: \"free\" ($5 activation) or \"connect\" ($17/mo, no activation fee)",
|
|
870
|
+
"name": "plan",
|
|
871
|
+
"default": "free",
|
|
872
|
+
"hasDynamicHelp": false,
|
|
873
|
+
"multiple": false,
|
|
874
|
+
"options": [
|
|
875
|
+
"free",
|
|
876
|
+
"connect"
|
|
877
|
+
],
|
|
878
|
+
"type": "option"
|
|
868
879
|
}
|
|
869
880
|
},
|
|
870
881
|
"hasDynamicHelp": false,
|
|
871
882
|
"hiddenAliases": [],
|
|
872
|
-
"id": "
|
|
883
|
+
"id": "auth:register",
|
|
873
884
|
"pluginAlias": "faces-cli",
|
|
874
885
|
"pluginName": "faces-cli",
|
|
875
886
|
"pluginType": "core",
|
|
@@ -879,19 +890,14 @@
|
|
|
879
890
|
"relativePath": [
|
|
880
891
|
"dist",
|
|
881
892
|
"commands",
|
|
882
|
-
"
|
|
883
|
-
"
|
|
893
|
+
"auth",
|
|
894
|
+
"register.js"
|
|
884
895
|
]
|
|
885
896
|
},
|
|
886
|
-
"
|
|
897
|
+
"auth:whoami": {
|
|
887
898
|
"aliases": [],
|
|
888
|
-
"args": {
|
|
889
|
-
|
|
890
|
-
"description": "Backup file path (default: most recent in ~/.faces/backups/)",
|
|
891
|
-
"name": "file"
|
|
892
|
-
}
|
|
893
|
-
},
|
|
894
|
-
"description": "Restore faces, teams, and source material from a backup snapshot",
|
|
899
|
+
"args": {},
|
|
900
|
+
"description": "Print current user profile and auth diagnostic",
|
|
895
901
|
"flags": {
|
|
896
902
|
"json": {
|
|
897
903
|
"description": "Format output as json.",
|
|
@@ -923,17 +929,11 @@
|
|
|
923
929
|
"hasDynamicHelp": false,
|
|
924
930
|
"multiple": false,
|
|
925
931
|
"type": "option"
|
|
926
|
-
},
|
|
927
|
-
"compile": {
|
|
928
|
-
"description": "Run compile:all after restoring",
|
|
929
|
-
"name": "compile",
|
|
930
|
-
"allowNo": false,
|
|
931
|
-
"type": "boolean"
|
|
932
932
|
}
|
|
933
933
|
},
|
|
934
934
|
"hasDynamicHelp": false,
|
|
935
935
|
"hiddenAliases": [],
|
|
936
|
-
"id": "
|
|
936
|
+
"id": "auth:whoami",
|
|
937
937
|
"pluginAlias": "faces-cli",
|
|
938
938
|
"pluginName": "faces-cli",
|
|
939
939
|
"pluginType": "core",
|
|
@@ -943,8 +943,8 @@
|
|
|
943
943
|
"relativePath": [
|
|
944
944
|
"dist",
|
|
945
945
|
"commands",
|
|
946
|
-
"
|
|
947
|
-
"
|
|
946
|
+
"auth",
|
|
947
|
+
"whoami.js"
|
|
948
948
|
]
|
|
949
949
|
},
|
|
950
950
|
"billing:balance": {
|
|
@@ -1367,16 +1367,10 @@
|
|
|
1367
1367
|
"usage.js"
|
|
1368
1368
|
]
|
|
1369
1369
|
},
|
|
1370
|
-
"
|
|
1370
|
+
"compile:all": {
|
|
1371
1371
|
"aliases": [],
|
|
1372
|
-
"args": {
|
|
1373
|
-
|
|
1374
|
-
"description": "Face alias (or alias@model)",
|
|
1375
|
-
"name": "face_username",
|
|
1376
|
-
"required": true
|
|
1377
|
-
}
|
|
1378
|
-
},
|
|
1379
|
-
"description": "Chat via a face. Auto-routes to the correct API endpoint based on model provider.",
|
|
1372
|
+
"args": {},
|
|
1373
|
+
"description": "Compile all uncompiled documents and threads across all faces",
|
|
1380
1374
|
"flags": {
|
|
1381
1375
|
"json": {
|
|
1382
1376
|
"description": "Format output as json.",
|
|
@@ -1409,72 +1403,18 @@
|
|
|
1409
1403
|
"multiple": false,
|
|
1410
1404
|
"type": "option"
|
|
1411
1405
|
},
|
|
1412
|
-
"
|
|
1413
|
-
"
|
|
1414
|
-
"
|
|
1415
|
-
"
|
|
1416
|
-
"required": false,
|
|
1417
|
-
"hasDynamicHelp": false,
|
|
1418
|
-
"multiple": true,
|
|
1419
|
-
"type": "option"
|
|
1420
|
-
},
|
|
1421
|
-
"llm": {
|
|
1422
|
-
"description": "LLM override (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
1423
|
-
"name": "llm",
|
|
1424
|
-
"hasDynamicHelp": false,
|
|
1425
|
-
"multiple": false,
|
|
1426
|
-
"type": "option"
|
|
1427
|
-
},
|
|
1428
|
-
"system": {
|
|
1429
|
-
"description": "System prompt / instructions",
|
|
1430
|
-
"name": "system",
|
|
1431
|
-
"hasDynamicHelp": false,
|
|
1432
|
-
"multiple": false,
|
|
1433
|
-
"type": "option"
|
|
1434
|
-
},
|
|
1435
|
-
"stream": {
|
|
1436
|
-
"description": "Stream the response",
|
|
1437
|
-
"name": "stream",
|
|
1438
|
-
"allowNo": false,
|
|
1439
|
-
"type": "boolean"
|
|
1440
|
-
},
|
|
1441
|
-
"max-tokens": {
|
|
1442
|
-
"description": "Max tokens",
|
|
1443
|
-
"name": "max-tokens",
|
|
1444
|
-
"hasDynamicHelp": false,
|
|
1445
|
-
"multiple": false,
|
|
1446
|
-
"type": "option"
|
|
1447
|
-
},
|
|
1448
|
-
"temperature": {
|
|
1449
|
-
"description": "Temperature (0.0-2.0)",
|
|
1450
|
-
"name": "temperature",
|
|
1451
|
-
"hasDynamicHelp": false,
|
|
1452
|
-
"multiple": false,
|
|
1453
|
-
"type": "option"
|
|
1454
|
-
},
|
|
1455
|
-
"file": {
|
|
1456
|
-
"description": "Read message from file",
|
|
1457
|
-
"name": "file",
|
|
1406
|
+
"timeout": {
|
|
1407
|
+
"description": "Per-item compile timeout in seconds (default: 600)",
|
|
1408
|
+
"name": "timeout",
|
|
1409
|
+
"default": 600,
|
|
1458
1410
|
"hasDynamicHelp": false,
|
|
1459
1411
|
"multiple": false,
|
|
1460
1412
|
"type": "option"
|
|
1461
|
-
},
|
|
1462
|
-
"responses": {
|
|
1463
|
-
"description": "Use OpenAI Responses API instead of Chat Completions",
|
|
1464
|
-
"name": "responses",
|
|
1465
|
-
"allowNo": false,
|
|
1466
|
-
"type": "boolean"
|
|
1467
|
-
},
|
|
1468
|
-
"oauth-only": {
|
|
1469
|
-
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
1470
|
-
"name": "oauth-only",
|
|
1471
|
-
"allowNo": false,
|
|
1472
|
-
"type": "boolean"
|
|
1473
1413
|
}
|
|
1474
1414
|
},
|
|
1475
1415
|
"hasDynamicHelp": false,
|
|
1476
1416
|
"hiddenAliases": [],
|
|
1477
|
-
"id": "
|
|
1417
|
+
"id": "compile:all",
|
|
1478
1418
|
"pluginAlias": "faces-cli",
|
|
1479
1419
|
"pluginName": "faces-cli",
|
|
1480
1420
|
"pluginType": "core",
|
|
@@ -1484,20 +1424,20 @@
|
|
|
1484
1424
|
"relativePath": [
|
|
1485
1425
|
"dist",
|
|
1486
1426
|
"commands",
|
|
1487
|
-
"
|
|
1488
|
-
"
|
|
1427
|
+
"compile",
|
|
1428
|
+
"all.js"
|
|
1489
1429
|
]
|
|
1490
1430
|
},
|
|
1491
|
-
"
|
|
1431
|
+
"compile:import": {
|
|
1492
1432
|
"aliases": [],
|
|
1493
1433
|
"args": {
|
|
1494
|
-
"
|
|
1495
|
-
"description": "Face
|
|
1496
|
-
"name": "
|
|
1434
|
+
"face_id": {
|
|
1435
|
+
"description": "Face alias",
|
|
1436
|
+
"name": "face_id",
|
|
1497
1437
|
"required": true
|
|
1498
1438
|
}
|
|
1499
1439
|
},
|
|
1500
|
-
"description": "
|
|
1440
|
+
"description": "Import a YouTube video into a face via server-side download and transcription",
|
|
1501
1441
|
"flags": {
|
|
1502
1442
|
"json": {
|
|
1503
1443
|
"description": "Format output as json.",
|
|
@@ -1530,46 +1470,55 @@
|
|
|
1530
1470
|
"multiple": false,
|
|
1531
1471
|
"type": "option"
|
|
1532
1472
|
},
|
|
1533
|
-
"
|
|
1534
|
-
"
|
|
1535
|
-
"
|
|
1536
|
-
"name": "message",
|
|
1473
|
+
"url": {
|
|
1474
|
+
"description": "YouTube URL (youtube.com/watch?v=... or youtu.be/...)",
|
|
1475
|
+
"name": "url",
|
|
1537
1476
|
"required": true,
|
|
1538
1477
|
"hasDynamicHelp": false,
|
|
1539
|
-
"multiple":
|
|
1478
|
+
"multiple": false,
|
|
1540
1479
|
"type": "option"
|
|
1541
1480
|
},
|
|
1542
|
-
"
|
|
1543
|
-
"description": "
|
|
1544
|
-
"name": "
|
|
1481
|
+
"type": {
|
|
1482
|
+
"description": "\"document\" for solo talks, lectures, monologues; \"thread\" for interviews or multi-speaker conversations",
|
|
1483
|
+
"name": "type",
|
|
1484
|
+
"default": "document",
|
|
1545
1485
|
"hasDynamicHelp": false,
|
|
1546
1486
|
"multiple": false,
|
|
1487
|
+
"options": [
|
|
1488
|
+
"document",
|
|
1489
|
+
"thread"
|
|
1490
|
+
],
|
|
1547
1491
|
"type": "option"
|
|
1548
1492
|
},
|
|
1549
|
-
"
|
|
1550
|
-
"description": "
|
|
1551
|
-
"name": "
|
|
1552
|
-
"
|
|
1553
|
-
"
|
|
1493
|
+
"perspective": {
|
|
1494
|
+
"description": "\"first-person\" if the face is the speaker; \"third-person\" if the video is about the face",
|
|
1495
|
+
"name": "perspective",
|
|
1496
|
+
"default": "third-person",
|
|
1497
|
+
"hasDynamicHelp": false,
|
|
1498
|
+
"multiple": false,
|
|
1499
|
+
"options": [
|
|
1500
|
+
"first-person",
|
|
1501
|
+
"third-person"
|
|
1502
|
+
],
|
|
1503
|
+
"type": "option"
|
|
1554
1504
|
},
|
|
1555
|
-
"
|
|
1556
|
-
"description": "
|
|
1557
|
-
"name": "
|
|
1558
|
-
"default": 1024,
|
|
1505
|
+
"face-speaker": {
|
|
1506
|
+
"description": "For --type thread: AssemblyAI speaker label (e.g. \"A\") that corresponds to the face. Defaults to first detected speaker.",
|
|
1507
|
+
"name": "face-speaker",
|
|
1559
1508
|
"hasDynamicHelp": false,
|
|
1560
1509
|
"multiple": false,
|
|
1561
1510
|
"type": "option"
|
|
1562
1511
|
},
|
|
1563
|
-
"
|
|
1564
|
-
"description": "
|
|
1565
|
-
"name": "
|
|
1512
|
+
"no-wait": {
|
|
1513
|
+
"description": "Return immediately after import starts (do not poll for transcription). Prints the ID for manual polling.",
|
|
1514
|
+
"name": "no-wait",
|
|
1566
1515
|
"allowNo": false,
|
|
1567
1516
|
"type": "boolean"
|
|
1568
1517
|
}
|
|
1569
1518
|
},
|
|
1570
1519
|
"hasDynamicHelp": false,
|
|
1571
1520
|
"hiddenAliases": [],
|
|
1572
|
-
"id": "
|
|
1521
|
+
"id": "compile:import",
|
|
1573
1522
|
"pluginAlias": "faces-cli",
|
|
1574
1523
|
"pluginName": "faces-cli",
|
|
1575
1524
|
"pluginType": "core",
|
|
@@ -1579,20 +1528,73 @@
|
|
|
1579
1528
|
"relativePath": [
|
|
1580
1529
|
"dist",
|
|
1581
1530
|
"commands",
|
|
1582
|
-
"
|
|
1583
|
-
"
|
|
1584
|
-
]
|
|
1531
|
+
"compile",
|
|
1532
|
+
"import.js"
|
|
1533
|
+
]
|
|
1585
1534
|
},
|
|
1586
|
-
"
|
|
1535
|
+
"compile:stats": {
|
|
1536
|
+
"aliases": [],
|
|
1537
|
+
"args": {},
|
|
1538
|
+
"description": "Show compilation stats per face",
|
|
1539
|
+
"flags": {
|
|
1540
|
+
"json": {
|
|
1541
|
+
"description": "Format output as json.",
|
|
1542
|
+
"helpGroup": "GLOBAL",
|
|
1543
|
+
"name": "json",
|
|
1544
|
+
"allowNo": false,
|
|
1545
|
+
"type": "boolean"
|
|
1546
|
+
},
|
|
1547
|
+
"base-url": {
|
|
1548
|
+
"description": "API base URL",
|
|
1549
|
+
"env": "FACES_BASE_URL",
|
|
1550
|
+
"name": "base-url",
|
|
1551
|
+
"hasDynamicHelp": false,
|
|
1552
|
+
"multiple": false,
|
|
1553
|
+
"type": "option"
|
|
1554
|
+
},
|
|
1555
|
+
"token": {
|
|
1556
|
+
"description": "JWT bearer token",
|
|
1557
|
+
"env": "FACES_TOKEN",
|
|
1558
|
+
"name": "token",
|
|
1559
|
+
"hasDynamicHelp": false,
|
|
1560
|
+
"multiple": false,
|
|
1561
|
+
"type": "option"
|
|
1562
|
+
},
|
|
1563
|
+
"api-key": {
|
|
1564
|
+
"description": "API key",
|
|
1565
|
+
"env": "FACES_API_KEY",
|
|
1566
|
+
"name": "api-key",
|
|
1567
|
+
"hasDynamicHelp": false,
|
|
1568
|
+
"multiple": false,
|
|
1569
|
+
"type": "option"
|
|
1570
|
+
}
|
|
1571
|
+
},
|
|
1572
|
+
"hasDynamicHelp": false,
|
|
1573
|
+
"hiddenAliases": [],
|
|
1574
|
+
"id": "compile:stats",
|
|
1575
|
+
"pluginAlias": "faces-cli",
|
|
1576
|
+
"pluginName": "faces-cli",
|
|
1577
|
+
"pluginType": "core",
|
|
1578
|
+
"strict": true,
|
|
1579
|
+
"enableJsonFlag": true,
|
|
1580
|
+
"isESM": true,
|
|
1581
|
+
"relativePath": [
|
|
1582
|
+
"dist",
|
|
1583
|
+
"commands",
|
|
1584
|
+
"compile",
|
|
1585
|
+
"stats.js"
|
|
1586
|
+
]
|
|
1587
|
+
},
|
|
1588
|
+
"compile:upload": {
|
|
1587
1589
|
"aliases": [],
|
|
1588
1590
|
"args": {
|
|
1589
|
-
"
|
|
1590
|
-
"description": "Face
|
|
1591
|
-
"name": "
|
|
1591
|
+
"alias": {
|
|
1592
|
+
"description": "Face alias",
|
|
1593
|
+
"name": "alias",
|
|
1592
1594
|
"required": true
|
|
1593
1595
|
}
|
|
1594
1596
|
},
|
|
1595
|
-
"description": "
|
|
1597
|
+
"description": "Upload a file (text/PDF/audio/video) to compile into a face",
|
|
1596
1598
|
"flags": {
|
|
1597
1599
|
"json": {
|
|
1598
1600
|
"description": "Format output as json.",
|
|
@@ -1625,38 +1627,55 @@
|
|
|
1625
1627
|
"multiple": false,
|
|
1626
1628
|
"type": "option"
|
|
1627
1629
|
},
|
|
1628
|
-
"
|
|
1629
|
-
"
|
|
1630
|
-
"
|
|
1631
|
-
"name": "message",
|
|
1630
|
+
"file": {
|
|
1631
|
+
"description": "File to upload",
|
|
1632
|
+
"name": "file",
|
|
1632
1633
|
"required": true,
|
|
1633
1634
|
"hasDynamicHelp": false,
|
|
1634
1635
|
"multiple": false,
|
|
1635
1636
|
"type": "option"
|
|
1636
1637
|
},
|
|
1637
|
-
"
|
|
1638
|
-
"description": "
|
|
1639
|
-
"name": "
|
|
1638
|
+
"kind": {
|
|
1639
|
+
"description": "Upload kind: document or thread",
|
|
1640
|
+
"name": "kind",
|
|
1641
|
+
"default": "document",
|
|
1640
1642
|
"hasDynamicHelp": false,
|
|
1641
1643
|
"multiple": false,
|
|
1644
|
+
"options": [
|
|
1645
|
+
"document",
|
|
1646
|
+
"thread"
|
|
1647
|
+
],
|
|
1642
1648
|
"type": "option"
|
|
1643
1649
|
},
|
|
1644
|
-
"
|
|
1645
|
-
"description": "
|
|
1646
|
-
"name": "
|
|
1647
|
-
"
|
|
1648
|
-
"
|
|
1650
|
+
"perspective": {
|
|
1651
|
+
"description": "Perspective (document only)",
|
|
1652
|
+
"name": "perspective",
|
|
1653
|
+
"default": "third-person",
|
|
1654
|
+
"hasDynamicHelp": false,
|
|
1655
|
+
"multiple": false,
|
|
1656
|
+
"options": [
|
|
1657
|
+
"first-person",
|
|
1658
|
+
"third-person"
|
|
1659
|
+
],
|
|
1660
|
+
"type": "option"
|
|
1649
1661
|
},
|
|
1650
|
-
"
|
|
1651
|
-
"description": "
|
|
1652
|
-
"name": "
|
|
1662
|
+
"face-speaker": {
|
|
1663
|
+
"description": "Speaker name to map to the face (thread only). If omitted, auto-detected from face name.",
|
|
1664
|
+
"name": "face-speaker",
|
|
1665
|
+
"hasDynamicHelp": false,
|
|
1666
|
+
"multiple": false,
|
|
1667
|
+
"type": "option"
|
|
1668
|
+
},
|
|
1669
|
+
"no-wait": {
|
|
1670
|
+
"description": "Return immediately after upload (do not poll for transcription). Prints the ID for manual polling.",
|
|
1671
|
+
"name": "no-wait",
|
|
1653
1672
|
"allowNo": false,
|
|
1654
1673
|
"type": "boolean"
|
|
1655
1674
|
}
|
|
1656
1675
|
},
|
|
1657
1676
|
"hasDynamicHelp": false,
|
|
1658
1677
|
"hiddenAliases": [],
|
|
1659
|
-
"id": "
|
|
1678
|
+
"id": "compile:upload",
|
|
1660
1679
|
"pluginAlias": "faces-cli",
|
|
1661
1680
|
"pluginName": "faces-cli",
|
|
1662
1681
|
"pluginType": "core",
|
|
@@ -1666,27 +1685,20 @@
|
|
|
1666
1685
|
"relativePath": [
|
|
1667
1686
|
"dist",
|
|
1668
1687
|
"commands",
|
|
1669
|
-
"
|
|
1670
|
-
"
|
|
1688
|
+
"compile",
|
|
1689
|
+
"upload.js"
|
|
1671
1690
|
]
|
|
1672
1691
|
},
|
|
1673
|
-
"chat:
|
|
1692
|
+
"chat:chat": {
|
|
1674
1693
|
"aliases": [],
|
|
1675
1694
|
"args": {
|
|
1676
1695
|
"face_username": {
|
|
1677
|
-
"description": "Face alias (or alias@model)
|
|
1696
|
+
"description": "Face alias (or alias@model)",
|
|
1678
1697
|
"name": "face_username",
|
|
1679
|
-
"required":
|
|
1698
|
+
"required": true
|
|
1680
1699
|
}
|
|
1681
1700
|
},
|
|
1682
|
-
"description": "
|
|
1683
|
-
"examples": [
|
|
1684
|
-
"<%= config.bin %> <%= command.id %> socrates -m \"What is justice?\"",
|
|
1685
|
-
"<%= config.bin %> <%= command.id %> --id t_abc123 -m \"Say more about that\"",
|
|
1686
|
-
"<%= config.bin %> <%= command.id %> --list",
|
|
1687
|
-
"<%= config.bin %> <%= command.id %> --id t_abc123 --show",
|
|
1688
|
-
"<%= config.bin %> <%= command.id %> --id t_abc123 --delete"
|
|
1689
|
-
],
|
|
1701
|
+
"description": "Chat via a face. Auto-routes to the correct API endpoint based on the model catalog.",
|
|
1690
1702
|
"flags": {
|
|
1691
1703
|
"json": {
|
|
1692
1704
|
"description": "Format output as json.",
|
|
@@ -1719,42 +1731,35 @@
|
|
|
1719
1731
|
"multiple": false,
|
|
1720
1732
|
"type": "option"
|
|
1721
1733
|
},
|
|
1722
|
-
"id": {
|
|
1723
|
-
"description": "Resume an existing thread by id",
|
|
1724
|
-
"name": "id",
|
|
1725
|
-
"hasDynamicHelp": false,
|
|
1726
|
-
"multiple": false,
|
|
1727
|
-
"type": "option"
|
|
1728
|
-
},
|
|
1729
1734
|
"message": {
|
|
1730
1735
|
"char": "m",
|
|
1731
|
-
"description": "User message",
|
|
1736
|
+
"description": "User message (repeatable)",
|
|
1732
1737
|
"name": "message",
|
|
1738
|
+
"required": false,
|
|
1733
1739
|
"hasDynamicHelp": false,
|
|
1734
|
-
"multiple":
|
|
1735
|
-
"type": "option"
|
|
1736
|
-
},
|
|
1737
|
-
"file": {
|
|
1738
|
-
"description": "Read message from file",
|
|
1739
|
-
"name": "file",
|
|
1740
|
-
"hasDynamicHelp": false,
|
|
1741
|
-
"multiple": false,
|
|
1740
|
+
"multiple": true,
|
|
1742
1741
|
"type": "option"
|
|
1743
1742
|
},
|
|
1744
1743
|
"llm": {
|
|
1745
|
-
"description": "LLM override (
|
|
1744
|
+
"description": "LLM override (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
1746
1745
|
"name": "llm",
|
|
1747
1746
|
"hasDynamicHelp": false,
|
|
1748
1747
|
"multiple": false,
|
|
1749
1748
|
"type": "option"
|
|
1750
1749
|
},
|
|
1751
1750
|
"system": {
|
|
1752
|
-
"description": "System prompt
|
|
1751
|
+
"description": "System prompt / instructions",
|
|
1753
1752
|
"name": "system",
|
|
1754
1753
|
"hasDynamicHelp": false,
|
|
1755
1754
|
"multiple": false,
|
|
1756
1755
|
"type": "option"
|
|
1757
1756
|
},
|
|
1757
|
+
"stream": {
|
|
1758
|
+
"description": "Stream the response",
|
|
1759
|
+
"name": "stream",
|
|
1760
|
+
"allowNo": false,
|
|
1761
|
+
"type": "boolean"
|
|
1762
|
+
},
|
|
1758
1763
|
"max-tokens": {
|
|
1759
1764
|
"description": "Max tokens",
|
|
1760
1765
|
"name": "max-tokens",
|
|
@@ -1763,46 +1768,35 @@
|
|
|
1763
1768
|
"type": "option"
|
|
1764
1769
|
},
|
|
1765
1770
|
"temperature": {
|
|
1766
|
-
"description": "Temperature (0.0-2.0
|
|
1771
|
+
"description": "Temperature (0.0-2.0)",
|
|
1767
1772
|
"name": "temperature",
|
|
1768
1773
|
"hasDynamicHelp": false,
|
|
1769
1774
|
"multiple": false,
|
|
1770
1775
|
"type": "option"
|
|
1771
1776
|
},
|
|
1772
|
-
"
|
|
1773
|
-
"description": "
|
|
1774
|
-
"name": "
|
|
1777
|
+
"file": {
|
|
1778
|
+
"description": "Read message from file",
|
|
1779
|
+
"name": "file",
|
|
1780
|
+
"hasDynamicHelp": false,
|
|
1781
|
+
"multiple": false,
|
|
1782
|
+
"type": "option"
|
|
1783
|
+
},
|
|
1784
|
+
"responses": {
|
|
1785
|
+
"description": "Force the OpenAI Responses API endpoint (escape hatch; routing is automatic otherwise)",
|
|
1786
|
+
"name": "responses",
|
|
1775
1787
|
"allowNo": false,
|
|
1776
1788
|
"type": "boolean"
|
|
1777
1789
|
},
|
|
1778
1790
|
"oauth-only": {
|
|
1779
|
-
"description": "Prevent fallback to paid system key",
|
|
1791
|
+
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
1780
1792
|
"name": "oauth-only",
|
|
1781
1793
|
"allowNo": false,
|
|
1782
1794
|
"type": "boolean"
|
|
1783
|
-
},
|
|
1784
|
-
"list": {
|
|
1785
|
-
"description": "List saved threads",
|
|
1786
|
-
"name": "list",
|
|
1787
|
-
"allowNo": false,
|
|
1788
|
-
"type": "boolean"
|
|
1789
|
-
},
|
|
1790
|
-
"show": {
|
|
1791
|
-
"description": "Show the thread transcript (requires --id)",
|
|
1792
|
-
"name": "show",
|
|
1793
|
-
"allowNo": false,
|
|
1794
|
-
"type": "boolean"
|
|
1795
|
-
},
|
|
1796
|
-
"delete": {
|
|
1797
|
-
"description": "Delete the thread (requires --id)",
|
|
1798
|
-
"name": "delete",
|
|
1799
|
-
"allowNo": false,
|
|
1800
|
-
"type": "boolean"
|
|
1801
1795
|
}
|
|
1802
1796
|
},
|
|
1803
1797
|
"hasDynamicHelp": false,
|
|
1804
1798
|
"hiddenAliases": [],
|
|
1805
|
-
"id": "chat:
|
|
1799
|
+
"id": "chat:chat",
|
|
1806
1800
|
"pluginAlias": "faces-cli",
|
|
1807
1801
|
"pluginName": "faces-cli",
|
|
1808
1802
|
"pluginType": "core",
|
|
@@ -1813,13 +1807,19 @@
|
|
|
1813
1807
|
"dist",
|
|
1814
1808
|
"commands",
|
|
1815
1809
|
"chat",
|
|
1816
|
-
"
|
|
1810
|
+
"chat.js"
|
|
1817
1811
|
]
|
|
1818
1812
|
},
|
|
1819
|
-
"
|
|
1813
|
+
"chat:messages": {
|
|
1820
1814
|
"aliases": [],
|
|
1821
|
-
"args": {
|
|
1822
|
-
|
|
1815
|
+
"args": {
|
|
1816
|
+
"face_model": {
|
|
1817
|
+
"description": "Face model (e.g. myface or myface@claude-sonnet-4-6)",
|
|
1818
|
+
"name": "face_model",
|
|
1819
|
+
"required": true
|
|
1820
|
+
}
|
|
1821
|
+
},
|
|
1822
|
+
"description": "Anthropic Messages API proxy via a face (alias: chat:chat auto-routes Anthropic models here)",
|
|
1823
1823
|
"flags": {
|
|
1824
1824
|
"json": {
|
|
1825
1825
|
"description": "Format output as json.",
|
|
@@ -1852,16 +1852,46 @@
|
|
|
1852
1852
|
"multiple": false,
|
|
1853
1853
|
"type": "option"
|
|
1854
1854
|
},
|
|
1855
|
-
"
|
|
1856
|
-
"
|
|
1857
|
-
"
|
|
1855
|
+
"message": {
|
|
1856
|
+
"char": "m",
|
|
1857
|
+
"description": "User message (repeatable)",
|
|
1858
|
+
"name": "message",
|
|
1859
|
+
"required": true,
|
|
1860
|
+
"hasDynamicHelp": false,
|
|
1861
|
+
"multiple": true,
|
|
1862
|
+
"type": "option"
|
|
1863
|
+
},
|
|
1864
|
+
"system": {
|
|
1865
|
+
"description": "System prompt",
|
|
1866
|
+
"name": "system",
|
|
1867
|
+
"hasDynamicHelp": false,
|
|
1868
|
+
"multiple": false,
|
|
1869
|
+
"type": "option"
|
|
1870
|
+
},
|
|
1871
|
+
"stream": {
|
|
1872
|
+
"description": "Stream the response",
|
|
1873
|
+
"name": "stream",
|
|
1874
|
+
"allowNo": false,
|
|
1875
|
+
"type": "boolean"
|
|
1876
|
+
},
|
|
1877
|
+
"max-tokens": {
|
|
1878
|
+
"description": "Max tokens",
|
|
1879
|
+
"name": "max-tokens",
|
|
1880
|
+
"default": 1024,
|
|
1881
|
+
"hasDynamicHelp": false,
|
|
1882
|
+
"multiple": false,
|
|
1883
|
+
"type": "option"
|
|
1884
|
+
},
|
|
1885
|
+
"oauth-only": {
|
|
1886
|
+
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
1887
|
+
"name": "oauth-only",
|
|
1858
1888
|
"allowNo": false,
|
|
1859
1889
|
"type": "boolean"
|
|
1860
1890
|
}
|
|
1861
1891
|
},
|
|
1862
1892
|
"hasDynamicHelp": false,
|
|
1863
1893
|
"hiddenAliases": [],
|
|
1864
|
-
"id": "
|
|
1894
|
+
"id": "chat:messages",
|
|
1865
1895
|
"pluginAlias": "faces-cli",
|
|
1866
1896
|
"pluginName": "faces-cli",
|
|
1867
1897
|
"pluginType": "core",
|
|
@@ -1871,25 +1901,20 @@
|
|
|
1871
1901
|
"relativePath": [
|
|
1872
1902
|
"dist",
|
|
1873
1903
|
"commands",
|
|
1874
|
-
"
|
|
1875
|
-
"
|
|
1904
|
+
"chat",
|
|
1905
|
+
"messages.js"
|
|
1876
1906
|
]
|
|
1877
1907
|
},
|
|
1878
|
-
"
|
|
1908
|
+
"chat:responses": {
|
|
1879
1909
|
"aliases": [],
|
|
1880
1910
|
"args": {
|
|
1881
|
-
"
|
|
1882
|
-
"description": "
|
|
1883
|
-
"name": "
|
|
1884
|
-
"required": true
|
|
1885
|
-
},
|
|
1886
|
-
"value": {
|
|
1887
|
-
"description": "Config value",
|
|
1888
|
-
"name": "value",
|
|
1911
|
+
"face_model": {
|
|
1912
|
+
"description": "Face model (e.g. myface or myface@gpt-4o)",
|
|
1913
|
+
"name": "face_model",
|
|
1889
1914
|
"required": true
|
|
1890
1915
|
}
|
|
1891
1916
|
},
|
|
1892
|
-
"description": "
|
|
1917
|
+
"description": "OpenAI Responses API proxy via a face (alias: chat:chat --responses)",
|
|
1893
1918
|
"flags": {
|
|
1894
1919
|
"json": {
|
|
1895
1920
|
"description": "Format output as json.",
|
|
@@ -1921,11 +1946,39 @@
|
|
|
1921
1946
|
"hasDynamicHelp": false,
|
|
1922
1947
|
"multiple": false,
|
|
1923
1948
|
"type": "option"
|
|
1949
|
+
},
|
|
1950
|
+
"message": {
|
|
1951
|
+
"char": "m",
|
|
1952
|
+
"description": "User input message",
|
|
1953
|
+
"name": "message",
|
|
1954
|
+
"required": true,
|
|
1955
|
+
"hasDynamicHelp": false,
|
|
1956
|
+
"multiple": false,
|
|
1957
|
+
"type": "option"
|
|
1958
|
+
},
|
|
1959
|
+
"instructions": {
|
|
1960
|
+
"description": "System instructions",
|
|
1961
|
+
"name": "instructions",
|
|
1962
|
+
"hasDynamicHelp": false,
|
|
1963
|
+
"multiple": false,
|
|
1964
|
+
"type": "option"
|
|
1965
|
+
},
|
|
1966
|
+
"stream": {
|
|
1967
|
+
"description": "Stream the response",
|
|
1968
|
+
"name": "stream",
|
|
1969
|
+
"allowNo": false,
|
|
1970
|
+
"type": "boolean"
|
|
1971
|
+
},
|
|
1972
|
+
"oauth-only": {
|
|
1973
|
+
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
1974
|
+
"name": "oauth-only",
|
|
1975
|
+
"allowNo": false,
|
|
1976
|
+
"type": "boolean"
|
|
1924
1977
|
}
|
|
1925
1978
|
},
|
|
1926
1979
|
"hasDynamicHelp": false,
|
|
1927
1980
|
"hiddenAliases": [],
|
|
1928
|
-
"id": "
|
|
1981
|
+
"id": "chat:responses",
|
|
1929
1982
|
"pluginAlias": "faces-cli",
|
|
1930
1983
|
"pluginName": "faces-cli",
|
|
1931
1984
|
"pluginType": "core",
|
|
@@ -1935,14 +1988,27 @@
|
|
|
1935
1988
|
"relativePath": [
|
|
1936
1989
|
"dist",
|
|
1937
1990
|
"commands",
|
|
1938
|
-
"
|
|
1939
|
-
"
|
|
1991
|
+
"chat",
|
|
1992
|
+
"responses.js"
|
|
1940
1993
|
]
|
|
1941
1994
|
},
|
|
1942
|
-
"
|
|
1995
|
+
"chat:thread": {
|
|
1943
1996
|
"aliases": [],
|
|
1944
|
-
"args": {
|
|
1945
|
-
|
|
1997
|
+
"args": {
|
|
1998
|
+
"face_username": {
|
|
1999
|
+
"description": "Face alias (or alias@model) — required when starting a new thread",
|
|
2000
|
+
"name": "face_username",
|
|
2001
|
+
"required": false
|
|
2002
|
+
}
|
|
2003
|
+
},
|
|
2004
|
+
"description": "Multi-turn chat thread. Conversation history is stored under ~/.faces/threads/<id>.json — resume any thread later with --id.",
|
|
2005
|
+
"examples": [
|
|
2006
|
+
"<%= config.bin %> <%= command.id %> socrates -m \"What is justice?\"",
|
|
2007
|
+
"<%= config.bin %> <%= command.id %> --id t_abc123 -m \"Say more about that\"",
|
|
2008
|
+
"<%= config.bin %> <%= command.id %> --list",
|
|
2009
|
+
"<%= config.bin %> <%= command.id %> --id t_abc123 --show",
|
|
2010
|
+
"<%= config.bin %> <%= command.id %> --id t_abc123 --delete"
|
|
2011
|
+
],
|
|
1946
2012
|
"flags": {
|
|
1947
2013
|
"json": {
|
|
1948
2014
|
"description": "Format output as json.",
|
|
@@ -1974,72 +2040,91 @@
|
|
|
1974
2040
|
"hasDynamicHelp": false,
|
|
1975
2041
|
"multiple": false,
|
|
1976
2042
|
"type": "option"
|
|
1977
|
-
}
|
|
1978
|
-
},
|
|
1979
|
-
"hasDynamicHelp": false,
|
|
1980
|
-
"hiddenAliases": [],
|
|
1981
|
-
"id": "config:show",
|
|
1982
|
-
"pluginAlias": "faces-cli",
|
|
1983
|
-
"pluginName": "faces-cli",
|
|
1984
|
-
"pluginType": "core",
|
|
1985
|
-
"strict": true,
|
|
1986
|
-
"enableJsonFlag": true,
|
|
1987
|
-
"isESM": true,
|
|
1988
|
-
"relativePath": [
|
|
1989
|
-
"dist",
|
|
1990
|
-
"commands",
|
|
1991
|
-
"config",
|
|
1992
|
-
"show.js"
|
|
1993
|
-
]
|
|
1994
|
-
},
|
|
1995
|
-
"compile:all": {
|
|
1996
|
-
"aliases": [],
|
|
1997
|
-
"args": {},
|
|
1998
|
-
"description": "Compile all uncompiled documents and threads across all faces",
|
|
1999
|
-
"flags": {
|
|
2000
|
-
"json": {
|
|
2001
|
-
"description": "Format output as json.",
|
|
2002
|
-
"helpGroup": "GLOBAL",
|
|
2003
|
-
"name": "json",
|
|
2004
|
-
"allowNo": false,
|
|
2005
|
-
"type": "boolean"
|
|
2006
2043
|
},
|
|
2007
|
-
"
|
|
2008
|
-
"description": "
|
|
2009
|
-
"
|
|
2010
|
-
"name": "base-url",
|
|
2044
|
+
"id": {
|
|
2045
|
+
"description": "Resume an existing thread by id",
|
|
2046
|
+
"name": "id",
|
|
2011
2047
|
"hasDynamicHelp": false,
|
|
2012
2048
|
"multiple": false,
|
|
2013
2049
|
"type": "option"
|
|
2014
2050
|
},
|
|
2015
|
-
"
|
|
2016
|
-
"
|
|
2017
|
-
"
|
|
2018
|
-
"name": "
|
|
2051
|
+
"message": {
|
|
2052
|
+
"char": "m",
|
|
2053
|
+
"description": "User message",
|
|
2054
|
+
"name": "message",
|
|
2019
2055
|
"hasDynamicHelp": false,
|
|
2020
2056
|
"multiple": false,
|
|
2021
2057
|
"type": "option"
|
|
2022
2058
|
},
|
|
2023
|
-
"
|
|
2024
|
-
"description": "
|
|
2025
|
-
"
|
|
2026
|
-
"name": "api-key",
|
|
2059
|
+
"file": {
|
|
2060
|
+
"description": "Read message from file",
|
|
2061
|
+
"name": "file",
|
|
2027
2062
|
"hasDynamicHelp": false,
|
|
2028
2063
|
"multiple": false,
|
|
2029
2064
|
"type": "option"
|
|
2030
2065
|
},
|
|
2031
|
-
"
|
|
2032
|
-
"description": "
|
|
2033
|
-
"name": "
|
|
2034
|
-
"default": 600,
|
|
2066
|
+
"llm": {
|
|
2067
|
+
"description": "LLM override (only honored when starting a new thread)",
|
|
2068
|
+
"name": "llm",
|
|
2035
2069
|
"hasDynamicHelp": false,
|
|
2036
2070
|
"multiple": false,
|
|
2037
2071
|
"type": "option"
|
|
2072
|
+
},
|
|
2073
|
+
"system": {
|
|
2074
|
+
"description": "System prompt (only honored when starting a new thread)",
|
|
2075
|
+
"name": "system",
|
|
2076
|
+
"hasDynamicHelp": false,
|
|
2077
|
+
"multiple": false,
|
|
2078
|
+
"type": "option"
|
|
2079
|
+
},
|
|
2080
|
+
"max-tokens": {
|
|
2081
|
+
"description": "Max tokens",
|
|
2082
|
+
"name": "max-tokens",
|
|
2083
|
+
"hasDynamicHelp": false,
|
|
2084
|
+
"multiple": false,
|
|
2085
|
+
"type": "option"
|
|
2086
|
+
},
|
|
2087
|
+
"temperature": {
|
|
2088
|
+
"description": "Temperature (0.0-2.0, OpenAI/Chat Completions only)",
|
|
2089
|
+
"name": "temperature",
|
|
2090
|
+
"hasDynamicHelp": false,
|
|
2091
|
+
"multiple": false,
|
|
2092
|
+
"type": "option"
|
|
2093
|
+
},
|
|
2094
|
+
"stream": {
|
|
2095
|
+
"description": "Stream the response",
|
|
2096
|
+
"name": "stream",
|
|
2097
|
+
"allowNo": false,
|
|
2098
|
+
"type": "boolean"
|
|
2099
|
+
},
|
|
2100
|
+
"oauth-only": {
|
|
2101
|
+
"description": "Prevent fallback to paid system key",
|
|
2102
|
+
"name": "oauth-only",
|
|
2103
|
+
"allowNo": false,
|
|
2104
|
+
"type": "boolean"
|
|
2105
|
+
},
|
|
2106
|
+
"list": {
|
|
2107
|
+
"description": "List saved threads",
|
|
2108
|
+
"name": "list",
|
|
2109
|
+
"allowNo": false,
|
|
2110
|
+
"type": "boolean"
|
|
2111
|
+
},
|
|
2112
|
+
"show": {
|
|
2113
|
+
"description": "Show the thread transcript (requires --id)",
|
|
2114
|
+
"name": "show",
|
|
2115
|
+
"allowNo": false,
|
|
2116
|
+
"type": "boolean"
|
|
2117
|
+
},
|
|
2118
|
+
"delete": {
|
|
2119
|
+
"description": "Delete the thread (requires --id)",
|
|
2120
|
+
"name": "delete",
|
|
2121
|
+
"allowNo": false,
|
|
2122
|
+
"type": "boolean"
|
|
2038
2123
|
}
|
|
2039
2124
|
},
|
|
2040
2125
|
"hasDynamicHelp": false,
|
|
2041
2126
|
"hiddenAliases": [],
|
|
2042
|
-
"id": "
|
|
2127
|
+
"id": "chat:thread",
|
|
2043
2128
|
"pluginAlias": "faces-cli",
|
|
2044
2129
|
"pluginName": "faces-cli",
|
|
2045
2130
|
"pluginType": "core",
|
|
@@ -2049,20 +2134,14 @@
|
|
|
2049
2134
|
"relativePath": [
|
|
2050
2135
|
"dist",
|
|
2051
2136
|
"commands",
|
|
2052
|
-
"
|
|
2053
|
-
"
|
|
2137
|
+
"chat",
|
|
2138
|
+
"thread.js"
|
|
2054
2139
|
]
|
|
2055
2140
|
},
|
|
2056
|
-
"
|
|
2141
|
+
"config:clear": {
|
|
2057
2142
|
"aliases": [],
|
|
2058
|
-
"args": {
|
|
2059
|
-
|
|
2060
|
-
"description": "Face alias",
|
|
2061
|
-
"name": "face_id",
|
|
2062
|
-
"required": true
|
|
2063
|
-
}
|
|
2064
|
-
},
|
|
2065
|
-
"description": "Import a YouTube video into a face via server-side download and transcription",
|
|
2143
|
+
"args": {},
|
|
2144
|
+
"description": "Delete all saved credentials and config",
|
|
2066
2145
|
"flags": {
|
|
2067
2146
|
"json": {
|
|
2068
2147
|
"description": "Format output as json.",
|
|
@@ -2095,55 +2174,16 @@
|
|
|
2095
2174
|
"multiple": false,
|
|
2096
2175
|
"type": "option"
|
|
2097
2176
|
},
|
|
2098
|
-
"
|
|
2099
|
-
"description": "
|
|
2100
|
-
"name": "
|
|
2101
|
-
"required": true,
|
|
2102
|
-
"hasDynamicHelp": false,
|
|
2103
|
-
"multiple": false,
|
|
2104
|
-
"type": "option"
|
|
2105
|
-
},
|
|
2106
|
-
"type": {
|
|
2107
|
-
"description": "\"document\" for solo talks, lectures, monologues; \"thread\" for interviews or multi-speaker conversations",
|
|
2108
|
-
"name": "type",
|
|
2109
|
-
"default": "document",
|
|
2110
|
-
"hasDynamicHelp": false,
|
|
2111
|
-
"multiple": false,
|
|
2112
|
-
"options": [
|
|
2113
|
-
"document",
|
|
2114
|
-
"thread"
|
|
2115
|
-
],
|
|
2116
|
-
"type": "option"
|
|
2117
|
-
},
|
|
2118
|
-
"perspective": {
|
|
2119
|
-
"description": "\"first-person\" if the face is the speaker; \"third-person\" if the video is about the face",
|
|
2120
|
-
"name": "perspective",
|
|
2121
|
-
"default": "third-person",
|
|
2122
|
-
"hasDynamicHelp": false,
|
|
2123
|
-
"multiple": false,
|
|
2124
|
-
"options": [
|
|
2125
|
-
"first-person",
|
|
2126
|
-
"third-person"
|
|
2127
|
-
],
|
|
2128
|
-
"type": "option"
|
|
2129
|
-
},
|
|
2130
|
-
"face-speaker": {
|
|
2131
|
-
"description": "For --type thread: AssemblyAI speaker label (e.g. \"A\") that corresponds to the face. Defaults to first detected speaker.",
|
|
2132
|
-
"name": "face-speaker",
|
|
2133
|
-
"hasDynamicHelp": false,
|
|
2134
|
-
"multiple": false,
|
|
2135
|
-
"type": "option"
|
|
2136
|
-
},
|
|
2137
|
-
"no-wait": {
|
|
2138
|
-
"description": "Return immediately after import starts (do not poll for transcription). Prints the ID for manual polling.",
|
|
2139
|
-
"name": "no-wait",
|
|
2177
|
+
"yes": {
|
|
2178
|
+
"description": "Skip confirmation",
|
|
2179
|
+
"name": "yes",
|
|
2140
2180
|
"allowNo": false,
|
|
2141
2181
|
"type": "boolean"
|
|
2142
2182
|
}
|
|
2143
2183
|
},
|
|
2144
2184
|
"hasDynamicHelp": false,
|
|
2145
2185
|
"hiddenAliases": [],
|
|
2146
|
-
"id": "
|
|
2186
|
+
"id": "config:clear",
|
|
2147
2187
|
"pluginAlias": "faces-cli",
|
|
2148
2188
|
"pluginName": "faces-cli",
|
|
2149
2189
|
"pluginType": "core",
|
|
@@ -2153,14 +2193,25 @@
|
|
|
2153
2193
|
"relativePath": [
|
|
2154
2194
|
"dist",
|
|
2155
2195
|
"commands",
|
|
2156
|
-
"
|
|
2157
|
-
"
|
|
2196
|
+
"config",
|
|
2197
|
+
"clear.js"
|
|
2158
2198
|
]
|
|
2159
2199
|
},
|
|
2160
|
-
"
|
|
2200
|
+
"config:set": {
|
|
2161
2201
|
"aliases": [],
|
|
2162
|
-
"args": {
|
|
2163
|
-
|
|
2202
|
+
"args": {
|
|
2203
|
+
"key": {
|
|
2204
|
+
"description": "Config key",
|
|
2205
|
+
"name": "key",
|
|
2206
|
+
"required": true
|
|
2207
|
+
},
|
|
2208
|
+
"value": {
|
|
2209
|
+
"description": "Config value",
|
|
2210
|
+
"name": "value",
|
|
2211
|
+
"required": true
|
|
2212
|
+
}
|
|
2213
|
+
},
|
|
2214
|
+
"description": "Set a config value (e.g. base_url, api_key, token)",
|
|
2164
2215
|
"flags": {
|
|
2165
2216
|
"json": {
|
|
2166
2217
|
"description": "Format output as json.",
|
|
@@ -2196,7 +2247,7 @@
|
|
|
2196
2247
|
},
|
|
2197
2248
|
"hasDynamicHelp": false,
|
|
2198
2249
|
"hiddenAliases": [],
|
|
2199
|
-
"id": "
|
|
2250
|
+
"id": "config:set",
|
|
2200
2251
|
"pluginAlias": "faces-cli",
|
|
2201
2252
|
"pluginName": "faces-cli",
|
|
2202
2253
|
"pluginType": "core",
|
|
@@ -2206,20 +2257,14 @@
|
|
|
2206
2257
|
"relativePath": [
|
|
2207
2258
|
"dist",
|
|
2208
2259
|
"commands",
|
|
2209
|
-
"
|
|
2210
|
-
"
|
|
2260
|
+
"config",
|
|
2261
|
+
"set.js"
|
|
2211
2262
|
]
|
|
2212
2263
|
},
|
|
2213
|
-
"
|
|
2264
|
+
"config:show": {
|
|
2214
2265
|
"aliases": [],
|
|
2215
|
-
"args": {
|
|
2216
|
-
|
|
2217
|
-
"description": "Face alias",
|
|
2218
|
-
"name": "alias",
|
|
2219
|
-
"required": true
|
|
2220
|
-
}
|
|
2221
|
-
},
|
|
2222
|
-
"description": "Upload a file (text/PDF/audio/video) to compile into a face",
|
|
2266
|
+
"args": {},
|
|
2267
|
+
"description": "Print current config (credentials are masked)",
|
|
2223
2268
|
"flags": {
|
|
2224
2269
|
"json": {
|
|
2225
2270
|
"description": "Format output as json.",
|
|
@@ -2251,56 +2296,11 @@
|
|
|
2251
2296
|
"hasDynamicHelp": false,
|
|
2252
2297
|
"multiple": false,
|
|
2253
2298
|
"type": "option"
|
|
2254
|
-
},
|
|
2255
|
-
"file": {
|
|
2256
|
-
"description": "File to upload",
|
|
2257
|
-
"name": "file",
|
|
2258
|
-
"required": true,
|
|
2259
|
-
"hasDynamicHelp": false,
|
|
2260
|
-
"multiple": false,
|
|
2261
|
-
"type": "option"
|
|
2262
|
-
},
|
|
2263
|
-
"kind": {
|
|
2264
|
-
"description": "Upload kind: document or thread",
|
|
2265
|
-
"name": "kind",
|
|
2266
|
-
"default": "document",
|
|
2267
|
-
"hasDynamicHelp": false,
|
|
2268
|
-
"multiple": false,
|
|
2269
|
-
"options": [
|
|
2270
|
-
"document",
|
|
2271
|
-
"thread"
|
|
2272
|
-
],
|
|
2273
|
-
"type": "option"
|
|
2274
|
-
},
|
|
2275
|
-
"perspective": {
|
|
2276
|
-
"description": "Perspective (document only)",
|
|
2277
|
-
"name": "perspective",
|
|
2278
|
-
"default": "third-person",
|
|
2279
|
-
"hasDynamicHelp": false,
|
|
2280
|
-
"multiple": false,
|
|
2281
|
-
"options": [
|
|
2282
|
-
"first-person",
|
|
2283
|
-
"third-person"
|
|
2284
|
-
],
|
|
2285
|
-
"type": "option"
|
|
2286
|
-
},
|
|
2287
|
-
"face-speaker": {
|
|
2288
|
-
"description": "Speaker name to map to the face (thread only). If omitted, auto-detected from face name.",
|
|
2289
|
-
"name": "face-speaker",
|
|
2290
|
-
"hasDynamicHelp": false,
|
|
2291
|
-
"multiple": false,
|
|
2292
|
-
"type": "option"
|
|
2293
|
-
},
|
|
2294
|
-
"no-wait": {
|
|
2295
|
-
"description": "Return immediately after upload (do not poll for transcription). Prints the ID for manual polling.",
|
|
2296
|
-
"name": "no-wait",
|
|
2297
|
-
"allowNo": false,
|
|
2298
|
-
"type": "boolean"
|
|
2299
2299
|
}
|
|
2300
2300
|
},
|
|
2301
2301
|
"hasDynamicHelp": false,
|
|
2302
2302
|
"hiddenAliases": [],
|
|
2303
|
-
"id": "
|
|
2303
|
+
"id": "config:show",
|
|
2304
2304
|
"pluginAlias": "faces-cli",
|
|
2305
2305
|
"pluginName": "faces-cli",
|
|
2306
2306
|
"pluginType": "core",
|
|
@@ -2310,8 +2310,8 @@
|
|
|
2310
2310
|
"relativePath": [
|
|
2311
2311
|
"dist",
|
|
2312
2312
|
"commands",
|
|
2313
|
-
"
|
|
2314
|
-
"
|
|
2313
|
+
"config",
|
|
2314
|
+
"show.js"
|
|
2315
2315
|
]
|
|
2316
2316
|
},
|
|
2317
2317
|
"keys:create": {
|
|
@@ -6040,5 +6040,5 @@
|
|
|
6040
6040
|
]
|
|
6041
6041
|
}
|
|
6042
6042
|
},
|
|
6043
|
-
"version": "1.
|
|
6043
|
+
"version": "1.7.0"
|
|
6044
6044
|
}
|