faces-cli 1.8.1 → 1.8.3
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 +63 -12
- package/dist/commands/face/get.js +17 -6
- package/dist/commands/style/make.js +15 -3
- package/dist/commands/style/revert.d.ts +1 -0
- package/dist/commands/style/revert.js +30 -17
- package/dist/commands/style/versions.js +25 -13
- package/dist/commands/team/add.d.ts +1 -0
- package/dist/commands/team/add.js +24 -8
- package/dist/commands/team/members.d.ts +1 -0
- package/dist/commands/team/members.js +53 -4
- package/dist/style.d.ts +6 -0
- package/dist/style.js +1 -0
- package/dist/team-catalog.d.ts +17 -0
- package/dist/team-catalog.js +25 -0
- package/dist/utils.d.ts +25 -0
- package/dist/utils.js +69 -3
- package/oclif.manifest.json +1553 -1537
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -120,10 +120,23 @@
|
|
|
120
120
|
"state.js"
|
|
121
121
|
]
|
|
122
122
|
},
|
|
123
|
-
"
|
|
123
|
+
"auth:connect": {
|
|
124
124
|
"aliases": [],
|
|
125
|
-
"args": {
|
|
126
|
-
|
|
125
|
+
"args": {
|
|
126
|
+
"provider": {
|
|
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
|
+
],
|
|
127
140
|
"flags": {
|
|
128
141
|
"json": {
|
|
129
142
|
"description": "Format output as json.",
|
|
@@ -159,7 +172,7 @@
|
|
|
159
172
|
},
|
|
160
173
|
"hasDynamicHelp": false,
|
|
161
174
|
"hiddenAliases": [],
|
|
162
|
-
"id": "
|
|
175
|
+
"id": "auth:connect",
|
|
163
176
|
"pluginAlias": "faces-cli",
|
|
164
177
|
"pluginName": "faces-cli",
|
|
165
178
|
"pluginType": "core",
|
|
@@ -169,14 +182,18 @@
|
|
|
169
182
|
"relativePath": [
|
|
170
183
|
"dist",
|
|
171
184
|
"commands",
|
|
172
|
-
"
|
|
173
|
-
"
|
|
185
|
+
"auth",
|
|
186
|
+
"connect.js"
|
|
174
187
|
]
|
|
175
188
|
},
|
|
176
|
-
"
|
|
189
|
+
"auth:connections": {
|
|
177
190
|
"aliases": [],
|
|
178
191
|
"args": {},
|
|
179
|
-
"description": "
|
|
192
|
+
"description": "List connected OAuth provider accounts",
|
|
193
|
+
"examples": [
|
|
194
|
+
"<%= config.bin %> auth connections",
|
|
195
|
+
"<%= config.bin %> auth connections --json"
|
|
196
|
+
],
|
|
180
197
|
"flags": {
|
|
181
198
|
"json": {
|
|
182
199
|
"description": "Format output as json.",
|
|
@@ -212,7 +229,7 @@
|
|
|
212
229
|
},
|
|
213
230
|
"hasDynamicHelp": false,
|
|
214
231
|
"hiddenAliases": [],
|
|
215
|
-
"id": "
|
|
232
|
+
"id": "auth:connections",
|
|
216
233
|
"pluginAlias": "faces-cli",
|
|
217
234
|
"pluginName": "faces-cli",
|
|
218
235
|
"pluginType": "core",
|
|
@@ -222,14 +239,26 @@
|
|
|
222
239
|
"relativePath": [
|
|
223
240
|
"dist",
|
|
224
241
|
"commands",
|
|
225
|
-
"
|
|
226
|
-
"
|
|
242
|
+
"auth",
|
|
243
|
+
"connections.js"
|
|
227
244
|
]
|
|
228
245
|
},
|
|
229
|
-
"
|
|
246
|
+
"auth:disconnect": {
|
|
230
247
|
"aliases": [],
|
|
231
|
-
"args": {
|
|
232
|
-
|
|
248
|
+
"args": {
|
|
249
|
+
"provider": {
|
|
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
|
+
],
|
|
233
262
|
"flags": {
|
|
234
263
|
"json": {
|
|
235
264
|
"description": "Format output as json.",
|
|
@@ -261,18 +290,11 @@
|
|
|
261
290
|
"hasDynamicHelp": false,
|
|
262
291
|
"multiple": false,
|
|
263
292
|
"type": "option"
|
|
264
|
-
},
|
|
265
|
-
"provider": {
|
|
266
|
-
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
267
|
-
"name": "provider",
|
|
268
|
-
"hasDynamicHelp": false,
|
|
269
|
-
"multiple": false,
|
|
270
|
-
"type": "option"
|
|
271
293
|
}
|
|
272
294
|
},
|
|
273
295
|
"hasDynamicHelp": false,
|
|
274
296
|
"hiddenAliases": [],
|
|
275
|
-
"id": "
|
|
297
|
+
"id": "auth:disconnect",
|
|
276
298
|
"pluginAlias": "faces-cli",
|
|
277
299
|
"pluginName": "faces-cli",
|
|
278
300
|
"pluginType": "core",
|
|
@@ -282,14 +304,14 @@
|
|
|
282
304
|
"relativePath": [
|
|
283
305
|
"dist",
|
|
284
306
|
"commands",
|
|
285
|
-
"
|
|
286
|
-
"
|
|
307
|
+
"auth",
|
|
308
|
+
"disconnect.js"
|
|
287
309
|
]
|
|
288
310
|
},
|
|
289
|
-
"
|
|
311
|
+
"auth:login": {
|
|
290
312
|
"aliases": [],
|
|
291
313
|
"args": {},
|
|
292
|
-
"description": "
|
|
314
|
+
"description": "Login and save JWT credentials",
|
|
293
315
|
"flags": {
|
|
294
316
|
"json": {
|
|
295
317
|
"description": "Format output as json.",
|
|
@@ -322,17 +344,18 @@
|
|
|
322
344
|
"multiple": false,
|
|
323
345
|
"type": "option"
|
|
324
346
|
},
|
|
325
|
-
"
|
|
326
|
-
"description": "
|
|
327
|
-
"name": "
|
|
347
|
+
"email": {
|
|
348
|
+
"description": "Account email",
|
|
349
|
+
"name": "email",
|
|
328
350
|
"required": true,
|
|
329
351
|
"hasDynamicHelp": false,
|
|
330
352
|
"multiple": false,
|
|
331
353
|
"type": "option"
|
|
332
354
|
},
|
|
333
|
-
"
|
|
334
|
-
"description": "
|
|
335
|
-
"name": "
|
|
355
|
+
"password": {
|
|
356
|
+
"description": "Account password",
|
|
357
|
+
"name": "password",
|
|
358
|
+
"required": true,
|
|
336
359
|
"hasDynamicHelp": false,
|
|
337
360
|
"multiple": false,
|
|
338
361
|
"type": "option"
|
|
@@ -340,7 +363,7 @@
|
|
|
340
363
|
},
|
|
341
364
|
"hasDynamicHelp": false,
|
|
342
365
|
"hiddenAliases": [],
|
|
343
|
-
"id": "
|
|
366
|
+
"id": "auth:login",
|
|
344
367
|
"pluginAlias": "faces-cli",
|
|
345
368
|
"pluginName": "faces-cli",
|
|
346
369
|
"pluginType": "core",
|
|
@@ -350,14 +373,14 @@
|
|
|
350
373
|
"relativePath": [
|
|
351
374
|
"dist",
|
|
352
375
|
"commands",
|
|
353
|
-
"
|
|
354
|
-
"
|
|
376
|
+
"auth",
|
|
377
|
+
"login.js"
|
|
355
378
|
]
|
|
356
379
|
},
|
|
357
|
-
"
|
|
380
|
+
"auth:logout": {
|
|
358
381
|
"aliases": [],
|
|
359
382
|
"args": {},
|
|
360
|
-
"description": "
|
|
383
|
+
"description": "Clear saved credentials",
|
|
361
384
|
"flags": {
|
|
362
385
|
"json": {
|
|
363
386
|
"description": "Format output as json.",
|
|
@@ -389,38 +412,11 @@
|
|
|
389
412
|
"hasDynamicHelp": false,
|
|
390
413
|
"multiple": false,
|
|
391
414
|
"type": "option"
|
|
392
|
-
},
|
|
393
|
-
"group-by": {
|
|
394
|
-
"description": "Group results",
|
|
395
|
-
"name": "group-by",
|
|
396
|
-
"hasDynamicHelp": false,
|
|
397
|
-
"multiple": false,
|
|
398
|
-
"options": [
|
|
399
|
-
"api_key",
|
|
400
|
-
"model",
|
|
401
|
-
"llm",
|
|
402
|
-
"date"
|
|
403
|
-
],
|
|
404
|
-
"type": "option"
|
|
405
|
-
},
|
|
406
|
-
"from": {
|
|
407
|
-
"description": "Start date (YYYY-MM-DD)",
|
|
408
|
-
"name": "from",
|
|
409
|
-
"hasDynamicHelp": false,
|
|
410
|
-
"multiple": false,
|
|
411
|
-
"type": "option"
|
|
412
|
-
},
|
|
413
|
-
"to": {
|
|
414
|
-
"description": "End date (YYYY-MM-DD)",
|
|
415
|
-
"name": "to",
|
|
416
|
-
"hasDynamicHelp": false,
|
|
417
|
-
"multiple": false,
|
|
418
|
-
"type": "option"
|
|
419
415
|
}
|
|
420
416
|
},
|
|
421
417
|
"hasDynamicHelp": false,
|
|
422
418
|
"hiddenAliases": [],
|
|
423
|
-
"id": "
|
|
419
|
+
"id": "auth:logout",
|
|
424
420
|
"pluginAlias": "faces-cli",
|
|
425
421
|
"pluginName": "faces-cli",
|
|
426
422
|
"pluginType": "core",
|
|
@@ -430,27 +426,14 @@
|
|
|
430
426
|
"relativePath": [
|
|
431
427
|
"dist",
|
|
432
428
|
"commands",
|
|
433
|
-
"
|
|
434
|
-
"
|
|
429
|
+
"auth",
|
|
430
|
+
"logout.js"
|
|
435
431
|
]
|
|
436
432
|
},
|
|
437
|
-
"auth:
|
|
433
|
+
"auth:refresh": {
|
|
438
434
|
"aliases": [],
|
|
439
|
-
"args": {
|
|
440
|
-
|
|
441
|
-
"description": "OAuth provider to connect",
|
|
442
|
-
"name": "provider",
|
|
443
|
-
"options": [
|
|
444
|
-
"openai"
|
|
445
|
-
],
|
|
446
|
-
"required": true
|
|
447
|
-
}
|
|
448
|
-
},
|
|
449
|
-
"description": "Connect your ChatGPT account to Faces via device-code authorization (Subscription Connect plan)",
|
|
450
|
-
"examples": [
|
|
451
|
-
"<%= config.bin %> auth connect openai",
|
|
452
|
-
"<%= config.bin %> auth connect openai --json"
|
|
453
|
-
],
|
|
435
|
+
"args": {},
|
|
436
|
+
"description": "Exchange current JWT for a fresh one",
|
|
454
437
|
"flags": {
|
|
455
438
|
"json": {
|
|
456
439
|
"description": "Format output as json.",
|
|
@@ -486,7 +469,7 @@
|
|
|
486
469
|
},
|
|
487
470
|
"hasDynamicHelp": false,
|
|
488
471
|
"hiddenAliases": [],
|
|
489
|
-
"id": "auth:
|
|
472
|
+
"id": "auth:refresh",
|
|
490
473
|
"pluginAlias": "faces-cli",
|
|
491
474
|
"pluginName": "faces-cli",
|
|
492
475
|
"pluginType": "core",
|
|
@@ -497,17 +480,13 @@
|
|
|
497
480
|
"dist",
|
|
498
481
|
"commands",
|
|
499
482
|
"auth",
|
|
500
|
-
"
|
|
483
|
+
"refresh.js"
|
|
501
484
|
]
|
|
502
485
|
},
|
|
503
|
-
"auth:
|
|
486
|
+
"auth:register": {
|
|
504
487
|
"aliases": [],
|
|
505
488
|
"args": {},
|
|
506
|
-
"description": "
|
|
507
|
-
"examples": [
|
|
508
|
-
"<%= config.bin %> auth connections",
|
|
509
|
-
"<%= config.bin %> auth connections --json"
|
|
510
|
-
],
|
|
489
|
+
"description": "Create a new Faces account",
|
|
511
490
|
"flags": {
|
|
512
491
|
"json": {
|
|
513
492
|
"description": "Format output as json.",
|
|
@@ -539,11 +518,54 @@
|
|
|
539
518
|
"hasDynamicHelp": false,
|
|
540
519
|
"multiple": false,
|
|
541
520
|
"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"
|
|
542
564
|
}
|
|
543
565
|
},
|
|
544
566
|
"hasDynamicHelp": false,
|
|
545
567
|
"hiddenAliases": [],
|
|
546
|
-
"id": "auth:
|
|
568
|
+
"id": "auth:register",
|
|
547
569
|
"pluginAlias": "faces-cli",
|
|
548
570
|
"pluginName": "faces-cli",
|
|
549
571
|
"pluginType": "core",
|
|
@@ -554,25 +576,13 @@
|
|
|
554
576
|
"dist",
|
|
555
577
|
"commands",
|
|
556
578
|
"auth",
|
|
557
|
-
"
|
|
579
|
+
"register.js"
|
|
558
580
|
]
|
|
559
581
|
},
|
|
560
|
-
"auth:
|
|
582
|
+
"auth:whoami": {
|
|
561
583
|
"aliases": [],
|
|
562
|
-
"args": {
|
|
563
|
-
|
|
564
|
-
"description": "OAuth provider to disconnect",
|
|
565
|
-
"name": "provider",
|
|
566
|
-
"options": [
|
|
567
|
-
"openai"
|
|
568
|
-
],
|
|
569
|
-
"required": true
|
|
570
|
-
}
|
|
571
|
-
},
|
|
572
|
-
"description": "Disconnect a linked OAuth provider account",
|
|
573
|
-
"examples": [
|
|
574
|
-
"<%= config.bin %> auth disconnect openai"
|
|
575
|
-
],
|
|
584
|
+
"args": {},
|
|
585
|
+
"description": "Print current user profile and auth diagnostic",
|
|
576
586
|
"flags": {
|
|
577
587
|
"json": {
|
|
578
588
|
"description": "Format output as json.",
|
|
@@ -608,7 +618,7 @@
|
|
|
608
618
|
},
|
|
609
619
|
"hasDynamicHelp": false,
|
|
610
620
|
"hiddenAliases": [],
|
|
611
|
-
"id": "auth:
|
|
621
|
+
"id": "auth:whoami",
|
|
612
622
|
"pluginAlias": "faces-cli",
|
|
613
623
|
"pluginName": "faces-cli",
|
|
614
624
|
"pluginType": "core",
|
|
@@ -619,13 +629,13 @@
|
|
|
619
629
|
"dist",
|
|
620
630
|
"commands",
|
|
621
631
|
"auth",
|
|
622
|
-
"
|
|
632
|
+
"whoami.js"
|
|
623
633
|
]
|
|
624
634
|
},
|
|
625
|
-
"
|
|
635
|
+
"billing:balance": {
|
|
626
636
|
"aliases": [],
|
|
627
637
|
"args": {},
|
|
628
|
-
"description": "
|
|
638
|
+
"description": "Show credit balance and payment method status",
|
|
629
639
|
"flags": {
|
|
630
640
|
"json": {
|
|
631
641
|
"description": "Format output as json.",
|
|
@@ -657,27 +667,11 @@
|
|
|
657
667
|
"hasDynamicHelp": false,
|
|
658
668
|
"multiple": false,
|
|
659
669
|
"type": "option"
|
|
660
|
-
},
|
|
661
|
-
"email": {
|
|
662
|
-
"description": "Account email",
|
|
663
|
-
"name": "email",
|
|
664
|
-
"required": true,
|
|
665
|
-
"hasDynamicHelp": false,
|
|
666
|
-
"multiple": false,
|
|
667
|
-
"type": "option"
|
|
668
|
-
},
|
|
669
|
-
"password": {
|
|
670
|
-
"description": "Account password",
|
|
671
|
-
"name": "password",
|
|
672
|
-
"required": true,
|
|
673
|
-
"hasDynamicHelp": false,
|
|
674
|
-
"multiple": false,
|
|
675
|
-
"type": "option"
|
|
676
670
|
}
|
|
677
671
|
},
|
|
678
672
|
"hasDynamicHelp": false,
|
|
679
673
|
"hiddenAliases": [],
|
|
680
|
-
"id": "
|
|
674
|
+
"id": "billing:balance",
|
|
681
675
|
"pluginAlias": "faces-cli",
|
|
682
676
|
"pluginName": "faces-cli",
|
|
683
677
|
"pluginType": "core",
|
|
@@ -687,14 +681,14 @@
|
|
|
687
681
|
"relativePath": [
|
|
688
682
|
"dist",
|
|
689
683
|
"commands",
|
|
690
|
-
"
|
|
691
|
-
"
|
|
684
|
+
"billing",
|
|
685
|
+
"balance.js"
|
|
692
686
|
]
|
|
693
687
|
},
|
|
694
|
-
"
|
|
688
|
+
"billing:card-setup": {
|
|
695
689
|
"aliases": [],
|
|
696
690
|
"args": {},
|
|
697
|
-
"description": "
|
|
691
|
+
"description": "Get a Stripe card setup URL to save a payment method",
|
|
698
692
|
"flags": {
|
|
699
693
|
"json": {
|
|
700
694
|
"description": "Format output as json.",
|
|
@@ -730,7 +724,7 @@
|
|
|
730
724
|
},
|
|
731
725
|
"hasDynamicHelp": false,
|
|
732
726
|
"hiddenAliases": [],
|
|
733
|
-
"id": "
|
|
727
|
+
"id": "billing:card-setup",
|
|
734
728
|
"pluginAlias": "faces-cli",
|
|
735
729
|
"pluginName": "faces-cli",
|
|
736
730
|
"pluginType": "core",
|
|
@@ -740,14 +734,14 @@
|
|
|
740
734
|
"relativePath": [
|
|
741
735
|
"dist",
|
|
742
736
|
"commands",
|
|
743
|
-
"
|
|
744
|
-
"
|
|
737
|
+
"billing",
|
|
738
|
+
"card-setup.js"
|
|
745
739
|
]
|
|
746
740
|
},
|
|
747
|
-
"
|
|
741
|
+
"billing:llm-costs": {
|
|
748
742
|
"aliases": [],
|
|
749
743
|
"args": {},
|
|
750
|
-
"description": "
|
|
744
|
+
"description": "List available LLMs and their per-token costs",
|
|
751
745
|
"flags": {
|
|
752
746
|
"json": {
|
|
753
747
|
"description": "Format output as json.",
|
|
@@ -779,11 +773,18 @@
|
|
|
779
773
|
"hasDynamicHelp": false,
|
|
780
774
|
"multiple": false,
|
|
781
775
|
"type": "option"
|
|
776
|
+
},
|
|
777
|
+
"provider": {
|
|
778
|
+
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
779
|
+
"name": "provider",
|
|
780
|
+
"hasDynamicHelp": false,
|
|
781
|
+
"multiple": false,
|
|
782
|
+
"type": "option"
|
|
782
783
|
}
|
|
783
784
|
},
|
|
784
785
|
"hasDynamicHelp": false,
|
|
785
786
|
"hiddenAliases": [],
|
|
786
|
-
"id": "
|
|
787
|
+
"id": "billing:llm-costs",
|
|
787
788
|
"pluginAlias": "faces-cli",
|
|
788
789
|
"pluginName": "faces-cli",
|
|
789
790
|
"pluginType": "core",
|
|
@@ -793,14 +794,14 @@
|
|
|
793
794
|
"relativePath": [
|
|
794
795
|
"dist",
|
|
795
796
|
"commands",
|
|
796
|
-
"
|
|
797
|
-
"
|
|
797
|
+
"billing",
|
|
798
|
+
"llm-costs.js"
|
|
798
799
|
]
|
|
799
800
|
},
|
|
800
|
-
"
|
|
801
|
+
"billing:topup": {
|
|
801
802
|
"aliases": [],
|
|
802
803
|
"args": {},
|
|
803
|
-
"description": "
|
|
804
|
+
"description": "Top up credit balance using saved payment method",
|
|
804
805
|
"flags": {
|
|
805
806
|
"json": {
|
|
806
807
|
"description": "Format output as json.",
|
|
@@ -833,53 +834,25 @@
|
|
|
833
834
|
"multiple": false,
|
|
834
835
|
"type": "option"
|
|
835
836
|
},
|
|
836
|
-
"
|
|
837
|
-
"description": "
|
|
838
|
-
"name": "
|
|
839
|
-
"required": true,
|
|
840
|
-
"hasDynamicHelp": false,
|
|
841
|
-
"multiple": false,
|
|
842
|
-
"type": "option"
|
|
843
|
-
},
|
|
844
|
-
"password": {
|
|
845
|
-
"description": "Password",
|
|
846
|
-
"name": "password",
|
|
847
|
-
"required": true,
|
|
848
|
-
"hasDynamicHelp": false,
|
|
849
|
-
"multiple": false,
|
|
850
|
-
"type": "option"
|
|
851
|
-
},
|
|
852
|
-
"username": {
|
|
853
|
-
"description": "Username (lowercase, dashes, numbers)",
|
|
854
|
-
"name": "username",
|
|
837
|
+
"amount": {
|
|
838
|
+
"description": "Top-up amount in USD (min $1)",
|
|
839
|
+
"name": "amount",
|
|
855
840
|
"required": true,
|
|
856
841
|
"hasDynamicHelp": false,
|
|
857
842
|
"multiple": false,
|
|
858
843
|
"type": "option"
|
|
859
844
|
},
|
|
860
|
-
"
|
|
861
|
-
"description": "
|
|
862
|
-
"name": "
|
|
863
|
-
"hasDynamicHelp": false,
|
|
864
|
-
"multiple": false,
|
|
865
|
-
"type": "option"
|
|
866
|
-
},
|
|
867
|
-
"plan": {
|
|
868
|
-
"description": "Plan to subscribe to: \"free\" ($5 activation) or \"connect\" ($17/mo, no activation fee)",
|
|
869
|
-
"name": "plan",
|
|
870
|
-
"default": "free",
|
|
845
|
+
"payment-ref": {
|
|
846
|
+
"description": "Payment reference (admin/test path)",
|
|
847
|
+
"name": "payment-ref",
|
|
871
848
|
"hasDynamicHelp": false,
|
|
872
849
|
"multiple": false,
|
|
873
|
-
"options": [
|
|
874
|
-
"free",
|
|
875
|
-
"connect"
|
|
876
|
-
],
|
|
877
850
|
"type": "option"
|
|
878
851
|
}
|
|
879
852
|
},
|
|
880
853
|
"hasDynamicHelp": false,
|
|
881
854
|
"hiddenAliases": [],
|
|
882
|
-
"id": "
|
|
855
|
+
"id": "billing:topup",
|
|
883
856
|
"pluginAlias": "faces-cli",
|
|
884
857
|
"pluginName": "faces-cli",
|
|
885
858
|
"pluginType": "core",
|
|
@@ -889,14 +862,14 @@
|
|
|
889
862
|
"relativePath": [
|
|
890
863
|
"dist",
|
|
891
864
|
"commands",
|
|
892
|
-
"
|
|
893
|
-
"
|
|
865
|
+
"billing",
|
|
866
|
+
"topup.js"
|
|
894
867
|
]
|
|
895
868
|
},
|
|
896
|
-
"
|
|
869
|
+
"billing:usage": {
|
|
897
870
|
"aliases": [],
|
|
898
871
|
"args": {},
|
|
899
|
-
"description": "
|
|
872
|
+
"description": "Aggregated usage analytics",
|
|
900
873
|
"flags": {
|
|
901
874
|
"json": {
|
|
902
875
|
"description": "Format output as json.",
|
|
@@ -928,11 +901,38 @@
|
|
|
928
901
|
"hasDynamicHelp": false,
|
|
929
902
|
"multiple": false,
|
|
930
903
|
"type": "option"
|
|
904
|
+
},
|
|
905
|
+
"group-by": {
|
|
906
|
+
"description": "Group results",
|
|
907
|
+
"name": "group-by",
|
|
908
|
+
"hasDynamicHelp": false,
|
|
909
|
+
"multiple": false,
|
|
910
|
+
"options": [
|
|
911
|
+
"api_key",
|
|
912
|
+
"model",
|
|
913
|
+
"llm",
|
|
914
|
+
"date"
|
|
915
|
+
],
|
|
916
|
+
"type": "option"
|
|
917
|
+
},
|
|
918
|
+
"from": {
|
|
919
|
+
"description": "Start date (YYYY-MM-DD)",
|
|
920
|
+
"name": "from",
|
|
921
|
+
"hasDynamicHelp": false,
|
|
922
|
+
"multiple": false,
|
|
923
|
+
"type": "option"
|
|
924
|
+
},
|
|
925
|
+
"to": {
|
|
926
|
+
"description": "End date (YYYY-MM-DD)",
|
|
927
|
+
"name": "to",
|
|
928
|
+
"hasDynamicHelp": false,
|
|
929
|
+
"multiple": false,
|
|
930
|
+
"type": "option"
|
|
931
931
|
}
|
|
932
932
|
},
|
|
933
933
|
"hasDynamicHelp": false,
|
|
934
934
|
"hiddenAliases": [],
|
|
935
|
-
"id": "
|
|
935
|
+
"id": "billing:usage",
|
|
936
936
|
"pluginAlias": "faces-cli",
|
|
937
937
|
"pluginName": "faces-cli",
|
|
938
938
|
"pluginType": "core",
|
|
@@ -942,8 +942,8 @@
|
|
|
942
942
|
"relativePath": [
|
|
943
943
|
"dist",
|
|
944
944
|
"commands",
|
|
945
|
-
"
|
|
946
|
-
"
|
|
945
|
+
"billing",
|
|
946
|
+
"usage.js"
|
|
947
947
|
]
|
|
948
948
|
},
|
|
949
949
|
"catalog:backup": {
|
|
@@ -1372,7 +1372,7 @@
|
|
|
1372
1372
|
"type": "boolean"
|
|
1373
1373
|
},
|
|
1374
1374
|
"medium": {
|
|
1375
|
-
"description": "What sort of writing this is — e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (
|
|
1375
|
+
"description": "What sort of writing this is — e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not.",
|
|
1376
1376
|
"name": "medium",
|
|
1377
1377
|
"hasDynamicHelp": false,
|
|
1378
1378
|
"multiple": false,
|
|
@@ -1474,7 +1474,7 @@
|
|
|
1474
1474
|
"type": "option"
|
|
1475
1475
|
},
|
|
1476
1476
|
"medium": {
|
|
1477
|
-
"description": "What sort of writing this is — e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (
|
|
1477
|
+
"description": "What sort of writing this is — e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not.",
|
|
1478
1478
|
"name": "medium",
|
|
1479
1479
|
"hasDynamicHelp": false,
|
|
1480
1480
|
"multiple": false,
|
|
@@ -1568,7 +1568,7 @@
|
|
|
1568
1568
|
"type": "boolean"
|
|
1569
1569
|
},
|
|
1570
1570
|
"medium": {
|
|
1571
|
-
"description": "What sort of writing this is — e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (
|
|
1571
|
+
"description": "What sort of writing this is — e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not.",
|
|
1572
1572
|
"name": "medium",
|
|
1573
1573
|
"hasDynamicHelp": false,
|
|
1574
1574
|
"multiple": false,
|
|
@@ -1703,7 +1703,7 @@
|
|
|
1703
1703
|
"type": "boolean"
|
|
1704
1704
|
},
|
|
1705
1705
|
"medium": {
|
|
1706
|
-
"description": "What sort of writing this is — e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (
|
|
1706
|
+
"description": "What sort of writing this is — e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not.",
|
|
1707
1707
|
"name": "medium",
|
|
1708
1708
|
"hasDynamicHelp": false,
|
|
1709
1709
|
"multiple": false,
|
|
@@ -1750,10 +1750,10 @@
|
|
|
1750
1750
|
"thread.js"
|
|
1751
1751
|
]
|
|
1752
1752
|
},
|
|
1753
|
-
"
|
|
1753
|
+
"compile:all": {
|
|
1754
1754
|
"aliases": [],
|
|
1755
1755
|
"args": {},
|
|
1756
|
-
"description": "
|
|
1756
|
+
"description": "Compile all uncompiled documents and threads across all faces",
|
|
1757
1757
|
"flags": {
|
|
1758
1758
|
"json": {
|
|
1759
1759
|
"description": "Format output as json.",
|
|
@@ -1786,16 +1786,18 @@
|
|
|
1786
1786
|
"multiple": false,
|
|
1787
1787
|
"type": "option"
|
|
1788
1788
|
},
|
|
1789
|
-
"
|
|
1790
|
-
"description": "
|
|
1791
|
-
"name": "
|
|
1792
|
-
"
|
|
1793
|
-
"
|
|
1789
|
+
"timeout": {
|
|
1790
|
+
"description": "Per-item compile timeout in seconds (default: 600)",
|
|
1791
|
+
"name": "timeout",
|
|
1792
|
+
"default": 600,
|
|
1793
|
+
"hasDynamicHelp": false,
|
|
1794
|
+
"multiple": false,
|
|
1795
|
+
"type": "option"
|
|
1794
1796
|
}
|
|
1795
1797
|
},
|
|
1796
1798
|
"hasDynamicHelp": false,
|
|
1797
1799
|
"hiddenAliases": [],
|
|
1798
|
-
"id": "
|
|
1800
|
+
"id": "compile:all",
|
|
1799
1801
|
"pluginAlias": "faces-cli",
|
|
1800
1802
|
"pluginName": "faces-cli",
|
|
1801
1803
|
"pluginType": "core",
|
|
@@ -1805,25 +1807,20 @@
|
|
|
1805
1807
|
"relativePath": [
|
|
1806
1808
|
"dist",
|
|
1807
1809
|
"commands",
|
|
1808
|
-
"
|
|
1809
|
-
"
|
|
1810
|
+
"compile",
|
|
1811
|
+
"all.js"
|
|
1810
1812
|
]
|
|
1811
1813
|
},
|
|
1812
|
-
"
|
|
1814
|
+
"compile:import": {
|
|
1813
1815
|
"aliases": [],
|
|
1814
1816
|
"args": {
|
|
1815
|
-
"
|
|
1816
|
-
"description": "
|
|
1817
|
-
"name": "
|
|
1818
|
-
"required": true
|
|
1819
|
-
},
|
|
1820
|
-
"value": {
|
|
1821
|
-
"description": "Config value",
|
|
1822
|
-
"name": "value",
|
|
1817
|
+
"face_id": {
|
|
1818
|
+
"description": "Face alias",
|
|
1819
|
+
"name": "face_id",
|
|
1823
1820
|
"required": true
|
|
1824
1821
|
}
|
|
1825
1822
|
},
|
|
1826
|
-
"description": "
|
|
1823
|
+
"description": "Import a YouTube video into a face via server-side download and transcription",
|
|
1827
1824
|
"flags": {
|
|
1828
1825
|
"json": {
|
|
1829
1826
|
"description": "Format output as json.",
|
|
@@ -1855,64 +1852,56 @@
|
|
|
1855
1852
|
"hasDynamicHelp": false,
|
|
1856
1853
|
"multiple": false,
|
|
1857
1854
|
"type": "option"
|
|
1858
|
-
}
|
|
1859
|
-
},
|
|
1860
|
-
"hasDynamicHelp": false,
|
|
1861
|
-
"hiddenAliases": [],
|
|
1862
|
-
"id": "config:set",
|
|
1863
|
-
"pluginAlias": "faces-cli",
|
|
1864
|
-
"pluginName": "faces-cli",
|
|
1865
|
-
"pluginType": "core",
|
|
1866
|
-
"strict": true,
|
|
1867
|
-
"enableJsonFlag": true,
|
|
1868
|
-
"isESM": true,
|
|
1869
|
-
"relativePath": [
|
|
1870
|
-
"dist",
|
|
1871
|
-
"commands",
|
|
1872
|
-
"config",
|
|
1873
|
-
"set.js"
|
|
1874
|
-
]
|
|
1875
|
-
},
|
|
1876
|
-
"config:show": {
|
|
1877
|
-
"aliases": [],
|
|
1878
|
-
"args": {},
|
|
1879
|
-
"description": "Print current config (credentials are masked)",
|
|
1880
|
-
"flags": {
|
|
1881
|
-
"json": {
|
|
1882
|
-
"description": "Format output as json.",
|
|
1883
|
-
"helpGroup": "GLOBAL",
|
|
1884
|
-
"name": "json",
|
|
1885
|
-
"allowNo": false,
|
|
1886
|
-
"type": "boolean"
|
|
1887
1855
|
},
|
|
1888
|
-
"
|
|
1889
|
-
"description": "
|
|
1890
|
-
"
|
|
1891
|
-
"
|
|
1856
|
+
"url": {
|
|
1857
|
+
"description": "YouTube URL (youtube.com/watch?v=... or youtu.be/...)",
|
|
1858
|
+
"name": "url",
|
|
1859
|
+
"required": true,
|
|
1892
1860
|
"hasDynamicHelp": false,
|
|
1893
1861
|
"multiple": false,
|
|
1894
1862
|
"type": "option"
|
|
1895
1863
|
},
|
|
1896
|
-
"
|
|
1897
|
-
"description": "
|
|
1898
|
-
"
|
|
1899
|
-
"
|
|
1864
|
+
"type": {
|
|
1865
|
+
"description": "\"document\" for solo talks, lectures, monologues; \"thread\" for interviews or multi-speaker conversations",
|
|
1866
|
+
"name": "type",
|
|
1867
|
+
"default": "document",
|
|
1900
1868
|
"hasDynamicHelp": false,
|
|
1901
1869
|
"multiple": false,
|
|
1870
|
+
"options": [
|
|
1871
|
+
"document",
|
|
1872
|
+
"thread"
|
|
1873
|
+
],
|
|
1902
1874
|
"type": "option"
|
|
1903
1875
|
},
|
|
1904
|
-
"
|
|
1905
|
-
"description": "
|
|
1906
|
-
"
|
|
1907
|
-
"
|
|
1876
|
+
"perspective": {
|
|
1877
|
+
"description": "\"first-person\" if the face is the speaker; \"third-person\" if the video is about the face",
|
|
1878
|
+
"name": "perspective",
|
|
1879
|
+
"default": "third-person",
|
|
1880
|
+
"hasDynamicHelp": false,
|
|
1881
|
+
"multiple": false,
|
|
1882
|
+
"options": [
|
|
1883
|
+
"first-person",
|
|
1884
|
+
"third-person"
|
|
1885
|
+
],
|
|
1886
|
+
"type": "option"
|
|
1887
|
+
},
|
|
1888
|
+
"face-speaker": {
|
|
1889
|
+
"description": "For --type thread: AssemblyAI speaker label (e.g. \"A\") that corresponds to the face. Defaults to first detected speaker.",
|
|
1890
|
+
"name": "face-speaker",
|
|
1908
1891
|
"hasDynamicHelp": false,
|
|
1909
1892
|
"multiple": false,
|
|
1910
1893
|
"type": "option"
|
|
1894
|
+
},
|
|
1895
|
+
"no-wait": {
|
|
1896
|
+
"description": "Return immediately after import starts (do not poll for transcription). Prints the ID for manual polling.",
|
|
1897
|
+
"name": "no-wait",
|
|
1898
|
+
"allowNo": false,
|
|
1899
|
+
"type": "boolean"
|
|
1911
1900
|
}
|
|
1912
1901
|
},
|
|
1913
1902
|
"hasDynamicHelp": false,
|
|
1914
1903
|
"hiddenAliases": [],
|
|
1915
|
-
"id": "
|
|
1904
|
+
"id": "compile:import",
|
|
1916
1905
|
"pluginAlias": "faces-cli",
|
|
1917
1906
|
"pluginName": "faces-cli",
|
|
1918
1907
|
"pluginType": "core",
|
|
@@ -1922,14 +1911,14 @@
|
|
|
1922
1911
|
"relativePath": [
|
|
1923
1912
|
"dist",
|
|
1924
1913
|
"commands",
|
|
1925
|
-
"
|
|
1926
|
-
"
|
|
1914
|
+
"compile",
|
|
1915
|
+
"import.js"
|
|
1927
1916
|
]
|
|
1928
1917
|
},
|
|
1929
|
-
"
|
|
1918
|
+
"compile:stats": {
|
|
1930
1919
|
"aliases": [],
|
|
1931
1920
|
"args": {},
|
|
1932
|
-
"description": "
|
|
1921
|
+
"description": "Show compilation stats per face",
|
|
1933
1922
|
"flags": {
|
|
1934
1923
|
"json": {
|
|
1935
1924
|
"description": "Format output as json.",
|
|
@@ -1965,7 +1954,7 @@
|
|
|
1965
1954
|
},
|
|
1966
1955
|
"hasDynamicHelp": false,
|
|
1967
1956
|
"hiddenAliases": [],
|
|
1968
|
-
"id": "
|
|
1957
|
+
"id": "compile:stats",
|
|
1969
1958
|
"pluginAlias": "faces-cli",
|
|
1970
1959
|
"pluginName": "faces-cli",
|
|
1971
1960
|
"pluginType": "core",
|
|
@@ -1975,14 +1964,20 @@
|
|
|
1975
1964
|
"relativePath": [
|
|
1976
1965
|
"dist",
|
|
1977
1966
|
"commands",
|
|
1978
|
-
"
|
|
1979
|
-
"
|
|
1967
|
+
"compile",
|
|
1968
|
+
"stats.js"
|
|
1980
1969
|
]
|
|
1981
1970
|
},
|
|
1982
|
-
"
|
|
1971
|
+
"compile:upload": {
|
|
1983
1972
|
"aliases": [],
|
|
1984
|
-
"args": {
|
|
1985
|
-
|
|
1973
|
+
"args": {
|
|
1974
|
+
"alias": {
|
|
1975
|
+
"description": "Face alias",
|
|
1976
|
+
"name": "alias",
|
|
1977
|
+
"required": true
|
|
1978
|
+
}
|
|
1979
|
+
},
|
|
1980
|
+
"description": "Upload a file (text/PDF/Word .docx/audio/video) to compile into a face",
|
|
1986
1981
|
"flags": {
|
|
1987
1982
|
"json": {
|
|
1988
1983
|
"description": "Format output as json.",
|
|
@@ -2015,85 +2010,121 @@
|
|
|
2015
2010
|
"multiple": false,
|
|
2016
2011
|
"type": "option"
|
|
2017
2012
|
},
|
|
2018
|
-
"
|
|
2019
|
-
"description": "
|
|
2020
|
-
"name": "
|
|
2013
|
+
"file": {
|
|
2014
|
+
"description": "File to upload",
|
|
2015
|
+
"name": "file",
|
|
2021
2016
|
"required": true,
|
|
2022
2017
|
"hasDynamicHelp": false,
|
|
2023
2018
|
"multiple": false,
|
|
2024
2019
|
"type": "option"
|
|
2025
2020
|
},
|
|
2026
|
-
"
|
|
2027
|
-
"description": "
|
|
2028
|
-
"name": "
|
|
2029
|
-
"
|
|
2021
|
+
"kind": {
|
|
2022
|
+
"description": "Upload kind: document or thread",
|
|
2023
|
+
"name": "kind",
|
|
2024
|
+
"default": "document",
|
|
2030
2025
|
"hasDynamicHelp": false,
|
|
2031
2026
|
"multiple": false,
|
|
2027
|
+
"options": [
|
|
2028
|
+
"document",
|
|
2029
|
+
"thread"
|
|
2030
|
+
],
|
|
2032
2031
|
"type": "option"
|
|
2033
2032
|
},
|
|
2034
|
-
"
|
|
2035
|
-
"description": "
|
|
2036
|
-
"name": "
|
|
2033
|
+
"perspective": {
|
|
2034
|
+
"description": "Perspective (document only)",
|
|
2035
|
+
"name": "perspective",
|
|
2036
|
+
"default": "third-person",
|
|
2037
2037
|
"hasDynamicHelp": false,
|
|
2038
2038
|
"multiple": false,
|
|
2039
|
+
"options": [
|
|
2040
|
+
"first-person",
|
|
2041
|
+
"third-person"
|
|
2042
|
+
],
|
|
2039
2043
|
"type": "option"
|
|
2040
2044
|
},
|
|
2041
|
-
"
|
|
2042
|
-
"description": "
|
|
2043
|
-
"name": "
|
|
2044
|
-
"hasDynamicHelp": false,
|
|
2045
|
-
"multiple": true,
|
|
2046
|
-
"type": "option"
|
|
2047
|
-
},
|
|
2048
|
-
"default-model": {
|
|
2049
|
-
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
2050
|
-
"name": "default-model",
|
|
2045
|
+
"medium": {
|
|
2046
|
+
"description": "What sort of writing this is — e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not. Only valid with --kind document.",
|
|
2047
|
+
"name": "medium",
|
|
2051
2048
|
"hasDynamicHelp": false,
|
|
2052
2049
|
"multiple": false,
|
|
2053
2050
|
"type": "option"
|
|
2054
2051
|
},
|
|
2055
|
-
"
|
|
2056
|
-
"description": "
|
|
2057
|
-
"name": "
|
|
2052
|
+
"face-speaker": {
|
|
2053
|
+
"description": "Speaker name to map to the face (thread only). If omitted, auto-detected from face name.",
|
|
2054
|
+
"name": "face-speaker",
|
|
2058
2055
|
"hasDynamicHelp": false,
|
|
2059
2056
|
"multiple": false,
|
|
2060
2057
|
"type": "option"
|
|
2061
2058
|
},
|
|
2062
|
-
"
|
|
2063
|
-
"description": "
|
|
2064
|
-
"name": "
|
|
2065
|
-
"
|
|
2066
|
-
"
|
|
2067
|
-
|
|
2059
|
+
"no-wait": {
|
|
2060
|
+
"description": "Return immediately after upload (do not poll for transcription). Prints the ID for manual polling.",
|
|
2061
|
+
"name": "no-wait",
|
|
2062
|
+
"allowNo": false,
|
|
2063
|
+
"type": "boolean"
|
|
2064
|
+
}
|
|
2065
|
+
},
|
|
2066
|
+
"hasDynamicHelp": false,
|
|
2067
|
+
"hiddenAliases": [],
|
|
2068
|
+
"id": "compile:upload",
|
|
2069
|
+
"pluginAlias": "faces-cli",
|
|
2070
|
+
"pluginName": "faces-cli",
|
|
2071
|
+
"pluginType": "core",
|
|
2072
|
+
"strict": true,
|
|
2073
|
+
"enableJsonFlag": true,
|
|
2074
|
+
"isESM": true,
|
|
2075
|
+
"relativePath": [
|
|
2076
|
+
"dist",
|
|
2077
|
+
"commands",
|
|
2078
|
+
"compile",
|
|
2079
|
+
"upload.js"
|
|
2080
|
+
]
|
|
2081
|
+
},
|
|
2082
|
+
"config:clear": {
|
|
2083
|
+
"aliases": [],
|
|
2084
|
+
"args": {},
|
|
2085
|
+
"description": "Delete all saved credentials and config",
|
|
2086
|
+
"flags": {
|
|
2087
|
+
"json": {
|
|
2088
|
+
"description": "Format output as json.",
|
|
2089
|
+
"helpGroup": "GLOBAL",
|
|
2090
|
+
"name": "json",
|
|
2091
|
+
"allowNo": false,
|
|
2092
|
+
"type": "boolean"
|
|
2068
2093
|
},
|
|
2069
|
-
"
|
|
2070
|
-
"description": "
|
|
2071
|
-
"
|
|
2094
|
+
"base-url": {
|
|
2095
|
+
"description": "API base URL",
|
|
2096
|
+
"env": "FACES_BASE_URL",
|
|
2097
|
+
"name": "base-url",
|
|
2072
2098
|
"hasDynamicHelp": false,
|
|
2073
|
-
"multiple":
|
|
2099
|
+
"multiple": false,
|
|
2074
2100
|
"type": "option"
|
|
2075
2101
|
},
|
|
2076
|
-
"
|
|
2077
|
-
"description": "
|
|
2078
|
-
"
|
|
2102
|
+
"token": {
|
|
2103
|
+
"description": "JWT bearer token",
|
|
2104
|
+
"env": "FACES_TOKEN",
|
|
2105
|
+
"name": "token",
|
|
2079
2106
|
"hasDynamicHelp": false,
|
|
2080
2107
|
"multiple": false,
|
|
2081
2108
|
"type": "option"
|
|
2082
2109
|
},
|
|
2083
|
-
"
|
|
2084
|
-
"description": "
|
|
2085
|
-
"
|
|
2086
|
-
|
|
2087
|
-
],
|
|
2088
|
-
"name": "profile-addendum-file",
|
|
2110
|
+
"api-key": {
|
|
2111
|
+
"description": "API key",
|
|
2112
|
+
"env": "FACES_API_KEY",
|
|
2113
|
+
"name": "api-key",
|
|
2089
2114
|
"hasDynamicHelp": false,
|
|
2090
2115
|
"multiple": false,
|
|
2091
2116
|
"type": "option"
|
|
2117
|
+
},
|
|
2118
|
+
"yes": {
|
|
2119
|
+
"description": "Skip confirmation",
|
|
2120
|
+
"name": "yes",
|
|
2121
|
+
"allowNo": false,
|
|
2122
|
+
"type": "boolean"
|
|
2092
2123
|
}
|
|
2093
2124
|
},
|
|
2094
2125
|
"hasDynamicHelp": false,
|
|
2095
2126
|
"hiddenAliases": [],
|
|
2096
|
-
"id": "
|
|
2127
|
+
"id": "config:clear",
|
|
2097
2128
|
"pluginAlias": "faces-cli",
|
|
2098
2129
|
"pluginName": "faces-cli",
|
|
2099
2130
|
"pluginType": "core",
|
|
@@ -2103,20 +2134,25 @@
|
|
|
2103
2134
|
"relativePath": [
|
|
2104
2135
|
"dist",
|
|
2105
2136
|
"commands",
|
|
2106
|
-
"
|
|
2107
|
-
"
|
|
2137
|
+
"config",
|
|
2138
|
+
"clear.js"
|
|
2108
2139
|
]
|
|
2109
2140
|
},
|
|
2110
|
-
"
|
|
2141
|
+
"config:set": {
|
|
2111
2142
|
"aliases": [],
|
|
2112
2143
|
"args": {
|
|
2113
|
-
"
|
|
2114
|
-
"description": "
|
|
2115
|
-
"name": "
|
|
2144
|
+
"key": {
|
|
2145
|
+
"description": "Config key",
|
|
2146
|
+
"name": "key",
|
|
2147
|
+
"required": true
|
|
2148
|
+
},
|
|
2149
|
+
"value": {
|
|
2150
|
+
"description": "Config value",
|
|
2151
|
+
"name": "value",
|
|
2116
2152
|
"required": true
|
|
2117
2153
|
}
|
|
2118
2154
|
},
|
|
2119
|
-
"description": "
|
|
2155
|
+
"description": "Set a config value (e.g. base_url, api_key, token)",
|
|
2120
2156
|
"flags": {
|
|
2121
2157
|
"json": {
|
|
2122
2158
|
"description": "Format output as json.",
|
|
@@ -2148,17 +2184,11 @@
|
|
|
2148
2184
|
"hasDynamicHelp": false,
|
|
2149
2185
|
"multiple": false,
|
|
2150
2186
|
"type": "option"
|
|
2151
|
-
},
|
|
2152
|
-
"yes": {
|
|
2153
|
-
"description": "Skip confirmation",
|
|
2154
|
-
"name": "yes",
|
|
2155
|
-
"allowNo": false,
|
|
2156
|
-
"type": "boolean"
|
|
2157
2187
|
}
|
|
2158
2188
|
},
|
|
2159
2189
|
"hasDynamicHelp": false,
|
|
2160
2190
|
"hiddenAliases": [],
|
|
2161
|
-
"id": "
|
|
2191
|
+
"id": "config:set",
|
|
2162
2192
|
"pluginAlias": "faces-cli",
|
|
2163
2193
|
"pluginName": "faces-cli",
|
|
2164
2194
|
"pluginType": "core",
|
|
@@ -2168,14 +2198,14 @@
|
|
|
2168
2198
|
"relativePath": [
|
|
2169
2199
|
"dist",
|
|
2170
2200
|
"commands",
|
|
2171
|
-
"
|
|
2172
|
-
"
|
|
2201
|
+
"config",
|
|
2202
|
+
"set.js"
|
|
2173
2203
|
]
|
|
2174
2204
|
},
|
|
2175
|
-
"
|
|
2205
|
+
"config:show": {
|
|
2176
2206
|
"aliases": [],
|
|
2177
2207
|
"args": {},
|
|
2178
|
-
"description": "
|
|
2208
|
+
"description": "Print current config (credentials are masked)",
|
|
2179
2209
|
"flags": {
|
|
2180
2210
|
"json": {
|
|
2181
2211
|
"description": "Format output as json.",
|
|
@@ -2207,19 +2237,11 @@
|
|
|
2207
2237
|
"hasDynamicHelp": false,
|
|
2208
2238
|
"multiple": false,
|
|
2209
2239
|
"type": "option"
|
|
2210
|
-
},
|
|
2211
|
-
"face": {
|
|
2212
|
-
"description": "Face alias to include (repeatable, min 2)",
|
|
2213
|
-
"name": "face",
|
|
2214
|
-
"required": true,
|
|
2215
|
-
"hasDynamicHelp": false,
|
|
2216
|
-
"multiple": true,
|
|
2217
|
-
"type": "option"
|
|
2218
2240
|
}
|
|
2219
2241
|
},
|
|
2220
2242
|
"hasDynamicHelp": false,
|
|
2221
2243
|
"hiddenAliases": [],
|
|
2222
|
-
"id": "
|
|
2244
|
+
"id": "config:show",
|
|
2223
2245
|
"pluginAlias": "faces-cli",
|
|
2224
2246
|
"pluginName": "faces-cli",
|
|
2225
2247
|
"pluginType": "core",
|
|
@@ -2229,20 +2251,14 @@
|
|
|
2229
2251
|
"relativePath": [
|
|
2230
2252
|
"dist",
|
|
2231
2253
|
"commands",
|
|
2232
|
-
"
|
|
2233
|
-
"
|
|
2254
|
+
"config",
|
|
2255
|
+
"show.js"
|
|
2234
2256
|
]
|
|
2235
2257
|
},
|
|
2236
|
-
"
|
|
2258
|
+
"keys:create": {
|
|
2237
2259
|
"aliases": [],
|
|
2238
|
-
"args": {
|
|
2239
|
-
|
|
2240
|
-
"description": "Face alias",
|
|
2241
|
-
"name": "face_id",
|
|
2242
|
-
"required": true
|
|
2243
|
-
}
|
|
2244
|
-
},
|
|
2245
|
-
"description": "Edit a face's metadata",
|
|
2260
|
+
"args": {},
|
|
2261
|
+
"description": "Create a new API key (JWT required). The new key is saved to ~/.faces/config.json as api_key by default; pass --no-save to skip.",
|
|
2246
2262
|
"flags": {
|
|
2247
2263
|
"json": {
|
|
2248
2264
|
"description": "Format output as json.",
|
|
@@ -2276,85 +2292,104 @@
|
|
|
2276
2292
|
"type": "option"
|
|
2277
2293
|
},
|
|
2278
2294
|
"name": {
|
|
2279
|
-
"description": "
|
|
2295
|
+
"description": "Key name/label",
|
|
2280
2296
|
"name": "name",
|
|
2297
|
+
"required": true,
|
|
2281
2298
|
"hasDynamicHelp": false,
|
|
2282
2299
|
"multiple": false,
|
|
2283
2300
|
"type": "option"
|
|
2284
2301
|
},
|
|
2285
|
-
"
|
|
2286
|
-
"description": "
|
|
2287
|
-
"name": "
|
|
2302
|
+
"expires-days": {
|
|
2303
|
+
"description": "Expiry in days (omit for no expiry)",
|
|
2304
|
+
"name": "expires-days",
|
|
2288
2305
|
"hasDynamicHelp": false,
|
|
2289
2306
|
"multiple": false,
|
|
2290
2307
|
"type": "option"
|
|
2291
2308
|
},
|
|
2292
|
-
"
|
|
2293
|
-
"description": "
|
|
2294
|
-
"name": "
|
|
2295
|
-
"hasDynamicHelp": false,
|
|
2296
|
-
"multiple": true,
|
|
2297
|
-
"type": "option"
|
|
2298
|
-
},
|
|
2299
|
-
"default-model": {
|
|
2300
|
-
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
2301
|
-
"name": "default-model",
|
|
2309
|
+
"budget": {
|
|
2310
|
+
"description": "Spend budget in USD",
|
|
2311
|
+
"name": "budget",
|
|
2302
2312
|
"hasDynamicHelp": false,
|
|
2303
2313
|
"multiple": false,
|
|
2304
2314
|
"type": "option"
|
|
2305
2315
|
},
|
|
2306
|
-
"
|
|
2307
|
-
"description": "
|
|
2308
|
-
"name": "
|
|
2316
|
+
"face": {
|
|
2317
|
+
"description": "Allowed face alias (repeatable)",
|
|
2318
|
+
"name": "face",
|
|
2309
2319
|
"hasDynamicHelp": false,
|
|
2310
|
-
"multiple":
|
|
2320
|
+
"multiple": true,
|
|
2311
2321
|
"type": "option"
|
|
2312
2322
|
},
|
|
2313
|
-
"
|
|
2314
|
-
"description": "
|
|
2315
|
-
"name": "
|
|
2323
|
+
"model": {
|
|
2324
|
+
"description": "Allowed model name (repeatable)",
|
|
2325
|
+
"name": "model",
|
|
2316
2326
|
"hasDynamicHelp": false,
|
|
2317
2327
|
"multiple": true,
|
|
2318
2328
|
"type": "option"
|
|
2319
2329
|
},
|
|
2320
|
-
"
|
|
2321
|
-
"description": "
|
|
2322
|
-
"name": "
|
|
2330
|
+
"save": {
|
|
2331
|
+
"description": "Save the new key to ~/.faces/config.json as api_key (default: true; use --no-save to skip)",
|
|
2332
|
+
"name": "save",
|
|
2333
|
+
"allowNo": true,
|
|
2334
|
+
"type": "boolean"
|
|
2335
|
+
}
|
|
2336
|
+
},
|
|
2337
|
+
"hasDynamicHelp": false,
|
|
2338
|
+
"hiddenAliases": [],
|
|
2339
|
+
"id": "keys:create",
|
|
2340
|
+
"pluginAlias": "faces-cli",
|
|
2341
|
+
"pluginName": "faces-cli",
|
|
2342
|
+
"pluginType": "core",
|
|
2343
|
+
"strict": true,
|
|
2344
|
+
"enableJsonFlag": true,
|
|
2345
|
+
"isESM": true,
|
|
2346
|
+
"relativePath": [
|
|
2347
|
+
"dist",
|
|
2348
|
+
"commands",
|
|
2349
|
+
"keys",
|
|
2350
|
+
"create.js"
|
|
2351
|
+
]
|
|
2352
|
+
},
|
|
2353
|
+
"keys:list": {
|
|
2354
|
+
"aliases": [],
|
|
2355
|
+
"args": {},
|
|
2356
|
+
"description": "List all API keys (JWT required)",
|
|
2357
|
+
"flags": {
|
|
2358
|
+
"json": {
|
|
2359
|
+
"description": "Format output as json.",
|
|
2360
|
+
"helpGroup": "GLOBAL",
|
|
2361
|
+
"name": "json",
|
|
2362
|
+
"allowNo": false,
|
|
2363
|
+
"type": "boolean"
|
|
2364
|
+
},
|
|
2365
|
+
"base-url": {
|
|
2366
|
+
"description": "API base URL",
|
|
2367
|
+
"env": "FACES_BASE_URL",
|
|
2368
|
+
"name": "base-url",
|
|
2323
2369
|
"hasDynamicHelp": false,
|
|
2324
|
-
"multiple":
|
|
2370
|
+
"multiple": false,
|
|
2325
2371
|
"type": "option"
|
|
2326
2372
|
},
|
|
2327
|
-
"
|
|
2328
|
-
"description": "
|
|
2329
|
-
"
|
|
2373
|
+
"token": {
|
|
2374
|
+
"description": "JWT bearer token",
|
|
2375
|
+
"env": "FACES_TOKEN",
|
|
2376
|
+
"name": "token",
|
|
2330
2377
|
"hasDynamicHelp": false,
|
|
2331
2378
|
"multiple": false,
|
|
2332
2379
|
"type": "option"
|
|
2333
2380
|
},
|
|
2334
|
-
"
|
|
2335
|
-
"description": "
|
|
2336
|
-
"
|
|
2337
|
-
|
|
2338
|
-
],
|
|
2339
|
-
"name": "profile-addendum-file",
|
|
2381
|
+
"api-key": {
|
|
2382
|
+
"description": "API key",
|
|
2383
|
+
"env": "FACES_API_KEY",
|
|
2384
|
+
"name": "api-key",
|
|
2340
2385
|
"hasDynamicHelp": false,
|
|
2341
2386
|
"multiple": false,
|
|
2342
2387
|
"type": "option"
|
|
2343
|
-
},
|
|
2344
|
-
"clear-profile-addendum": {
|
|
2345
|
-
"description": "Remove the per-face system prompt.",
|
|
2346
|
-
"exclusive": [
|
|
2347
|
-
"profile-addendum",
|
|
2348
|
-
"profile-addendum-file"
|
|
2349
|
-
],
|
|
2350
|
-
"name": "clear-profile-addendum",
|
|
2351
|
-
"allowNo": false,
|
|
2352
|
-
"type": "boolean"
|
|
2353
2388
|
}
|
|
2354
2389
|
},
|
|
2355
2390
|
"hasDynamicHelp": false,
|
|
2356
2391
|
"hiddenAliases": [],
|
|
2357
|
-
"id": "
|
|
2392
|
+
"id": "keys:list",
|
|
2358
2393
|
"pluginAlias": "faces-cli",
|
|
2359
2394
|
"pluginName": "faces-cli",
|
|
2360
2395
|
"pluginType": "core",
|
|
@@ -2364,20 +2399,20 @@
|
|
|
2364
2399
|
"relativePath": [
|
|
2365
2400
|
"dist",
|
|
2366
2401
|
"commands",
|
|
2367
|
-
"
|
|
2368
|
-
"
|
|
2402
|
+
"keys",
|
|
2403
|
+
"list.js"
|
|
2369
2404
|
]
|
|
2370
2405
|
},
|
|
2371
|
-
"
|
|
2406
|
+
"keys:revoke": {
|
|
2372
2407
|
"aliases": [],
|
|
2373
2408
|
"args": {
|
|
2374
|
-
"
|
|
2375
|
-
"description": "
|
|
2376
|
-
"name": "
|
|
2409
|
+
"key_id": {
|
|
2410
|
+
"description": "Key ID",
|
|
2411
|
+
"name": "key_id",
|
|
2377
2412
|
"required": true
|
|
2378
2413
|
}
|
|
2379
2414
|
},
|
|
2380
|
-
"description": "
|
|
2415
|
+
"description": "Revoke an API key (JWT required)",
|
|
2381
2416
|
"flags": {
|
|
2382
2417
|
"json": {
|
|
2383
2418
|
"description": "Format output as json.",
|
|
@@ -2410,23 +2445,16 @@
|
|
|
2410
2445
|
"multiple": false,
|
|
2411
2446
|
"type": "option"
|
|
2412
2447
|
},
|
|
2413
|
-
"
|
|
2414
|
-
"description": "
|
|
2415
|
-
"name": "
|
|
2416
|
-
"hasDynamicHelp": false,
|
|
2417
|
-
"multiple": false,
|
|
2418
|
-
"type": "option"
|
|
2419
|
-
},
|
|
2420
|
-
"full": {
|
|
2421
|
-
"description": "Print the full profile_addendum instead of a truncated preview",
|
|
2422
|
-
"name": "full",
|
|
2448
|
+
"yes": {
|
|
2449
|
+
"description": "Skip confirmation",
|
|
2450
|
+
"name": "yes",
|
|
2423
2451
|
"allowNo": false,
|
|
2424
2452
|
"type": "boolean"
|
|
2425
2453
|
}
|
|
2426
2454
|
},
|
|
2427
2455
|
"hasDynamicHelp": false,
|
|
2428
2456
|
"hiddenAliases": [],
|
|
2429
|
-
"id": "
|
|
2457
|
+
"id": "keys:revoke",
|
|
2430
2458
|
"pluginAlias": "faces-cli",
|
|
2431
2459
|
"pluginName": "faces-cli",
|
|
2432
2460
|
"pluginType": "core",
|
|
@@ -2436,14 +2464,20 @@
|
|
|
2436
2464
|
"relativePath": [
|
|
2437
2465
|
"dist",
|
|
2438
2466
|
"commands",
|
|
2439
|
-
"
|
|
2440
|
-
"
|
|
2467
|
+
"keys",
|
|
2468
|
+
"revoke.js"
|
|
2441
2469
|
]
|
|
2442
2470
|
},
|
|
2443
|
-
"
|
|
2471
|
+
"keys:update": {
|
|
2444
2472
|
"aliases": [],
|
|
2445
|
-
"args": {
|
|
2446
|
-
|
|
2473
|
+
"args": {
|
|
2474
|
+
"key_id": {
|
|
2475
|
+
"description": "Key ID",
|
|
2476
|
+
"name": "key_id",
|
|
2477
|
+
"required": true
|
|
2478
|
+
}
|
|
2479
|
+
},
|
|
2480
|
+
"description": "Update API key metadata (JWT required)",
|
|
2447
2481
|
"flags": {
|
|
2448
2482
|
"json": {
|
|
2449
2483
|
"description": "Format output as json.",
|
|
@@ -2476,63 +2510,30 @@
|
|
|
2476
2510
|
"multiple": false,
|
|
2477
2511
|
"type": "option"
|
|
2478
2512
|
},
|
|
2479
|
-
"
|
|
2480
|
-
"description": "
|
|
2481
|
-
"name": "
|
|
2482
|
-
"hasDynamicHelp": false,
|
|
2483
|
-
"multiple": true,
|
|
2484
|
-
"type": "option"
|
|
2485
|
-
},
|
|
2486
|
-
"team": {
|
|
2487
|
-
"description": "Filter by team ID (repeatable, OR logic)",
|
|
2488
|
-
"name": "team",
|
|
2513
|
+
"name": {
|
|
2514
|
+
"description": "New key name",
|
|
2515
|
+
"name": "name",
|
|
2489
2516
|
"hasDynamicHelp": false,
|
|
2490
|
-
"multiple":
|
|
2517
|
+
"multiple": false,
|
|
2491
2518
|
"type": "option"
|
|
2492
2519
|
},
|
|
2493
|
-
"
|
|
2494
|
-
"description": "
|
|
2495
|
-
"name": "
|
|
2520
|
+
"budget": {
|
|
2521
|
+
"description": "New spend budget in USD",
|
|
2522
|
+
"name": "budget",
|
|
2496
2523
|
"hasDynamicHelp": false,
|
|
2497
2524
|
"multiple": false,
|
|
2498
2525
|
"type": "option"
|
|
2499
2526
|
},
|
|
2500
|
-
"
|
|
2501
|
-
"description": "
|
|
2502
|
-
"name": "
|
|
2503
|
-
"allowNo": false,
|
|
2504
|
-
"type": "boolean"
|
|
2505
|
-
},
|
|
2506
|
-
"shared": {
|
|
2507
|
-
"description": "Include faces other accounts have shared with YOU in particular",
|
|
2508
|
-
"name": "shared",
|
|
2509
|
-
"allowNo": false,
|
|
2510
|
-
"type": "boolean"
|
|
2511
|
-
},
|
|
2512
|
-
"system": {
|
|
2513
|
-
"description": "Show only the curated system faces (published faces owned by 'head')",
|
|
2514
|
-
"name": "system",
|
|
2527
|
+
"reset-spent": {
|
|
2528
|
+
"description": "Reset spent amount to zero",
|
|
2529
|
+
"name": "reset-spent",
|
|
2515
2530
|
"allowNo": false,
|
|
2516
2531
|
"type": "boolean"
|
|
2517
|
-
},
|
|
2518
|
-
"from-users": {
|
|
2519
|
-
"description": "Only published faces from these owners (repeatable/comma-separated)",
|
|
2520
|
-
"name": "from-users",
|
|
2521
|
-
"hasDynamicHelp": false,
|
|
2522
|
-
"multiple": true,
|
|
2523
|
-
"type": "option"
|
|
2524
|
-
},
|
|
2525
|
-
"not-from-users": {
|
|
2526
|
-
"description": "Exclude published faces from these owners (repeatable/comma-separated)",
|
|
2527
|
-
"name": "not-from-users",
|
|
2528
|
-
"hasDynamicHelp": false,
|
|
2529
|
-
"multiple": true,
|
|
2530
|
-
"type": "option"
|
|
2531
2532
|
}
|
|
2532
2533
|
},
|
|
2533
2534
|
"hasDynamicHelp": false,
|
|
2534
2535
|
"hiddenAliases": [],
|
|
2535
|
-
"id": "
|
|
2536
|
+
"id": "keys:update",
|
|
2536
2537
|
"pluginAlias": "faces-cli",
|
|
2537
2538
|
"pluginName": "faces-cli",
|
|
2538
2539
|
"pluginType": "core",
|
|
@@ -2542,23 +2543,14 @@
|
|
|
2542
2543
|
"relativePath": [
|
|
2543
2544
|
"dist",
|
|
2544
2545
|
"commands",
|
|
2545
|
-
"
|
|
2546
|
-
"
|
|
2546
|
+
"keys",
|
|
2547
|
+
"update.js"
|
|
2547
2548
|
]
|
|
2548
2549
|
},
|
|
2549
|
-
"face:
|
|
2550
|
+
"face:attributes": {
|
|
2550
2551
|
"aliases": [],
|
|
2551
|
-
"args": {
|
|
2552
|
-
|
|
2553
|
-
"description": "Face alias",
|
|
2554
|
-
"name": "face_id",
|
|
2555
|
-
"required": true
|
|
2556
|
-
}
|
|
2557
|
-
},
|
|
2558
|
-
"description": "Lock a face (read-only). A locked face still reads and chats normally, but it — and everything it owns (documents, threads, voiceprint) — cannot be changed until unlocked.",
|
|
2559
|
-
"examples": [
|
|
2560
|
-
"<%= config.bin %> <%= command.id %> socrates"
|
|
2561
|
-
],
|
|
2552
|
+
"args": {},
|
|
2553
|
+
"description": "List all supported attribute keys",
|
|
2562
2554
|
"flags": {
|
|
2563
2555
|
"json": {
|
|
2564
2556
|
"description": "Format output as json.",
|
|
@@ -2594,7 +2586,7 @@
|
|
|
2594
2586
|
},
|
|
2595
2587
|
"hasDynamicHelp": false,
|
|
2596
2588
|
"hiddenAliases": [],
|
|
2597
|
-
"id": "face:
|
|
2589
|
+
"id": "face:attributes",
|
|
2598
2590
|
"pluginAlias": "faces-cli",
|
|
2599
2591
|
"pluginName": "faces-cli",
|
|
2600
2592
|
"pluginType": "core",
|
|
@@ -2605,19 +2597,13 @@
|
|
|
2605
2597
|
"dist",
|
|
2606
2598
|
"commands",
|
|
2607
2599
|
"face",
|
|
2608
|
-
"
|
|
2600
|
+
"attributes.js"
|
|
2609
2601
|
]
|
|
2610
2602
|
},
|
|
2611
|
-
"face:
|
|
2603
|
+
"face:create": {
|
|
2612
2604
|
"aliases": [],
|
|
2613
|
-
"args": {
|
|
2614
|
-
|
|
2615
|
-
"description": "Face alias",
|
|
2616
|
-
"name": "face_id",
|
|
2617
|
-
"required": true
|
|
2618
|
-
}
|
|
2619
|
-
},
|
|
2620
|
-
"description": "Find the most similar or dissimilar owned faces to a given face",
|
|
2605
|
+
"args": {},
|
|
2606
|
+
"description": "Create a new face",
|
|
2621
2607
|
"flags": {
|
|
2622
2608
|
"json": {
|
|
2623
2609
|
"description": "Format output as json.",
|
|
@@ -2650,38 +2636,85 @@
|
|
|
2650
2636
|
"multiple": false,
|
|
2651
2637
|
"type": "option"
|
|
2652
2638
|
},
|
|
2653
|
-
"
|
|
2654
|
-
"description": "
|
|
2655
|
-
"name": "
|
|
2656
|
-
"
|
|
2639
|
+
"name": {
|
|
2640
|
+
"description": "Display name",
|
|
2641
|
+
"name": "name",
|
|
2642
|
+
"required": true,
|
|
2657
2643
|
"hasDynamicHelp": false,
|
|
2658
2644
|
"multiple": false,
|
|
2659
2645
|
"type": "option"
|
|
2660
2646
|
},
|
|
2661
|
-
"
|
|
2662
|
-
"description": "
|
|
2663
|
-
"name": "
|
|
2664
|
-
"
|
|
2647
|
+
"alias": {
|
|
2648
|
+
"description": "Unique alias slug",
|
|
2649
|
+
"name": "alias",
|
|
2650
|
+
"required": true,
|
|
2665
2651
|
"hasDynamicHelp": false,
|
|
2666
2652
|
"multiple": false,
|
|
2667
2653
|
"type": "option"
|
|
2668
2654
|
},
|
|
2669
|
-
"
|
|
2670
|
-
"description": "
|
|
2671
|
-
"name": "
|
|
2672
|
-
"
|
|
2655
|
+
"description": {
|
|
2656
|
+
"description": "Plain-text description / bio (max 1500 chars)",
|
|
2657
|
+
"name": "description",
|
|
2658
|
+
"hasDynamicHelp": false,
|
|
2659
|
+
"multiple": false,
|
|
2660
|
+
"type": "option"
|
|
2661
|
+
},
|
|
2662
|
+
"tag": {
|
|
2663
|
+
"description": "Tag label (repeatable, lowercase)",
|
|
2664
|
+
"name": "tag",
|
|
2665
|
+
"hasDynamicHelp": false,
|
|
2666
|
+
"multiple": true,
|
|
2667
|
+
"type": "option"
|
|
2668
|
+
},
|
|
2669
|
+
"default-model": {
|
|
2670
|
+
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
2671
|
+
"name": "default-model",
|
|
2672
|
+
"hasDynamicHelp": false,
|
|
2673
|
+
"multiple": false,
|
|
2674
|
+
"type": "option"
|
|
2675
|
+
},
|
|
2676
|
+
"formula": {
|
|
2677
|
+
"description": "Boolean formula over owned concrete face aliases (e.g. \"a | b\", \"(a | b) - c\"). Creates a composite face.",
|
|
2678
|
+
"name": "formula",
|
|
2679
|
+
"hasDynamicHelp": false,
|
|
2680
|
+
"multiple": false,
|
|
2681
|
+
"type": "option"
|
|
2682
|
+
},
|
|
2683
|
+
"attr": {
|
|
2684
|
+
"description": "Attribute KEY=VALUE (repeatable)",
|
|
2685
|
+
"name": "attr",
|
|
2686
|
+
"hasDynamicHelp": false,
|
|
2687
|
+
"multiple": true,
|
|
2688
|
+
"type": "option"
|
|
2689
|
+
},
|
|
2690
|
+
"tool": {
|
|
2691
|
+
"description": "Tool name to enable (repeatable)",
|
|
2692
|
+
"name": "tool",
|
|
2693
|
+
"hasDynamicHelp": false,
|
|
2694
|
+
"multiple": true,
|
|
2695
|
+
"type": "option"
|
|
2696
|
+
},
|
|
2697
|
+
"profile-addendum": {
|
|
2698
|
+
"description": "Per-face system prompt, injected after the persona profile and before any per-request system prompt (max 100,000 chars).",
|
|
2699
|
+
"name": "profile-addendum",
|
|
2700
|
+
"hasDynamicHelp": false,
|
|
2701
|
+
"multiple": false,
|
|
2702
|
+
"type": "option"
|
|
2703
|
+
},
|
|
2704
|
+
"profile-addendum-file": {
|
|
2705
|
+
"description": "Read the per-face system prompt from a file (alternative to --profile-addendum).",
|
|
2706
|
+
"exclusive": [
|
|
2707
|
+
"profile-addendum"
|
|
2708
|
+
],
|
|
2709
|
+
"name": "profile-addendum-file",
|
|
2673
2710
|
"hasDynamicHelp": false,
|
|
2674
2711
|
"multiple": false,
|
|
2675
|
-
"options": [
|
|
2676
|
-
"nearest",
|
|
2677
|
-
"furthest"
|
|
2678
|
-
],
|
|
2679
2712
|
"type": "option"
|
|
2680
2713
|
}
|
|
2681
2714
|
},
|
|
2682
2715
|
"hasDynamicHelp": false,
|
|
2683
2716
|
"hiddenAliases": [],
|
|
2684
|
-
"id": "face:
|
|
2717
|
+
"id": "face:create",
|
|
2685
2718
|
"pluginAlias": "faces-cli",
|
|
2686
2719
|
"pluginName": "faces-cli",
|
|
2687
2720
|
"pluginType": "core",
|
|
@@ -2692,22 +2725,19 @@
|
|
|
2692
2725
|
"dist",
|
|
2693
2726
|
"commands",
|
|
2694
2727
|
"face",
|
|
2695
|
-
"
|
|
2728
|
+
"create.js"
|
|
2696
2729
|
]
|
|
2697
2730
|
},
|
|
2698
|
-
"face:
|
|
2731
|
+
"face:delete": {
|
|
2699
2732
|
"aliases": [],
|
|
2700
2733
|
"args": {
|
|
2701
|
-
"
|
|
2734
|
+
"face_id": {
|
|
2702
2735
|
"description": "Face alias",
|
|
2703
|
-
"name": "
|
|
2736
|
+
"name": "face_id",
|
|
2704
2737
|
"required": true
|
|
2705
2738
|
}
|
|
2706
2739
|
},
|
|
2707
|
-
"description": "
|
|
2708
|
-
"examples": [
|
|
2709
|
-
"<%= config.bin %> <%= command.id %> alice --yes"
|
|
2710
|
-
],
|
|
2740
|
+
"description": "Delete a face permanently",
|
|
2711
2741
|
"flags": {
|
|
2712
2742
|
"json": {
|
|
2713
2743
|
"description": "Format output as json.",
|
|
@@ -2749,7 +2779,7 @@
|
|
|
2749
2779
|
},
|
|
2750
2780
|
"hasDynamicHelp": false,
|
|
2751
2781
|
"hiddenAliases": [],
|
|
2752
|
-
"id": "face:
|
|
2782
|
+
"id": "face:delete",
|
|
2753
2783
|
"pluginAlias": "faces-cli",
|
|
2754
2784
|
"pluginName": "faces-cli",
|
|
2755
2785
|
"pluginType": "core",
|
|
@@ -2760,25 +2790,13 @@
|
|
|
2760
2790
|
"dist",
|
|
2761
2791
|
"commands",
|
|
2762
2792
|
"face",
|
|
2763
|
-
"
|
|
2793
|
+
"delete.js"
|
|
2764
2794
|
]
|
|
2765
2795
|
},
|
|
2766
|
-
"face:
|
|
2796
|
+
"face:diff": {
|
|
2767
2797
|
"aliases": [],
|
|
2768
|
-
"args": {
|
|
2769
|
-
|
|
2770
|
-
"description": "Face alias",
|
|
2771
|
-
"name": "alias",
|
|
2772
|
-
"required": true
|
|
2773
|
-
}
|
|
2774
|
-
},
|
|
2775
|
-
"description": "Share a face so named accounts can chat with it. Sharing grants chat and nothing else: no reading its documents, no compiling, no re-sharing, and never its profile addendum. --add keeps the current list; --with replaces it.",
|
|
2776
|
-
"examples": [
|
|
2777
|
-
"<%= config.bin %> <%= command.id %> alice --list",
|
|
2778
|
-
"<%= config.bin %> <%= command.id %> alice --add dana",
|
|
2779
|
-
"<%= config.bin %> <%= command.id %> alice --with dana --with sam@example.com",
|
|
2780
|
-
"<%= config.bin %> <%= command.id %> alice --none --yes"
|
|
2781
|
-
],
|
|
2798
|
+
"args": {},
|
|
2799
|
+
"description": "Compare owned faces pairwise across all centroid components",
|
|
2782
2800
|
"flags": {
|
|
2783
2801
|
"json": {
|
|
2784
2802
|
"description": "Format output as json.",
|
|
@@ -2811,54 +2829,18 @@
|
|
|
2811
2829
|
"multiple": false,
|
|
2812
2830
|
"type": "option"
|
|
2813
2831
|
},
|
|
2814
|
-
"
|
|
2815
|
-
"description": "
|
|
2816
|
-
"name": "
|
|
2817
|
-
"
|
|
2818
|
-
"type": "boolean"
|
|
2819
|
-
},
|
|
2820
|
-
"add": {
|
|
2821
|
-
"description": "Add an account, keeping everyone already on the list — username or email (repeatable)",
|
|
2822
|
-
"exclusive": [
|
|
2823
|
-
"with",
|
|
2824
|
-
"none"
|
|
2825
|
-
],
|
|
2826
|
-
"name": "add",
|
|
2827
|
-
"hasDynamicHelp": false,
|
|
2828
|
-
"multiple": true,
|
|
2829
|
-
"type": "option"
|
|
2830
|
-
},
|
|
2831
|
-
"with": {
|
|
2832
|
-
"description": "Set the list to exactly these accounts, dropping anyone else (repeatable)",
|
|
2833
|
-
"exclusive": [
|
|
2834
|
-
"add",
|
|
2835
|
-
"none"
|
|
2836
|
-
],
|
|
2837
|
-
"name": "with",
|
|
2832
|
+
"face": {
|
|
2833
|
+
"description": "Face alias to include (repeatable, min 2)",
|
|
2834
|
+
"name": "face",
|
|
2835
|
+
"required": true,
|
|
2838
2836
|
"hasDynamicHelp": false,
|
|
2839
2837
|
"multiple": true,
|
|
2840
2838
|
"type": "option"
|
|
2841
|
-
},
|
|
2842
|
-
"none": {
|
|
2843
|
-
"description": "Revoke everyone",
|
|
2844
|
-
"exclusive": [
|
|
2845
|
-
"add",
|
|
2846
|
-
"with"
|
|
2847
|
-
],
|
|
2848
|
-
"name": "none",
|
|
2849
|
-
"allowNo": false,
|
|
2850
|
-
"type": "boolean"
|
|
2851
|
-
},
|
|
2852
|
-
"yes": {
|
|
2853
|
-
"description": "Skip the confirmation shown when someone would lose access",
|
|
2854
|
-
"name": "yes",
|
|
2855
|
-
"allowNo": false,
|
|
2856
|
-
"type": "boolean"
|
|
2857
2839
|
}
|
|
2858
2840
|
},
|
|
2859
2841
|
"hasDynamicHelp": false,
|
|
2860
2842
|
"hiddenAliases": [],
|
|
2861
|
-
"id": "face:
|
|
2843
|
+
"id": "face:diff",
|
|
2862
2844
|
"pluginAlias": "faces-cli",
|
|
2863
2845
|
"pluginName": "faces-cli",
|
|
2864
2846
|
"pluginType": "core",
|
|
@@ -2869,24 +2851,19 @@
|
|
|
2869
2851
|
"dist",
|
|
2870
2852
|
"commands",
|
|
2871
2853
|
"face",
|
|
2872
|
-
"
|
|
2854
|
+
"diff.js"
|
|
2873
2855
|
]
|
|
2874
2856
|
},
|
|
2875
|
-
"face:
|
|
2857
|
+
"face:edit": {
|
|
2876
2858
|
"aliases": [],
|
|
2877
2859
|
"args": {
|
|
2878
|
-
"
|
|
2860
|
+
"face_id": {
|
|
2879
2861
|
"description": "Face alias",
|
|
2880
|
-
"name": "
|
|
2862
|
+
"name": "face_id",
|
|
2881
2863
|
"required": true
|
|
2882
2864
|
}
|
|
2883
2865
|
},
|
|
2884
|
-
"description": "
|
|
2885
|
-
"examples": [
|
|
2886
|
-
"<%= config.bin %> <%= command.id %> alice",
|
|
2887
|
-
"<%= config.bin %> <%= command.id %> alice --type thread",
|
|
2888
|
-
"<%= config.bin %> <%= command.id %> alice --json"
|
|
2889
|
-
],
|
|
2866
|
+
"description": "Edit a face's metadata",
|
|
2890
2867
|
"flags": {
|
|
2891
2868
|
"json": {
|
|
2892
2869
|
"description": "Format output as json.",
|
|
@@ -2919,21 +2896,86 @@
|
|
|
2919
2896
|
"multiple": false,
|
|
2920
2897
|
"type": "option"
|
|
2921
2898
|
},
|
|
2922
|
-
"
|
|
2923
|
-
"description": "
|
|
2924
|
-
"name": "
|
|
2899
|
+
"name": {
|
|
2900
|
+
"description": "New display name",
|
|
2901
|
+
"name": "name",
|
|
2925
2902
|
"hasDynamicHelp": false,
|
|
2926
2903
|
"multiple": false,
|
|
2927
|
-
"
|
|
2928
|
-
|
|
2929
|
-
|
|
2904
|
+
"type": "option"
|
|
2905
|
+
},
|
|
2906
|
+
"description": {
|
|
2907
|
+
"description": "Plain-text description / bio (max 1500 chars)",
|
|
2908
|
+
"name": "description",
|
|
2909
|
+
"hasDynamicHelp": false,
|
|
2910
|
+
"multiple": false,
|
|
2911
|
+
"type": "option"
|
|
2912
|
+
},
|
|
2913
|
+
"tag": {
|
|
2914
|
+
"description": "Replace all tags (repeatable, lowercase)",
|
|
2915
|
+
"name": "tag",
|
|
2916
|
+
"hasDynamicHelp": false,
|
|
2917
|
+
"multiple": true,
|
|
2918
|
+
"type": "option"
|
|
2919
|
+
},
|
|
2920
|
+
"default-model": {
|
|
2921
|
+
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
2922
|
+
"name": "default-model",
|
|
2923
|
+
"hasDynamicHelp": false,
|
|
2924
|
+
"multiple": false,
|
|
2925
|
+
"type": "option"
|
|
2926
|
+
},
|
|
2927
|
+
"formula": {
|
|
2928
|
+
"description": "New boolean formula (synthetic faces only)",
|
|
2929
|
+
"name": "formula",
|
|
2930
|
+
"hasDynamicHelp": false,
|
|
2931
|
+
"multiple": false,
|
|
2932
|
+
"type": "option"
|
|
2933
|
+
},
|
|
2934
|
+
"attr": {
|
|
2935
|
+
"description": "Update attribute KEY=VALUE (repeatable)",
|
|
2936
|
+
"name": "attr",
|
|
2937
|
+
"hasDynamicHelp": false,
|
|
2938
|
+
"multiple": true,
|
|
2939
|
+
"type": "option"
|
|
2940
|
+
},
|
|
2941
|
+
"tool": {
|
|
2942
|
+
"description": "Tool names to set (replaces list, repeatable)",
|
|
2943
|
+
"name": "tool",
|
|
2944
|
+
"hasDynamicHelp": false,
|
|
2945
|
+
"multiple": true,
|
|
2946
|
+
"type": "option"
|
|
2947
|
+
},
|
|
2948
|
+
"profile-addendum": {
|
|
2949
|
+
"description": "Replace the per-face system prompt (max 100,000 chars).",
|
|
2950
|
+
"name": "profile-addendum",
|
|
2951
|
+
"hasDynamicHelp": false,
|
|
2952
|
+
"multiple": false,
|
|
2953
|
+
"type": "option"
|
|
2954
|
+
},
|
|
2955
|
+
"profile-addendum-file": {
|
|
2956
|
+
"description": "Replace the per-face system prompt from a file.",
|
|
2957
|
+
"exclusive": [
|
|
2958
|
+
"profile-addendum"
|
|
2930
2959
|
],
|
|
2960
|
+
"name": "profile-addendum-file",
|
|
2961
|
+
"hasDynamicHelp": false,
|
|
2962
|
+
"multiple": false,
|
|
2931
2963
|
"type": "option"
|
|
2964
|
+
},
|
|
2965
|
+
"clear-profile-addendum": {
|
|
2966
|
+
"description": "Remove the per-face system prompt.",
|
|
2967
|
+
"exclusive": [
|
|
2968
|
+
"profile-addendum",
|
|
2969
|
+
"profile-addendum-file"
|
|
2970
|
+
],
|
|
2971
|
+
"name": "clear-profile-addendum",
|
|
2972
|
+
"allowNo": false,
|
|
2973
|
+
"type": "boolean"
|
|
2932
2974
|
}
|
|
2933
2975
|
},
|
|
2934
2976
|
"hasDynamicHelp": false,
|
|
2935
2977
|
"hiddenAliases": [],
|
|
2936
|
-
"id": "face:
|
|
2978
|
+
"id": "face:edit",
|
|
2937
2979
|
"pluginAlias": "faces-cli",
|
|
2938
2980
|
"pluginName": "faces-cli",
|
|
2939
2981
|
"pluginType": "core",
|
|
@@ -2944,13 +2986,19 @@
|
|
|
2944
2986
|
"dist",
|
|
2945
2987
|
"commands",
|
|
2946
2988
|
"face",
|
|
2947
|
-
"
|
|
2989
|
+
"edit.js"
|
|
2948
2990
|
]
|
|
2949
2991
|
},
|
|
2950
|
-
"face:
|
|
2992
|
+
"face:get": {
|
|
2951
2993
|
"aliases": [],
|
|
2952
|
-
"args": {
|
|
2953
|
-
|
|
2994
|
+
"args": {
|
|
2995
|
+
"face_id": {
|
|
2996
|
+
"description": "Face alias",
|
|
2997
|
+
"name": "face_id",
|
|
2998
|
+
"required": true
|
|
2999
|
+
}
|
|
3000
|
+
},
|
|
3001
|
+
"description": "Get details for a face, by alias or owner:alias. A published or shared face is reachable under the same owner:alias address chat uses; it is shown with a note that you do not own it.",
|
|
2954
3002
|
"flags": {
|
|
2955
3003
|
"json": {
|
|
2956
3004
|
"description": "Format output as json.",
|
|
@@ -2982,11 +3030,24 @@
|
|
|
2982
3030
|
"hasDynamicHelp": false,
|
|
2983
3031
|
"multiple": false,
|
|
2984
3032
|
"type": "option"
|
|
3033
|
+
},
|
|
3034
|
+
"include": {
|
|
3035
|
+
"description": "Include extra fields: tags, teams (comma-separated)",
|
|
3036
|
+
"name": "include",
|
|
3037
|
+
"hasDynamicHelp": false,
|
|
3038
|
+
"multiple": false,
|
|
3039
|
+
"type": "option"
|
|
3040
|
+
},
|
|
3041
|
+
"full": {
|
|
3042
|
+
"description": "Print the full profile_addendum instead of a truncated preview",
|
|
3043
|
+
"name": "full",
|
|
3044
|
+
"allowNo": false,
|
|
3045
|
+
"type": "boolean"
|
|
2985
3046
|
}
|
|
2986
3047
|
},
|
|
2987
3048
|
"hasDynamicHelp": false,
|
|
2988
3049
|
"hiddenAliases": [],
|
|
2989
|
-
"id": "face:
|
|
3050
|
+
"id": "face:get",
|
|
2990
3051
|
"pluginAlias": "faces-cli",
|
|
2991
3052
|
"pluginName": "faces-cli",
|
|
2992
3053
|
"pluginType": "core",
|
|
@@ -2997,19 +3058,13 @@
|
|
|
2997
3058
|
"dist",
|
|
2998
3059
|
"commands",
|
|
2999
3060
|
"face",
|
|
3000
|
-
"
|
|
3061
|
+
"get.js"
|
|
3001
3062
|
]
|
|
3002
3063
|
},
|
|
3003
|
-
"face:
|
|
3064
|
+
"face:list": {
|
|
3004
3065
|
"aliases": [],
|
|
3005
|
-
"args": {
|
|
3006
|
-
|
|
3007
|
-
"description": "Face alias",
|
|
3008
|
-
"name": "alias",
|
|
3009
|
-
"required": true
|
|
3010
|
-
}
|
|
3011
|
-
},
|
|
3012
|
-
"description": "Set a face's team memberships (replaces all)",
|
|
3066
|
+
"args": {},
|
|
3067
|
+
"description": "List faces. By default lists owned faces; use --public to include published faces from other accounts.",
|
|
3013
3068
|
"flags": {
|
|
3014
3069
|
"json": {
|
|
3015
3070
|
"description": "Format output as json.",
|
|
@@ -3023,29 +3078,74 @@
|
|
|
3023
3078
|
"env": "FACES_BASE_URL",
|
|
3024
3079
|
"name": "base-url",
|
|
3025
3080
|
"hasDynamicHelp": false,
|
|
3026
|
-
"multiple": false,
|
|
3081
|
+
"multiple": false,
|
|
3082
|
+
"type": "option"
|
|
3083
|
+
},
|
|
3084
|
+
"token": {
|
|
3085
|
+
"description": "JWT bearer token",
|
|
3086
|
+
"env": "FACES_TOKEN",
|
|
3087
|
+
"name": "token",
|
|
3088
|
+
"hasDynamicHelp": false,
|
|
3089
|
+
"multiple": false,
|
|
3090
|
+
"type": "option"
|
|
3091
|
+
},
|
|
3092
|
+
"api-key": {
|
|
3093
|
+
"description": "API key",
|
|
3094
|
+
"env": "FACES_API_KEY",
|
|
3095
|
+
"name": "api-key",
|
|
3096
|
+
"hasDynamicHelp": false,
|
|
3097
|
+
"multiple": false,
|
|
3098
|
+
"type": "option"
|
|
3099
|
+
},
|
|
3100
|
+
"tag": {
|
|
3101
|
+
"description": "Filter by tag (repeatable, AND logic)",
|
|
3102
|
+
"name": "tag",
|
|
3103
|
+
"hasDynamicHelp": false,
|
|
3104
|
+
"multiple": true,
|
|
3105
|
+
"type": "option"
|
|
3106
|
+
},
|
|
3107
|
+
"team": {
|
|
3108
|
+
"description": "Filter by team ID (repeatable, OR logic)",
|
|
3109
|
+
"name": "team",
|
|
3110
|
+
"hasDynamicHelp": false,
|
|
3111
|
+
"multiple": true,
|
|
3027
3112
|
"type": "option"
|
|
3028
3113
|
},
|
|
3029
|
-
"
|
|
3030
|
-
"description": "
|
|
3031
|
-
"
|
|
3032
|
-
"name": "token",
|
|
3114
|
+
"include": {
|
|
3115
|
+
"description": "Include extra fields: tags, teams (comma-separated)",
|
|
3116
|
+
"name": "include",
|
|
3033
3117
|
"hasDynamicHelp": false,
|
|
3034
3118
|
"multiple": false,
|
|
3035
3119
|
"type": "option"
|
|
3036
3120
|
},
|
|
3037
|
-
"
|
|
3038
|
-
"description": "
|
|
3039
|
-
"
|
|
3040
|
-
"
|
|
3121
|
+
"public": {
|
|
3122
|
+
"description": "Include published faces from other accounts (open to everybody)",
|
|
3123
|
+
"name": "public",
|
|
3124
|
+
"allowNo": false,
|
|
3125
|
+
"type": "boolean"
|
|
3126
|
+
},
|
|
3127
|
+
"shared": {
|
|
3128
|
+
"description": "Include faces other accounts have shared with YOU in particular",
|
|
3129
|
+
"name": "shared",
|
|
3130
|
+
"allowNo": false,
|
|
3131
|
+
"type": "boolean"
|
|
3132
|
+
},
|
|
3133
|
+
"system": {
|
|
3134
|
+
"description": "Show only the curated system faces (published faces owned by 'head')",
|
|
3135
|
+
"name": "system",
|
|
3136
|
+
"allowNo": false,
|
|
3137
|
+
"type": "boolean"
|
|
3138
|
+
},
|
|
3139
|
+
"from-users": {
|
|
3140
|
+
"description": "Only published faces from these owners (repeatable/comma-separated)",
|
|
3141
|
+
"name": "from-users",
|
|
3041
3142
|
"hasDynamicHelp": false,
|
|
3042
|
-
"multiple":
|
|
3143
|
+
"multiple": true,
|
|
3043
3144
|
"type": "option"
|
|
3044
3145
|
},
|
|
3045
|
-
"
|
|
3046
|
-
"description": "
|
|
3047
|
-
"name": "
|
|
3048
|
-
"required": true,
|
|
3146
|
+
"not-from-users": {
|
|
3147
|
+
"description": "Exclude published faces from these owners (repeatable/comma-separated)",
|
|
3148
|
+
"name": "not-from-users",
|
|
3049
3149
|
"hasDynamicHelp": false,
|
|
3050
3150
|
"multiple": true,
|
|
3051
3151
|
"type": "option"
|
|
@@ -3053,7 +3153,7 @@
|
|
|
3053
3153
|
},
|
|
3054
3154
|
"hasDynamicHelp": false,
|
|
3055
3155
|
"hiddenAliases": [],
|
|
3056
|
-
"id": "face:
|
|
3156
|
+
"id": "face:list",
|
|
3057
3157
|
"pluginAlias": "faces-cli",
|
|
3058
3158
|
"pluginName": "faces-cli",
|
|
3059
3159
|
"pluginType": "core",
|
|
@@ -3064,10 +3164,10 @@
|
|
|
3064
3164
|
"dist",
|
|
3065
3165
|
"commands",
|
|
3066
3166
|
"face",
|
|
3067
|
-
"
|
|
3167
|
+
"list.js"
|
|
3068
3168
|
]
|
|
3069
3169
|
},
|
|
3070
|
-
"face:
|
|
3170
|
+
"face:lock": {
|
|
3071
3171
|
"aliases": [],
|
|
3072
3172
|
"args": {
|
|
3073
3173
|
"face_id": {
|
|
@@ -3076,7 +3176,7 @@
|
|
|
3076
3176
|
"required": true
|
|
3077
3177
|
}
|
|
3078
3178
|
},
|
|
3079
|
-
"description": "
|
|
3179
|
+
"description": "Lock a face (read-only). A locked face still reads and chats normally, but it — and everything it owns (documents, threads, voiceprint) — cannot be changed until unlocked.",
|
|
3080
3180
|
"examples": [
|
|
3081
3181
|
"<%= config.bin %> <%= command.id %> socrates"
|
|
3082
3182
|
],
|
|
@@ -3115,7 +3215,7 @@
|
|
|
3115
3215
|
},
|
|
3116
3216
|
"hasDynamicHelp": false,
|
|
3117
3217
|
"hiddenAliases": [],
|
|
3118
|
-
"id": "face:
|
|
3218
|
+
"id": "face:lock",
|
|
3119
3219
|
"pluginAlias": "faces-cli",
|
|
3120
3220
|
"pluginName": "faces-cli",
|
|
3121
3221
|
"pluginType": "core",
|
|
@@ -3126,19 +3226,19 @@
|
|
|
3126
3226
|
"dist",
|
|
3127
3227
|
"commands",
|
|
3128
3228
|
"face",
|
|
3129
|
-
"
|
|
3229
|
+
"lock.js"
|
|
3130
3230
|
]
|
|
3131
3231
|
},
|
|
3132
|
-
"face:
|
|
3232
|
+
"face:neighbors": {
|
|
3133
3233
|
"aliases": [],
|
|
3134
3234
|
"args": {
|
|
3135
|
-
"
|
|
3235
|
+
"face_id": {
|
|
3136
3236
|
"description": "Face alias",
|
|
3137
|
-
"name": "
|
|
3237
|
+
"name": "face_id",
|
|
3138
3238
|
"required": true
|
|
3139
3239
|
}
|
|
3140
3240
|
},
|
|
3141
|
-
"description": "
|
|
3241
|
+
"description": "Find the most similar or dissimilar owned faces to a given face",
|
|
3142
3242
|
"flags": {
|
|
3143
3243
|
"json": {
|
|
3144
3244
|
"description": "Format output as json.",
|
|
@@ -3170,11 +3270,39 @@
|
|
|
3170
3270
|
"hasDynamicHelp": false,
|
|
3171
3271
|
"multiple": false,
|
|
3172
3272
|
"type": "option"
|
|
3273
|
+
},
|
|
3274
|
+
"k": {
|
|
3275
|
+
"description": "Number of results (1–20)",
|
|
3276
|
+
"name": "k",
|
|
3277
|
+
"default": 5,
|
|
3278
|
+
"hasDynamicHelp": false,
|
|
3279
|
+
"multiple": false,
|
|
3280
|
+
"type": "option"
|
|
3281
|
+
},
|
|
3282
|
+
"component": {
|
|
3283
|
+
"description": "What to rank on: `face` for overall similarity, or a component position such as 1. Which positions are comparable varies; the API names them if you pick a wrong one.",
|
|
3284
|
+
"name": "component",
|
|
3285
|
+
"default": "face",
|
|
3286
|
+
"hasDynamicHelp": false,
|
|
3287
|
+
"multiple": false,
|
|
3288
|
+
"type": "option"
|
|
3289
|
+
},
|
|
3290
|
+
"direction": {
|
|
3291
|
+
"description": "nearest (most similar) or furthest (most dissimilar)",
|
|
3292
|
+
"name": "direction",
|
|
3293
|
+
"default": "nearest",
|
|
3294
|
+
"hasDynamicHelp": false,
|
|
3295
|
+
"multiple": false,
|
|
3296
|
+
"options": [
|
|
3297
|
+
"nearest",
|
|
3298
|
+
"furthest"
|
|
3299
|
+
],
|
|
3300
|
+
"type": "option"
|
|
3173
3301
|
}
|
|
3174
3302
|
},
|
|
3175
3303
|
"hasDynamicHelp": false,
|
|
3176
3304
|
"hiddenAliases": [],
|
|
3177
|
-
"id": "face:
|
|
3305
|
+
"id": "face:neighbors",
|
|
3178
3306
|
"pluginAlias": "faces-cli",
|
|
3179
3307
|
"pluginName": "faces-cli",
|
|
3180
3308
|
"pluginType": "core",
|
|
@@ -3185,10 +3313,10 @@
|
|
|
3185
3313
|
"dist",
|
|
3186
3314
|
"commands",
|
|
3187
3315
|
"face",
|
|
3188
|
-
"
|
|
3316
|
+
"neighbors.js"
|
|
3189
3317
|
]
|
|
3190
3318
|
},
|
|
3191
|
-
"face:
|
|
3319
|
+
"face:publish": {
|
|
3192
3320
|
"aliases": [],
|
|
3193
3321
|
"args": {
|
|
3194
3322
|
"alias": {
|
|
@@ -3197,10 +3325,9 @@
|
|
|
3197
3325
|
"required": true
|
|
3198
3326
|
}
|
|
3199
3327
|
},
|
|
3200
|
-
"description": "
|
|
3328
|
+
"description": "Publish a face so EVERY account can chat with it. This is a global override: while it is on, everyone can reach the face regardless of who it is shared with. You still pay only to compile it; whoever chats pays for their own inference.",
|
|
3201
3329
|
"examples": [
|
|
3202
|
-
"<%= config.bin %> <%= command.id %> alice --
|
|
3203
|
-
"<%= config.bin %> <%= command.id %> alice --all --yes"
|
|
3330
|
+
"<%= config.bin %> <%= command.id %> alice --yes"
|
|
3204
3331
|
],
|
|
3205
3332
|
"flags": {
|
|
3206
3333
|
"json": {
|
|
@@ -3234,25 +3361,6 @@
|
|
|
3234
3361
|
"multiple": false,
|
|
3235
3362
|
"type": "option"
|
|
3236
3363
|
},
|
|
3237
|
-
"from": {
|
|
3238
|
-
"description": "Account to revoke (repeatable)",
|
|
3239
|
-
"exclusive": [
|
|
3240
|
-
"all"
|
|
3241
|
-
],
|
|
3242
|
-
"name": "from",
|
|
3243
|
-
"hasDynamicHelp": false,
|
|
3244
|
-
"multiple": true,
|
|
3245
|
-
"type": "option"
|
|
3246
|
-
},
|
|
3247
|
-
"all": {
|
|
3248
|
-
"description": "Revoke everyone",
|
|
3249
|
-
"exclusive": [
|
|
3250
|
-
"from"
|
|
3251
|
-
],
|
|
3252
|
-
"name": "all",
|
|
3253
|
-
"allowNo": false,
|
|
3254
|
-
"type": "boolean"
|
|
3255
|
-
},
|
|
3256
3364
|
"yes": {
|
|
3257
3365
|
"description": "Skip confirmation",
|
|
3258
3366
|
"name": "yes",
|
|
@@ -3262,7 +3370,7 @@
|
|
|
3262
3370
|
},
|
|
3263
3371
|
"hasDynamicHelp": false,
|
|
3264
3372
|
"hiddenAliases": [],
|
|
3265
|
-
"id": "face:
|
|
3373
|
+
"id": "face:publish",
|
|
3266
3374
|
"pluginAlias": "faces-cli",
|
|
3267
3375
|
"pluginName": "faces-cli",
|
|
3268
3376
|
"pluginType": "core",
|
|
@@ -3273,13 +3381,25 @@
|
|
|
3273
3381
|
"dist",
|
|
3274
3382
|
"commands",
|
|
3275
3383
|
"face",
|
|
3276
|
-
"
|
|
3384
|
+
"publish.js"
|
|
3277
3385
|
]
|
|
3278
3386
|
},
|
|
3279
|
-
"
|
|
3387
|
+
"face:share": {
|
|
3280
3388
|
"aliases": [],
|
|
3281
|
-
"args": {
|
|
3282
|
-
|
|
3389
|
+
"args": {
|
|
3390
|
+
"alias": {
|
|
3391
|
+
"description": "Face alias",
|
|
3392
|
+
"name": "alias",
|
|
3393
|
+
"required": true
|
|
3394
|
+
}
|
|
3395
|
+
},
|
|
3396
|
+
"description": "Share a face so named accounts can chat with it. Sharing grants chat and nothing else: no reading its documents, no compiling, no re-sharing, and never its profile addendum. --add keeps the current list; --with replaces it.",
|
|
3397
|
+
"examples": [
|
|
3398
|
+
"<%= config.bin %> <%= command.id %> alice --list",
|
|
3399
|
+
"<%= config.bin %> <%= command.id %> alice --add dana",
|
|
3400
|
+
"<%= config.bin %> <%= command.id %> alice --with dana --with sam@example.com",
|
|
3401
|
+
"<%= config.bin %> <%= command.id %> alice --none --yes"
|
|
3402
|
+
],
|
|
3283
3403
|
"flags": {
|
|
3284
3404
|
"json": {
|
|
3285
3405
|
"description": "Format output as json.",
|
|
@@ -3312,105 +3432,54 @@
|
|
|
3312
3432
|
"multiple": false,
|
|
3313
3433
|
"type": "option"
|
|
3314
3434
|
},
|
|
3315
|
-
"
|
|
3316
|
-
"description": "
|
|
3317
|
-
"name": "
|
|
3318
|
-
"
|
|
3319
|
-
"
|
|
3320
|
-
"multiple": false,
|
|
3321
|
-
"type": "option"
|
|
3322
|
-
},
|
|
3323
|
-
"expires-days": {
|
|
3324
|
-
"description": "Expiry in days (omit for no expiry)",
|
|
3325
|
-
"name": "expires-days",
|
|
3326
|
-
"hasDynamicHelp": false,
|
|
3327
|
-
"multiple": false,
|
|
3328
|
-
"type": "option"
|
|
3329
|
-
},
|
|
3330
|
-
"budget": {
|
|
3331
|
-
"description": "Spend budget in USD",
|
|
3332
|
-
"name": "budget",
|
|
3333
|
-
"hasDynamicHelp": false,
|
|
3334
|
-
"multiple": false,
|
|
3335
|
-
"type": "option"
|
|
3435
|
+
"list": {
|
|
3436
|
+
"description": "Show who the face is shared with, and change nothing",
|
|
3437
|
+
"name": "list",
|
|
3438
|
+
"allowNo": false,
|
|
3439
|
+
"type": "boolean"
|
|
3336
3440
|
},
|
|
3337
|
-
"
|
|
3338
|
-
"description": "
|
|
3339
|
-
"
|
|
3441
|
+
"add": {
|
|
3442
|
+
"description": "Add an account, keeping everyone already on the list — username or email (repeatable)",
|
|
3443
|
+
"exclusive": [
|
|
3444
|
+
"with",
|
|
3445
|
+
"none"
|
|
3446
|
+
],
|
|
3447
|
+
"name": "add",
|
|
3340
3448
|
"hasDynamicHelp": false,
|
|
3341
3449
|
"multiple": true,
|
|
3342
3450
|
"type": "option"
|
|
3343
3451
|
},
|
|
3344
|
-
"
|
|
3345
|
-
"description": "
|
|
3346
|
-
"
|
|
3452
|
+
"with": {
|
|
3453
|
+
"description": "Set the list to exactly these accounts, dropping anyone else (repeatable)",
|
|
3454
|
+
"exclusive": [
|
|
3455
|
+
"add",
|
|
3456
|
+
"none"
|
|
3457
|
+
],
|
|
3458
|
+
"name": "with",
|
|
3347
3459
|
"hasDynamicHelp": false,
|
|
3348
3460
|
"multiple": true,
|
|
3349
3461
|
"type": "option"
|
|
3350
3462
|
},
|
|
3351
|
-
"
|
|
3352
|
-
"description": "
|
|
3353
|
-
"
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
|
|
3357
|
-
|
|
3358
|
-
"hasDynamicHelp": false,
|
|
3359
|
-
"hiddenAliases": [],
|
|
3360
|
-
"id": "keys:create",
|
|
3361
|
-
"pluginAlias": "faces-cli",
|
|
3362
|
-
"pluginName": "faces-cli",
|
|
3363
|
-
"pluginType": "core",
|
|
3364
|
-
"strict": true,
|
|
3365
|
-
"enableJsonFlag": true,
|
|
3366
|
-
"isESM": true,
|
|
3367
|
-
"relativePath": [
|
|
3368
|
-
"dist",
|
|
3369
|
-
"commands",
|
|
3370
|
-
"keys",
|
|
3371
|
-
"create.js"
|
|
3372
|
-
]
|
|
3373
|
-
},
|
|
3374
|
-
"keys:list": {
|
|
3375
|
-
"aliases": [],
|
|
3376
|
-
"args": {},
|
|
3377
|
-
"description": "List all API keys (JWT required)",
|
|
3378
|
-
"flags": {
|
|
3379
|
-
"json": {
|
|
3380
|
-
"description": "Format output as json.",
|
|
3381
|
-
"helpGroup": "GLOBAL",
|
|
3382
|
-
"name": "json",
|
|
3463
|
+
"none": {
|
|
3464
|
+
"description": "Revoke everyone",
|
|
3465
|
+
"exclusive": [
|
|
3466
|
+
"add",
|
|
3467
|
+
"with"
|
|
3468
|
+
],
|
|
3469
|
+
"name": "none",
|
|
3383
3470
|
"allowNo": false,
|
|
3384
3471
|
"type": "boolean"
|
|
3385
3472
|
},
|
|
3386
|
-
"
|
|
3387
|
-
"description": "
|
|
3388
|
-
"
|
|
3389
|
-
"
|
|
3390
|
-
"
|
|
3391
|
-
"multiple": false,
|
|
3392
|
-
"type": "option"
|
|
3393
|
-
},
|
|
3394
|
-
"token": {
|
|
3395
|
-
"description": "JWT bearer token",
|
|
3396
|
-
"env": "FACES_TOKEN",
|
|
3397
|
-
"name": "token",
|
|
3398
|
-
"hasDynamicHelp": false,
|
|
3399
|
-
"multiple": false,
|
|
3400
|
-
"type": "option"
|
|
3401
|
-
},
|
|
3402
|
-
"api-key": {
|
|
3403
|
-
"description": "API key",
|
|
3404
|
-
"env": "FACES_API_KEY",
|
|
3405
|
-
"name": "api-key",
|
|
3406
|
-
"hasDynamicHelp": false,
|
|
3407
|
-
"multiple": false,
|
|
3408
|
-
"type": "option"
|
|
3473
|
+
"yes": {
|
|
3474
|
+
"description": "Skip the confirmation shown when someone would lose access",
|
|
3475
|
+
"name": "yes",
|
|
3476
|
+
"allowNo": false,
|
|
3477
|
+
"type": "boolean"
|
|
3409
3478
|
}
|
|
3410
3479
|
},
|
|
3411
3480
|
"hasDynamicHelp": false,
|
|
3412
3481
|
"hiddenAliases": [],
|
|
3413
|
-
"id": "
|
|
3482
|
+
"id": "face:share",
|
|
3414
3483
|
"pluginAlias": "faces-cli",
|
|
3415
3484
|
"pluginName": "faces-cli",
|
|
3416
3485
|
"pluginType": "core",
|
|
@@ -3420,20 +3489,25 @@
|
|
|
3420
3489
|
"relativePath": [
|
|
3421
3490
|
"dist",
|
|
3422
3491
|
"commands",
|
|
3423
|
-
"
|
|
3424
|
-
"
|
|
3492
|
+
"face",
|
|
3493
|
+
"share.js"
|
|
3425
3494
|
]
|
|
3426
3495
|
},
|
|
3427
|
-
"
|
|
3496
|
+
"face:sources": {
|
|
3428
3497
|
"aliases": [],
|
|
3429
3498
|
"args": {
|
|
3430
|
-
"
|
|
3431
|
-
"description": "
|
|
3432
|
-
"name": "
|
|
3499
|
+
"alias": {
|
|
3500
|
+
"description": "Face alias",
|
|
3501
|
+
"name": "alias",
|
|
3433
3502
|
"required": true
|
|
3434
3503
|
}
|
|
3435
3504
|
},
|
|
3436
|
-
"description": "
|
|
3505
|
+
"description": "List every source compiled into a face: documents and threads together, one row each. Exits 4 if the face does not exist, which is a different answer from a face that has no sources. Content is never printed; read a single source with compile:doc:get or compile:thread:get.",
|
|
3506
|
+
"examples": [
|
|
3507
|
+
"<%= config.bin %> <%= command.id %> alice",
|
|
3508
|
+
"<%= config.bin %> <%= command.id %> alice --type thread",
|
|
3509
|
+
"<%= config.bin %> <%= command.id %> alice --json"
|
|
3510
|
+
],
|
|
3437
3511
|
"flags": {
|
|
3438
3512
|
"json": {
|
|
3439
3513
|
"description": "Format output as json.",
|
|
@@ -3466,16 +3540,21 @@
|
|
|
3466
3540
|
"multiple": false,
|
|
3467
3541
|
"type": "option"
|
|
3468
3542
|
},
|
|
3469
|
-
"
|
|
3470
|
-
"description": "
|
|
3471
|
-
"name": "
|
|
3472
|
-
"
|
|
3473
|
-
"
|
|
3543
|
+
"type": {
|
|
3544
|
+
"description": "Show only one kind of source",
|
|
3545
|
+
"name": "type",
|
|
3546
|
+
"hasDynamicHelp": false,
|
|
3547
|
+
"multiple": false,
|
|
3548
|
+
"options": [
|
|
3549
|
+
"doc",
|
|
3550
|
+
"thread"
|
|
3551
|
+
],
|
|
3552
|
+
"type": "option"
|
|
3474
3553
|
}
|
|
3475
3554
|
},
|
|
3476
3555
|
"hasDynamicHelp": false,
|
|
3477
3556
|
"hiddenAliases": [],
|
|
3478
|
-
"id": "
|
|
3557
|
+
"id": "face:sources",
|
|
3479
3558
|
"pluginAlias": "faces-cli",
|
|
3480
3559
|
"pluginName": "faces-cli",
|
|
3481
3560
|
"pluginType": "core",
|
|
@@ -3485,20 +3564,14 @@
|
|
|
3485
3564
|
"relativePath": [
|
|
3486
3565
|
"dist",
|
|
3487
3566
|
"commands",
|
|
3488
|
-
"
|
|
3489
|
-
"
|
|
3567
|
+
"face",
|
|
3568
|
+
"sources.js"
|
|
3490
3569
|
]
|
|
3491
3570
|
},
|
|
3492
|
-
"
|
|
3571
|
+
"face:stats": {
|
|
3493
3572
|
"aliases": [],
|
|
3494
|
-
"args": {
|
|
3495
|
-
|
|
3496
|
-
"description": "Key ID",
|
|
3497
|
-
"name": "key_id",
|
|
3498
|
-
"required": true
|
|
3499
|
-
}
|
|
3500
|
-
},
|
|
3501
|
-
"description": "Update API key metadata (JWT required)",
|
|
3573
|
+
"args": {},
|
|
3574
|
+
"description": "Compile and chat stats for all owned faces",
|
|
3502
3575
|
"flags": {
|
|
3503
3576
|
"json": {
|
|
3504
3577
|
"description": "Format output as json.",
|
|
@@ -3530,31 +3603,11 @@
|
|
|
3530
3603
|
"hasDynamicHelp": false,
|
|
3531
3604
|
"multiple": false,
|
|
3532
3605
|
"type": "option"
|
|
3533
|
-
},
|
|
3534
|
-
"name": {
|
|
3535
|
-
"description": "New key name",
|
|
3536
|
-
"name": "name",
|
|
3537
|
-
"hasDynamicHelp": false,
|
|
3538
|
-
"multiple": false,
|
|
3539
|
-
"type": "option"
|
|
3540
|
-
},
|
|
3541
|
-
"budget": {
|
|
3542
|
-
"description": "New spend budget in USD",
|
|
3543
|
-
"name": "budget",
|
|
3544
|
-
"hasDynamicHelp": false,
|
|
3545
|
-
"multiple": false,
|
|
3546
|
-
"type": "option"
|
|
3547
|
-
},
|
|
3548
|
-
"reset-spent": {
|
|
3549
|
-
"description": "Reset spent amount to zero",
|
|
3550
|
-
"name": "reset-spent",
|
|
3551
|
-
"allowNo": false,
|
|
3552
|
-
"type": "boolean"
|
|
3553
3606
|
}
|
|
3554
3607
|
},
|
|
3555
3608
|
"hasDynamicHelp": false,
|
|
3556
3609
|
"hiddenAliases": [],
|
|
3557
|
-
"id": "
|
|
3610
|
+
"id": "face:stats",
|
|
3558
3611
|
"pluginAlias": "faces-cli",
|
|
3559
3612
|
"pluginName": "faces-cli",
|
|
3560
3613
|
"pluginType": "core",
|
|
@@ -3564,11 +3617,11 @@
|
|
|
3564
3617
|
"relativePath": [
|
|
3565
3618
|
"dist",
|
|
3566
3619
|
"commands",
|
|
3567
|
-
"
|
|
3568
|
-
"
|
|
3620
|
+
"face",
|
|
3621
|
+
"stats.js"
|
|
3569
3622
|
]
|
|
3570
3623
|
},
|
|
3571
|
-
"
|
|
3624
|
+
"face:teams": {
|
|
3572
3625
|
"aliases": [],
|
|
3573
3626
|
"args": {
|
|
3574
3627
|
"alias": {
|
|
@@ -3577,11 +3630,7 @@
|
|
|
3577
3630
|
"required": true
|
|
3578
3631
|
}
|
|
3579
3632
|
},
|
|
3580
|
-
"description": "
|
|
3581
|
-
"examples": [
|
|
3582
|
-
"<%= config.bin %> <%= command.id %> alice",
|
|
3583
|
-
"<%= config.bin %> <%= command.id %> alice --yes"
|
|
3584
|
-
],
|
|
3633
|
+
"description": "Set a face's team memberships (replaces all)",
|
|
3585
3634
|
"flags": {
|
|
3586
3635
|
"json": {
|
|
3587
3636
|
"description": "Format output as json.",
|
|
@@ -3614,16 +3663,18 @@
|
|
|
3614
3663
|
"multiple": false,
|
|
3615
3664
|
"type": "option"
|
|
3616
3665
|
},
|
|
3617
|
-
"
|
|
3618
|
-
"description": "
|
|
3619
|
-
"name": "
|
|
3620
|
-
"
|
|
3621
|
-
"
|
|
3666
|
+
"team": {
|
|
3667
|
+
"description": "Team ID (repeatable, replaces all memberships)",
|
|
3668
|
+
"name": "team",
|
|
3669
|
+
"required": true,
|
|
3670
|
+
"hasDynamicHelp": false,
|
|
3671
|
+
"multiple": true,
|
|
3672
|
+
"type": "option"
|
|
3622
3673
|
}
|
|
3623
3674
|
},
|
|
3624
3675
|
"hasDynamicHelp": false,
|
|
3625
3676
|
"hiddenAliases": [],
|
|
3626
|
-
"id": "
|
|
3677
|
+
"id": "face:teams",
|
|
3627
3678
|
"pluginAlias": "faces-cli",
|
|
3628
3679
|
"pluginName": "faces-cli",
|
|
3629
3680
|
"pluginType": "core",
|
|
@@ -3633,25 +3684,22 @@
|
|
|
3633
3684
|
"relativePath": [
|
|
3634
3685
|
"dist",
|
|
3635
3686
|
"commands",
|
|
3636
|
-
"
|
|
3637
|
-
"
|
|
3687
|
+
"face",
|
|
3688
|
+
"teams.js"
|
|
3638
3689
|
]
|
|
3639
3690
|
},
|
|
3640
|
-
"
|
|
3691
|
+
"face:unlock": {
|
|
3641
3692
|
"aliases": [],
|
|
3642
3693
|
"args": {
|
|
3643
|
-
"
|
|
3694
|
+
"face_id": {
|
|
3644
3695
|
"description": "Face alias",
|
|
3645
|
-
"name": "
|
|
3696
|
+
"name": "face_id",
|
|
3646
3697
|
"required": true
|
|
3647
3698
|
}
|
|
3648
3699
|
},
|
|
3649
|
-
"description": "
|
|
3700
|
+
"description": "Unlock a face (make it writable again). Thaws the face and everything it owns (documents, threads, voiceprint).",
|
|
3650
3701
|
"examples": [
|
|
3651
|
-
"<%= config.bin %> <%= command.id %>
|
|
3652
|
-
"<%= config.bin %> <%= command.id %> alice --source 1a2b3c4d --source 5e6f7a8b",
|
|
3653
|
-
"<%= config.bin %> <%= command.id %> alice --source 1a2b3c4d:essay",
|
|
3654
|
-
"<%= config.bin %> <%= command.id %> alice --all --medium essay --no-wait"
|
|
3702
|
+
"<%= config.bin %> <%= command.id %> socrates"
|
|
3655
3703
|
],
|
|
3656
3704
|
"flags": {
|
|
3657
3705
|
"json": {
|
|
@@ -3684,71 +3732,11 @@
|
|
|
3684
3732
|
"hasDynamicHelp": false,
|
|
3685
3733
|
"multiple": false,
|
|
3686
3734
|
"type": "option"
|
|
3687
|
-
},
|
|
3688
|
-
"source": {
|
|
3689
|
-
"description": "A document or thread to learn from, by id (repeatable). Append :<medium> to declare what it is, e.g. --source 1a2b3c4d:essay, when the source does not already say.",
|
|
3690
|
-
"name": "source",
|
|
3691
|
-
"hasDynamicHelp": false,
|
|
3692
|
-
"multiple": true,
|
|
3693
|
-
"type": "option"
|
|
3694
|
-
},
|
|
3695
|
-
"all": {
|
|
3696
|
-
"description": "Use every source on the face that is ready. Anything skipped is listed.",
|
|
3697
|
-
"name": "all",
|
|
3698
|
-
"allowNo": false,
|
|
3699
|
-
"type": "boolean"
|
|
3700
|
-
},
|
|
3701
|
-
"medium": {
|
|
3702
|
-
"description": "Medium for any selected source that does not declare one. Each medium is analysed on its own, so an essay never teaches a rule about email.",
|
|
3703
|
-
"name": "medium",
|
|
3704
|
-
"hasDynamicHelp": false,
|
|
3705
|
-
"multiple": false,
|
|
3706
|
-
"type": "option"
|
|
3707
|
-
},
|
|
3708
|
-
"model": {
|
|
3709
|
-
"description": "Analyst model (default: gpt-5.6-terra)",
|
|
3710
|
-
"name": "model",
|
|
3711
|
-
"hasDynamicHelp": false,
|
|
3712
|
-
"multiple": false,
|
|
3713
|
-
"type": "option"
|
|
3714
|
-
},
|
|
3715
|
-
"allow-paid": {
|
|
3716
|
-
"description": "Permit a build that bills. Without this a build is free or it does not run. Needed for any model outside the free tier, and to allow the paid route when a free quota is exhausted.",
|
|
3717
|
-
"name": "allow-paid",
|
|
3718
|
-
"allowNo": false,
|
|
3719
|
-
"type": "boolean"
|
|
3720
|
-
},
|
|
3721
|
-
"compile": {
|
|
3722
|
-
"description": "Compile any named source that is not compiled yet, before capturing style. On by default. --no-compile captures style from what is already compiled and never bills for compilation.",
|
|
3723
|
-
"name": "compile",
|
|
3724
|
-
"allowNo": true,
|
|
3725
|
-
"type": "boolean"
|
|
3726
|
-
},
|
|
3727
|
-
"best-of": {
|
|
3728
|
-
"description": "Generate N candidates and keep the best (1-5, default 1)",
|
|
3729
|
-
"name": "best-of",
|
|
3730
|
-
"hasDynamicHelp": false,
|
|
3731
|
-
"multiple": false,
|
|
3732
|
-
"type": "option"
|
|
3733
|
-
},
|
|
3734
|
-
"no-wait": {
|
|
3735
|
-
"description": "Start the build and return the job id without polling.",
|
|
3736
|
-
"name": "no-wait",
|
|
3737
|
-
"allowNo": false,
|
|
3738
|
-
"type": "boolean"
|
|
3739
|
-
},
|
|
3740
|
-
"timeout": {
|
|
3741
|
-
"description": "How long to wait, in seconds (default: 3600)",
|
|
3742
|
-
"name": "timeout",
|
|
3743
|
-
"default": 3600,
|
|
3744
|
-
"hasDynamicHelp": false,
|
|
3745
|
-
"multiple": false,
|
|
3746
|
-
"type": "option"
|
|
3747
3735
|
}
|
|
3748
3736
|
},
|
|
3749
3737
|
"hasDynamicHelp": false,
|
|
3750
3738
|
"hiddenAliases": [],
|
|
3751
|
-
"id": "
|
|
3739
|
+
"id": "face:unlock",
|
|
3752
3740
|
"pluginAlias": "faces-cli",
|
|
3753
3741
|
"pluginName": "faces-cli",
|
|
3754
3742
|
"pluginType": "core",
|
|
@@ -3758,11 +3746,11 @@
|
|
|
3758
3746
|
"relativePath": [
|
|
3759
3747
|
"dist",
|
|
3760
3748
|
"commands",
|
|
3761
|
-
"
|
|
3762
|
-
"
|
|
3749
|
+
"face",
|
|
3750
|
+
"unlock.js"
|
|
3763
3751
|
]
|
|
3764
3752
|
},
|
|
3765
|
-
"
|
|
3753
|
+
"face:unpublish": {
|
|
3766
3754
|
"aliases": [],
|
|
3767
3755
|
"args": {
|
|
3768
3756
|
"alias": {
|
|
@@ -3771,10 +3759,7 @@
|
|
|
3771
3759
|
"required": true
|
|
3772
3760
|
}
|
|
3773
3761
|
},
|
|
3774
|
-
"description": "
|
|
3775
|
-
"examples": [
|
|
3776
|
-
"<%= config.bin %> <%= command.id %> alice --yes"
|
|
3777
|
-
],
|
|
3762
|
+
"description": "Stop publishing a face. Anyone it is individually shared with keeps their access — publishing is an override on top of sharing, not a replacement for it.",
|
|
3778
3763
|
"flags": {
|
|
3779
3764
|
"json": {
|
|
3780
3765
|
"description": "Format output as json.",
|
|
@@ -3806,17 +3791,11 @@
|
|
|
3806
3791
|
"hasDynamicHelp": false,
|
|
3807
3792
|
"multiple": false,
|
|
3808
3793
|
"type": "option"
|
|
3809
|
-
},
|
|
3810
|
-
"yes": {
|
|
3811
|
-
"description": "Skip confirmation",
|
|
3812
|
-
"name": "yes",
|
|
3813
|
-
"allowNo": false,
|
|
3814
|
-
"type": "boolean"
|
|
3815
3794
|
}
|
|
3816
3795
|
},
|
|
3817
3796
|
"hasDynamicHelp": false,
|
|
3818
3797
|
"hiddenAliases": [],
|
|
3819
|
-
"id": "
|
|
3798
|
+
"id": "face:unpublish",
|
|
3820
3799
|
"pluginAlias": "faces-cli",
|
|
3821
3800
|
"pluginName": "faces-cli",
|
|
3822
3801
|
"pluginType": "core",
|
|
@@ -3826,24 +3805,23 @@
|
|
|
3826
3805
|
"relativePath": [
|
|
3827
3806
|
"dist",
|
|
3828
3807
|
"commands",
|
|
3829
|
-
"
|
|
3830
|
-
"
|
|
3808
|
+
"face",
|
|
3809
|
+
"unpublish.js"
|
|
3831
3810
|
]
|
|
3832
3811
|
},
|
|
3833
|
-
"
|
|
3812
|
+
"face:unshare": {
|
|
3834
3813
|
"aliases": [],
|
|
3835
3814
|
"args": {
|
|
3836
|
-
"
|
|
3837
|
-
"description": "
|
|
3838
|
-
"name": "
|
|
3839
|
-
"required":
|
|
3815
|
+
"alias": {
|
|
3816
|
+
"description": "Face alias",
|
|
3817
|
+
"name": "alias",
|
|
3818
|
+
"required": true
|
|
3840
3819
|
}
|
|
3841
3820
|
},
|
|
3842
|
-
"description": "
|
|
3821
|
+
"description": "Revoke access to a shared face. Takes effect immediately — there is no grace period.",
|
|
3843
3822
|
"examples": [
|
|
3844
|
-
"<%= config.bin %> <%= command.id %>
|
|
3845
|
-
"<%= config.bin %> <%= command.id %> --
|
|
3846
|
-
"<%= config.bin %> <%= command.id %> 7a8b9c0d --wait"
|
|
3823
|
+
"<%= config.bin %> <%= command.id %> alice --from dana --yes",
|
|
3824
|
+
"<%= config.bin %> <%= command.id %> alice --all --yes"
|
|
3847
3825
|
],
|
|
3848
3826
|
"flags": {
|
|
3849
3827
|
"json": {
|
|
@@ -3877,39 +3855,35 @@
|
|
|
3877
3855
|
"multiple": false,
|
|
3878
3856
|
"type": "option"
|
|
3879
3857
|
},
|
|
3880
|
-
"
|
|
3881
|
-
"description": "
|
|
3882
|
-
"
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
"
|
|
3886
|
-
},
|
|
3887
|
-
"limit": {
|
|
3888
|
-
"description": "How many builds to list with --face (default: 10)",
|
|
3889
|
-
"name": "limit",
|
|
3890
|
-
"default": 10,
|
|
3858
|
+
"from": {
|
|
3859
|
+
"description": "Account to revoke (repeatable)",
|
|
3860
|
+
"exclusive": [
|
|
3861
|
+
"all"
|
|
3862
|
+
],
|
|
3863
|
+
"name": "from",
|
|
3891
3864
|
"hasDynamicHelp": false,
|
|
3892
|
-
"multiple":
|
|
3865
|
+
"multiple": true,
|
|
3893
3866
|
"type": "option"
|
|
3894
3867
|
},
|
|
3895
|
-
"
|
|
3896
|
-
"description": "
|
|
3897
|
-
"
|
|
3868
|
+
"all": {
|
|
3869
|
+
"description": "Revoke everyone",
|
|
3870
|
+
"exclusive": [
|
|
3871
|
+
"from"
|
|
3872
|
+
],
|
|
3873
|
+
"name": "all",
|
|
3874
|
+
"allowNo": false,
|
|
3875
|
+
"type": "boolean"
|
|
3876
|
+
},
|
|
3877
|
+
"yes": {
|
|
3878
|
+
"description": "Skip confirmation",
|
|
3879
|
+
"name": "yes",
|
|
3898
3880
|
"allowNo": false,
|
|
3899
3881
|
"type": "boolean"
|
|
3900
|
-
},
|
|
3901
|
-
"timeout": {
|
|
3902
|
-
"description": "How long to wait with --wait, in seconds (default: 3600)",
|
|
3903
|
-
"name": "timeout",
|
|
3904
|
-
"default": 3600,
|
|
3905
|
-
"hasDynamicHelp": false,
|
|
3906
|
-
"multiple": false,
|
|
3907
|
-
"type": "option"
|
|
3908
3882
|
}
|
|
3909
3883
|
},
|
|
3910
3884
|
"hasDynamicHelp": false,
|
|
3911
3885
|
"hiddenAliases": [],
|
|
3912
|
-
"id": "
|
|
3886
|
+
"id": "face:unshare",
|
|
3913
3887
|
"pluginAlias": "faces-cli",
|
|
3914
3888
|
"pluginName": "faces-cli",
|
|
3915
3889
|
"pluginType": "core",
|
|
@@ -3919,29 +3893,23 @@
|
|
|
3919
3893
|
"relativePath": [
|
|
3920
3894
|
"dist",
|
|
3921
3895
|
"commands",
|
|
3922
|
-
"
|
|
3923
|
-
"
|
|
3896
|
+
"face",
|
|
3897
|
+
"unshare.js"
|
|
3924
3898
|
]
|
|
3925
3899
|
},
|
|
3926
|
-
"style:
|
|
3900
|
+
"style:delete": {
|
|
3927
3901
|
"aliases": [],
|
|
3928
3902
|
"args": {
|
|
3929
3903
|
"alias": {
|
|
3930
3904
|
"description": "Face alias",
|
|
3931
3905
|
"name": "alias",
|
|
3932
3906
|
"required": true
|
|
3933
|
-
},
|
|
3934
|
-
"file": {
|
|
3935
|
-
"description": "Corpus file",
|
|
3936
|
-
"name": "file",
|
|
3937
|
-
"required": true
|
|
3938
3907
|
}
|
|
3939
3908
|
},
|
|
3940
|
-
"description": "
|
|
3909
|
+
"description": "Delete a face's captured style. The material it was learned from is kept, so the style can be captured again without re-uploading. This never deletes documents or threads: remove those with compile:doc:delete or compile:thread:delete.",
|
|
3941
3910
|
"examples": [
|
|
3942
|
-
"<%= config.bin %> <%= command.id %> alice
|
|
3943
|
-
"<%= config.bin %> <%= command.id %> alice
|
|
3944
|
-
"<%= config.bin %> <%= command.id %> alice ./mail.jsonl --messages-per-room 100 --strict"
|
|
3911
|
+
"<%= config.bin %> <%= command.id %> alice",
|
|
3912
|
+
"<%= config.bin %> <%= command.id %> alice --yes"
|
|
3945
3913
|
],
|
|
3946
3914
|
"flags": {
|
|
3947
3915
|
"json": {
|
|
@@ -3975,36 +3943,16 @@
|
|
|
3975
3943
|
"multiple": false,
|
|
3976
3944
|
"type": "option"
|
|
3977
3945
|
},
|
|
3978
|
-
"
|
|
3979
|
-
"description": "
|
|
3980
|
-
"name": "
|
|
3981
|
-
"default": "email_jsonl",
|
|
3982
|
-
"hasDynamicHelp": false,
|
|
3983
|
-
"multiple": false,
|
|
3984
|
-
"options": [
|
|
3985
|
-
"email_jsonl",
|
|
3986
|
-
"thread_json"
|
|
3987
|
-
],
|
|
3988
|
-
"type": "option"
|
|
3989
|
-
},
|
|
3990
|
-
"messages-per-room": {
|
|
3991
|
-
"description": "How many messages per room when the type is email_jsonl (1-1000, default: 50)",
|
|
3992
|
-
"name": "messages-per-room",
|
|
3993
|
-
"default": 50,
|
|
3994
|
-
"hasDynamicHelp": false,
|
|
3995
|
-
"multiple": false,
|
|
3996
|
-
"type": "option"
|
|
3997
|
-
},
|
|
3998
|
-
"strict": {
|
|
3999
|
-
"description": "Reject the whole upload if any message is invalid. By default invalid messages are skipped and reported, because a corpus is statistical and a few bad lines are not worth losing the rest.",
|
|
4000
|
-
"name": "strict",
|
|
3946
|
+
"yes": {
|
|
3947
|
+
"description": "Skip confirmation",
|
|
3948
|
+
"name": "yes",
|
|
4001
3949
|
"allowNo": false,
|
|
4002
3950
|
"type": "boolean"
|
|
4003
3951
|
}
|
|
4004
3952
|
},
|
|
4005
3953
|
"hasDynamicHelp": false,
|
|
4006
3954
|
"hiddenAliases": [],
|
|
4007
|
-
"id": "style:
|
|
3955
|
+
"id": "style:delete",
|
|
4008
3956
|
"pluginAlias": "faces-cli",
|
|
4009
3957
|
"pluginName": "faces-cli",
|
|
4010
3958
|
"pluginType": "core",
|
|
@@ -4015,10 +3963,10 @@
|
|
|
4015
3963
|
"dist",
|
|
4016
3964
|
"commands",
|
|
4017
3965
|
"style",
|
|
4018
|
-
"
|
|
3966
|
+
"delete.js"
|
|
4019
3967
|
]
|
|
4020
3968
|
},
|
|
4021
|
-
"style:
|
|
3969
|
+
"style:make": {
|
|
4022
3970
|
"aliases": [],
|
|
4023
3971
|
"args": {
|
|
4024
3972
|
"alias": {
|
|
@@ -4027,10 +3975,12 @@
|
|
|
4027
3975
|
"required": true
|
|
4028
3976
|
}
|
|
4029
3977
|
},
|
|
4030
|
-
"description": "
|
|
3978
|
+
"description": "Capture how a face writes, from its own material, and install it. This is style, not knowledge: compile teaches a face what it knows, style teaches it how it sounds. Name the sources to learn from with --source, or take everything ready with --all.",
|
|
4031
3979
|
"examples": [
|
|
4032
|
-
"<%= config.bin %> <%= command.id %> alice",
|
|
4033
|
-
"<%= config.bin %> <%= command.id %> alice --
|
|
3980
|
+
"<%= config.bin %> <%= command.id %> alice --all",
|
|
3981
|
+
"<%= config.bin %> <%= command.id %> alice --source 1a2b3c4d --source 5e6f7a8b",
|
|
3982
|
+
"<%= config.bin %> <%= command.id %> alice --source 1a2b3c4d:essay",
|
|
3983
|
+
"<%= config.bin %> <%= command.id %> alice --all --medium essay --no-wait"
|
|
4034
3984
|
],
|
|
4035
3985
|
"flags": {
|
|
4036
3986
|
"json": {
|
|
@@ -4063,11 +4013,71 @@
|
|
|
4063
4013
|
"hasDynamicHelp": false,
|
|
4064
4014
|
"multiple": false,
|
|
4065
4015
|
"type": "option"
|
|
4016
|
+
},
|
|
4017
|
+
"source": {
|
|
4018
|
+
"description": "A document or thread to learn from, by id (repeatable). Append :<medium> to declare what it is, e.g. --source 1a2b3c4d:essay, when the source does not already say.",
|
|
4019
|
+
"name": "source",
|
|
4020
|
+
"hasDynamicHelp": false,
|
|
4021
|
+
"multiple": true,
|
|
4022
|
+
"type": "option"
|
|
4023
|
+
},
|
|
4024
|
+
"all": {
|
|
4025
|
+
"description": "Use every source on the face that is ready. Anything skipped is listed.",
|
|
4026
|
+
"name": "all",
|
|
4027
|
+
"allowNo": false,
|
|
4028
|
+
"type": "boolean"
|
|
4029
|
+
},
|
|
4030
|
+
"medium": {
|
|
4031
|
+
"description": "Medium for selected sources that do not already declare one. It does not override a source that does. Each medium is analysed on its own, so an essay never teaches a rule about email.",
|
|
4032
|
+
"name": "medium",
|
|
4033
|
+
"hasDynamicHelp": false,
|
|
4034
|
+
"multiple": false,
|
|
4035
|
+
"type": "option"
|
|
4036
|
+
},
|
|
4037
|
+
"model": {
|
|
4038
|
+
"description": "Analyst model (default: gpt-5.6-terra)",
|
|
4039
|
+
"name": "model",
|
|
4040
|
+
"hasDynamicHelp": false,
|
|
4041
|
+
"multiple": false,
|
|
4042
|
+
"type": "option"
|
|
4043
|
+
},
|
|
4044
|
+
"allow-paid": {
|
|
4045
|
+
"description": "Permit a build that bills. Without this a build is free or it does not run. Needed for any model outside the free tier, and to allow the paid route when a free quota is exhausted.",
|
|
4046
|
+
"name": "allow-paid",
|
|
4047
|
+
"allowNo": false,
|
|
4048
|
+
"type": "boolean"
|
|
4049
|
+
},
|
|
4050
|
+
"compile": {
|
|
4051
|
+
"description": "Compile any named source that is not compiled yet, before capturing style. On by default. --no-compile captures style from what is already compiled and never bills for compilation.",
|
|
4052
|
+
"name": "compile",
|
|
4053
|
+
"allowNo": true,
|
|
4054
|
+
"type": "boolean"
|
|
4055
|
+
},
|
|
4056
|
+
"best-of": {
|
|
4057
|
+
"description": "Generate N candidates and keep the best (1-5, default 1)",
|
|
4058
|
+
"name": "best-of",
|
|
4059
|
+
"hasDynamicHelp": false,
|
|
4060
|
+
"multiple": false,
|
|
4061
|
+
"type": "option"
|
|
4062
|
+
},
|
|
4063
|
+
"no-wait": {
|
|
4064
|
+
"description": "Start the build and return the job id without polling.",
|
|
4065
|
+
"name": "no-wait",
|
|
4066
|
+
"allowNo": false,
|
|
4067
|
+
"type": "boolean"
|
|
4068
|
+
},
|
|
4069
|
+
"timeout": {
|
|
4070
|
+
"description": "How long to wait, in seconds (default: 3600)",
|
|
4071
|
+
"name": "timeout",
|
|
4072
|
+
"default": 3600,
|
|
4073
|
+
"hasDynamicHelp": false,
|
|
4074
|
+
"multiple": false,
|
|
4075
|
+
"type": "option"
|
|
4066
4076
|
}
|
|
4067
4077
|
},
|
|
4068
4078
|
"hasDynamicHelp": false,
|
|
4069
4079
|
"hiddenAliases": [],
|
|
4070
|
-
"id": "style:
|
|
4080
|
+
"id": "style:make",
|
|
4071
4081
|
"pluginAlias": "faces-cli",
|
|
4072
4082
|
"pluginName": "faces-cli",
|
|
4073
4083
|
"pluginType": "core",
|
|
@@ -4078,19 +4088,23 @@
|
|
|
4078
4088
|
"dist",
|
|
4079
4089
|
"commands",
|
|
4080
4090
|
"style",
|
|
4081
|
-
"
|
|
4091
|
+
"make.js"
|
|
4082
4092
|
]
|
|
4083
4093
|
},
|
|
4084
|
-
"
|
|
4094
|
+
"style:revert": {
|
|
4085
4095
|
"aliases": [],
|
|
4086
4096
|
"args": {
|
|
4087
|
-
"
|
|
4088
|
-
"description": "
|
|
4089
|
-
"name": "
|
|
4097
|
+
"alias": {
|
|
4098
|
+
"description": "Face alias",
|
|
4099
|
+
"name": "alias",
|
|
4090
4100
|
"required": true
|
|
4091
4101
|
}
|
|
4092
4102
|
},
|
|
4093
|
-
"description": "
|
|
4103
|
+
"description": "Go back to the style a face had before the last style:make. A face holds one style per medium, so name which one with --medium when it has more than one. Two versions are kept per medium, so this goes back exactly one step. It changes how the face writes immediately, so it asks first.",
|
|
4104
|
+
"examples": [
|
|
4105
|
+
"<%= config.bin %> <%= command.id %> alice --yes",
|
|
4106
|
+
"<%= config.bin %> <%= command.id %> alice --medium email --yes"
|
|
4107
|
+
],
|
|
4094
4108
|
"flags": {
|
|
4095
4109
|
"json": {
|
|
4096
4110
|
"description": "Format output as json.",
|
|
@@ -4123,18 +4137,23 @@
|
|
|
4123
4137
|
"multiple": false,
|
|
4124
4138
|
"type": "option"
|
|
4125
4139
|
},
|
|
4126
|
-
"
|
|
4127
|
-
"description": "
|
|
4128
|
-
"name": "
|
|
4129
|
-
"required": true,
|
|
4140
|
+
"medium": {
|
|
4141
|
+
"description": "Which style to step back, when the face has more than one. See faces style:versions <alias>.",
|
|
4142
|
+
"name": "medium",
|
|
4130
4143
|
"hasDynamicHelp": false,
|
|
4131
|
-
"multiple":
|
|
4144
|
+
"multiple": false,
|
|
4132
4145
|
"type": "option"
|
|
4146
|
+
},
|
|
4147
|
+
"yes": {
|
|
4148
|
+
"description": "Skip confirmation",
|
|
4149
|
+
"name": "yes",
|
|
4150
|
+
"allowNo": false,
|
|
4151
|
+
"type": "boolean"
|
|
4133
4152
|
}
|
|
4134
4153
|
},
|
|
4135
4154
|
"hasDynamicHelp": false,
|
|
4136
4155
|
"hiddenAliases": [],
|
|
4137
|
-
"id": "
|
|
4156
|
+
"id": "style:revert",
|
|
4138
4157
|
"pluginAlias": "faces-cli",
|
|
4139
4158
|
"pluginName": "faces-cli",
|
|
4140
4159
|
"pluginType": "core",
|
|
@@ -4144,14 +4163,25 @@
|
|
|
4144
4163
|
"relativePath": [
|
|
4145
4164
|
"dist",
|
|
4146
4165
|
"commands",
|
|
4147
|
-
"
|
|
4148
|
-
"
|
|
4166
|
+
"style",
|
|
4167
|
+
"revert.js"
|
|
4149
4168
|
]
|
|
4150
4169
|
},
|
|
4151
|
-
"
|
|
4170
|
+
"style:status": {
|
|
4152
4171
|
"aliases": [],
|
|
4153
|
-
"args": {
|
|
4154
|
-
|
|
4172
|
+
"args": {
|
|
4173
|
+
"job_id": {
|
|
4174
|
+
"description": "Build job id",
|
|
4175
|
+
"name": "job_id",
|
|
4176
|
+
"required": false
|
|
4177
|
+
}
|
|
4178
|
+
},
|
|
4179
|
+
"description": "Read a style build. Give a job id for one build, or --face to list a face's recent builds. Listing is how you find a job id you no longer have.",
|
|
4180
|
+
"examples": [
|
|
4181
|
+
"<%= config.bin %> <%= command.id %> 7a8b9c0d",
|
|
4182
|
+
"<%= config.bin %> <%= command.id %> --face alice",
|
|
4183
|
+
"<%= config.bin %> <%= command.id %> 7a8b9c0d --wait"
|
|
4184
|
+
],
|
|
4155
4185
|
"flags": {
|
|
4156
4186
|
"json": {
|
|
4157
4187
|
"description": "Format output as json.",
|
|
@@ -4184,46 +4214,39 @@
|
|
|
4184
4214
|
"multiple": false,
|
|
4185
4215
|
"type": "option"
|
|
4186
4216
|
},
|
|
4187
|
-
"
|
|
4188
|
-
"description": "
|
|
4189
|
-
"name": "
|
|
4190
|
-
"required": true,
|
|
4217
|
+
"face": {
|
|
4218
|
+
"description": "List recent builds for this face instead of reading one job",
|
|
4219
|
+
"name": "face",
|
|
4191
4220
|
"hasDynamicHelp": false,
|
|
4192
4221
|
"multiple": false,
|
|
4193
4222
|
"type": "option"
|
|
4194
4223
|
},
|
|
4195
|
-
"
|
|
4196
|
-
"description": "
|
|
4197
|
-
"name": "
|
|
4224
|
+
"limit": {
|
|
4225
|
+
"description": "How many builds to list with --face (default: 10)",
|
|
4226
|
+
"name": "limit",
|
|
4227
|
+
"default": 10,
|
|
4198
4228
|
"hasDynamicHelp": false,
|
|
4199
4229
|
"multiple": false,
|
|
4200
4230
|
"type": "option"
|
|
4201
4231
|
},
|
|
4202
|
-
"
|
|
4203
|
-
"description": "
|
|
4204
|
-
"name": "
|
|
4205
|
-
"
|
|
4206
|
-
"
|
|
4207
|
-
"type": "option"
|
|
4232
|
+
"wait": {
|
|
4233
|
+
"description": "Block until the job finishes",
|
|
4234
|
+
"name": "wait",
|
|
4235
|
+
"allowNo": false,
|
|
4236
|
+
"type": "boolean"
|
|
4208
4237
|
},
|
|
4209
|
-
"
|
|
4210
|
-
"description": "
|
|
4211
|
-
"name": "
|
|
4238
|
+
"timeout": {
|
|
4239
|
+
"description": "How long to wait with --wait, in seconds (default: 3600)",
|
|
4240
|
+
"name": "timeout",
|
|
4241
|
+
"default": 3600,
|
|
4212
4242
|
"hasDynamicHelp": false,
|
|
4213
4243
|
"multiple": false,
|
|
4214
4244
|
"type": "option"
|
|
4215
|
-
},
|
|
4216
|
-
"tag": {
|
|
4217
|
-
"description": "Tag label (repeatable, lowercase)",
|
|
4218
|
-
"name": "tag",
|
|
4219
|
-
"hasDynamicHelp": false,
|
|
4220
|
-
"multiple": true,
|
|
4221
|
-
"type": "option"
|
|
4222
4245
|
}
|
|
4223
4246
|
},
|
|
4224
4247
|
"hasDynamicHelp": false,
|
|
4225
4248
|
"hiddenAliases": [],
|
|
4226
|
-
"id": "
|
|
4249
|
+
"id": "style:status",
|
|
4227
4250
|
"pluginAlias": "faces-cli",
|
|
4228
4251
|
"pluginName": "faces-cli",
|
|
4229
4252
|
"pluginType": "core",
|
|
@@ -4233,20 +4256,30 @@
|
|
|
4233
4256
|
"relativePath": [
|
|
4234
4257
|
"dist",
|
|
4235
4258
|
"commands",
|
|
4236
|
-
"
|
|
4237
|
-
"
|
|
4259
|
+
"style",
|
|
4260
|
+
"status.js"
|
|
4238
4261
|
]
|
|
4239
4262
|
},
|
|
4240
|
-
"
|
|
4263
|
+
"style:upload": {
|
|
4241
4264
|
"aliases": [],
|
|
4242
4265
|
"args": {
|
|
4243
|
-
"
|
|
4244
|
-
"description": "
|
|
4245
|
-
"name": "
|
|
4266
|
+
"alias": {
|
|
4267
|
+
"description": "Face alias",
|
|
4268
|
+
"name": "alias",
|
|
4269
|
+
"required": true
|
|
4270
|
+
},
|
|
4271
|
+
"file": {
|
|
4272
|
+
"description": "Corpus file",
|
|
4273
|
+
"name": "file",
|
|
4246
4274
|
"required": true
|
|
4247
4275
|
}
|
|
4248
4276
|
},
|
|
4249
|
-
"description": "
|
|
4277
|
+
"description": "Load a corpus of a person's own writing (a mail export, a message archive) as source material for style capture. This only stores the material: nothing is compiled and nothing is billed. Capture the style afterwards with style:make.",
|
|
4278
|
+
"examples": [
|
|
4279
|
+
"<%= config.bin %> <%= command.id %> alice ./mail.jsonl",
|
|
4280
|
+
"<%= config.bin %> <%= command.id %> alice ./thread.json --type thread_json",
|
|
4281
|
+
"<%= config.bin %> <%= command.id %> alice ./mail.jsonl --messages-per-room 100 --strict"
|
|
4282
|
+
],
|
|
4250
4283
|
"flags": {
|
|
4251
4284
|
"json": {
|
|
4252
4285
|
"description": "Format output as json.",
|
|
@@ -4279,16 +4312,36 @@
|
|
|
4279
4312
|
"multiple": false,
|
|
4280
4313
|
"type": "option"
|
|
4281
4314
|
},
|
|
4282
|
-
"
|
|
4283
|
-
"description": "
|
|
4284
|
-
"name": "
|
|
4315
|
+
"type": {
|
|
4316
|
+
"description": "email_jsonl: one message per line, split across several rooms. thread_json: a JSON array that becomes a single room.",
|
|
4317
|
+
"name": "type",
|
|
4318
|
+
"default": "email_jsonl",
|
|
4319
|
+
"hasDynamicHelp": false,
|
|
4320
|
+
"multiple": false,
|
|
4321
|
+
"options": [
|
|
4322
|
+
"email_jsonl",
|
|
4323
|
+
"thread_json"
|
|
4324
|
+
],
|
|
4325
|
+
"type": "option"
|
|
4326
|
+
},
|
|
4327
|
+
"messages-per-room": {
|
|
4328
|
+
"description": "How many messages per room when the type is email_jsonl (1-1000, default: 50)",
|
|
4329
|
+
"name": "messages-per-room",
|
|
4330
|
+
"default": 50,
|
|
4331
|
+
"hasDynamicHelp": false,
|
|
4332
|
+
"multiple": false,
|
|
4333
|
+
"type": "option"
|
|
4334
|
+
},
|
|
4335
|
+
"strict": {
|
|
4336
|
+
"description": "Reject the whole upload if any message is invalid. By default invalid messages are skipped and reported, because a corpus is statistical and a few bad lines are not worth losing the rest.",
|
|
4337
|
+
"name": "strict",
|
|
4285
4338
|
"allowNo": false,
|
|
4286
4339
|
"type": "boolean"
|
|
4287
4340
|
}
|
|
4288
4341
|
},
|
|
4289
4342
|
"hasDynamicHelp": false,
|
|
4290
4343
|
"hiddenAliases": [],
|
|
4291
|
-
"id": "
|
|
4344
|
+
"id": "style:upload",
|
|
4292
4345
|
"pluginAlias": "faces-cli",
|
|
4293
4346
|
"pluginName": "faces-cli",
|
|
4294
4347
|
"pluginType": "core",
|
|
@@ -4298,20 +4351,24 @@
|
|
|
4298
4351
|
"relativePath": [
|
|
4299
4352
|
"dist",
|
|
4300
4353
|
"commands",
|
|
4301
|
-
"
|
|
4302
|
-
"
|
|
4354
|
+
"style",
|
|
4355
|
+
"upload.js"
|
|
4303
4356
|
]
|
|
4304
4357
|
},
|
|
4305
|
-
"
|
|
4358
|
+
"style:versions": {
|
|
4306
4359
|
"aliases": [],
|
|
4307
4360
|
"args": {
|
|
4308
|
-
"
|
|
4309
|
-
"description": "
|
|
4310
|
-
"name": "
|
|
4361
|
+
"alias": {
|
|
4362
|
+
"description": "Face alias",
|
|
4363
|
+
"name": "alias",
|
|
4311
4364
|
"required": true
|
|
4312
4365
|
}
|
|
4313
4366
|
},
|
|
4314
|
-
"description": "
|
|
4367
|
+
"description": "List the styles captured for a face, and which one it writes in now. A face holds one style per medium, so more than one can be in use at once: an email style and an essay style are separate and do not replace each other. Two versions are kept per medium, which is what style:revert has to go back to.",
|
|
4368
|
+
"examples": [
|
|
4369
|
+
"<%= config.bin %> <%= command.id %> alice",
|
|
4370
|
+
"<%= config.bin %> <%= command.id %> alice --json"
|
|
4371
|
+
],
|
|
4315
4372
|
"flags": {
|
|
4316
4373
|
"json": {
|
|
4317
4374
|
"description": "Format output as json.",
|
|
@@ -4343,39 +4400,11 @@
|
|
|
4343
4400
|
"hasDynamicHelp": false,
|
|
4344
4401
|
"multiple": false,
|
|
4345
4402
|
"type": "option"
|
|
4346
|
-
},
|
|
4347
|
-
"name": {
|
|
4348
|
-
"description": "New team name",
|
|
4349
|
-
"name": "name",
|
|
4350
|
-
"hasDynamicHelp": false,
|
|
4351
|
-
"multiple": false,
|
|
4352
|
-
"type": "option"
|
|
4353
|
-
},
|
|
4354
|
-
"description": {
|
|
4355
|
-
"description": "New description (max 1500 chars)",
|
|
4356
|
-
"name": "description",
|
|
4357
|
-
"hasDynamicHelp": false,
|
|
4358
|
-
"multiple": false,
|
|
4359
|
-
"type": "option"
|
|
4360
|
-
},
|
|
4361
|
-
"protocol": {
|
|
4362
|
-
"description": "New protocol content",
|
|
4363
|
-
"name": "protocol",
|
|
4364
|
-
"hasDynamicHelp": false,
|
|
4365
|
-
"multiple": false,
|
|
4366
|
-
"type": "option"
|
|
4367
|
-
},
|
|
4368
|
-
"protocol-file": {
|
|
4369
|
-
"description": "Read protocol from file",
|
|
4370
|
-
"name": "protocol-file",
|
|
4371
|
-
"hasDynamicHelp": false,
|
|
4372
|
-
"multiple": false,
|
|
4373
|
-
"type": "option"
|
|
4374
4403
|
}
|
|
4375
4404
|
},
|
|
4376
4405
|
"hasDynamicHelp": false,
|
|
4377
4406
|
"hiddenAliases": [],
|
|
4378
|
-
"id": "
|
|
4407
|
+
"id": "style:versions",
|
|
4379
4408
|
"pluginAlias": "faces-cli",
|
|
4380
4409
|
"pluginName": "faces-cli",
|
|
4381
4410
|
"pluginType": "core",
|
|
@@ -4385,11 +4414,11 @@
|
|
|
4385
4414
|
"relativePath": [
|
|
4386
4415
|
"dist",
|
|
4387
4416
|
"commands",
|
|
4388
|
-
"
|
|
4389
|
-
"
|
|
4417
|
+
"style",
|
|
4418
|
+
"versions.js"
|
|
4390
4419
|
]
|
|
4391
4420
|
},
|
|
4392
|
-
"team:
|
|
4421
|
+
"team:add": {
|
|
4393
4422
|
"aliases": [],
|
|
4394
4423
|
"args": {
|
|
4395
4424
|
"team_id": {
|
|
@@ -4398,7 +4427,11 @@
|
|
|
4398
4427
|
"required": true
|
|
4399
4428
|
}
|
|
4400
4429
|
},
|
|
4401
|
-
"description": "
|
|
4430
|
+
"description": "Add face(s) to a team. Any face this account can reach may join: your own, a published one, or one shared with you. Name someone else's as owner:alias, the same address chat uses.",
|
|
4431
|
+
"examples": [
|
|
4432
|
+
"<%= config.bin %> <%= command.id %> TEAM_ID --face alice --face bob",
|
|
4433
|
+
"<%= config.bin %> <%= command.id %> TEAM_ID --face head:socrates"
|
|
4434
|
+
],
|
|
4402
4435
|
"flags": {
|
|
4403
4436
|
"json": {
|
|
4404
4437
|
"description": "Format output as json.",
|
|
@@ -4430,11 +4463,19 @@
|
|
|
4430
4463
|
"hasDynamicHelp": false,
|
|
4431
4464
|
"multiple": false,
|
|
4432
4465
|
"type": "option"
|
|
4466
|
+
},
|
|
4467
|
+
"face": {
|
|
4468
|
+
"description": "Face alias to add (repeatable)",
|
|
4469
|
+
"name": "face",
|
|
4470
|
+
"required": true,
|
|
4471
|
+
"hasDynamicHelp": false,
|
|
4472
|
+
"multiple": true,
|
|
4473
|
+
"type": "option"
|
|
4433
4474
|
}
|
|
4434
4475
|
},
|
|
4435
4476
|
"hasDynamicHelp": false,
|
|
4436
4477
|
"hiddenAliases": [],
|
|
4437
|
-
"id": "team:
|
|
4478
|
+
"id": "team:add",
|
|
4438
4479
|
"pluginAlias": "faces-cli",
|
|
4439
4480
|
"pluginName": "faces-cli",
|
|
4440
4481
|
"pluginType": "core",
|
|
@@ -4445,13 +4486,13 @@
|
|
|
4445
4486
|
"dist",
|
|
4446
4487
|
"commands",
|
|
4447
4488
|
"team",
|
|
4448
|
-
"
|
|
4489
|
+
"add.js"
|
|
4449
4490
|
]
|
|
4450
4491
|
},
|
|
4451
|
-
"team:
|
|
4492
|
+
"team:create": {
|
|
4452
4493
|
"aliases": [],
|
|
4453
4494
|
"args": {},
|
|
4454
|
-
"description": "
|
|
4495
|
+
"description": "Create a new team",
|
|
4455
4496
|
"flags": {
|
|
4456
4497
|
"json": {
|
|
4457
4498
|
"description": "Format output as json.",
|
|
@@ -4483,11 +4524,47 @@
|
|
|
4483
4524
|
"hasDynamicHelp": false,
|
|
4484
4525
|
"multiple": false,
|
|
4485
4526
|
"type": "option"
|
|
4527
|
+
},
|
|
4528
|
+
"name": {
|
|
4529
|
+
"description": "Team name",
|
|
4530
|
+
"name": "name",
|
|
4531
|
+
"required": true,
|
|
4532
|
+
"hasDynamicHelp": false,
|
|
4533
|
+
"multiple": false,
|
|
4534
|
+
"type": "option"
|
|
4535
|
+
},
|
|
4536
|
+
"description": {
|
|
4537
|
+
"description": "Plain-text team description (max 1500 chars)",
|
|
4538
|
+
"name": "description",
|
|
4539
|
+
"hasDynamicHelp": false,
|
|
4540
|
+
"multiple": false,
|
|
4541
|
+
"type": "option"
|
|
4542
|
+
},
|
|
4543
|
+
"protocol": {
|
|
4544
|
+
"description": "Protocol content (mermaid diagram or markdown, max 1000 words)",
|
|
4545
|
+
"name": "protocol",
|
|
4546
|
+
"hasDynamicHelp": false,
|
|
4547
|
+
"multiple": false,
|
|
4548
|
+
"type": "option"
|
|
4549
|
+
},
|
|
4550
|
+
"protocol-file": {
|
|
4551
|
+
"description": "Read protocol from file",
|
|
4552
|
+
"name": "protocol-file",
|
|
4553
|
+
"hasDynamicHelp": false,
|
|
4554
|
+
"multiple": false,
|
|
4555
|
+
"type": "option"
|
|
4556
|
+
},
|
|
4557
|
+
"tag": {
|
|
4558
|
+
"description": "Tag label (repeatable, lowercase)",
|
|
4559
|
+
"name": "tag",
|
|
4560
|
+
"hasDynamicHelp": false,
|
|
4561
|
+
"multiple": true,
|
|
4562
|
+
"type": "option"
|
|
4486
4563
|
}
|
|
4487
4564
|
},
|
|
4488
4565
|
"hasDynamicHelp": false,
|
|
4489
4566
|
"hiddenAliases": [],
|
|
4490
|
-
"id": "team:
|
|
4567
|
+
"id": "team:create",
|
|
4491
4568
|
"pluginAlias": "faces-cli",
|
|
4492
4569
|
"pluginName": "faces-cli",
|
|
4493
4570
|
"pluginType": "core",
|
|
@@ -4498,10 +4575,10 @@
|
|
|
4498
4575
|
"dist",
|
|
4499
4576
|
"commands",
|
|
4500
4577
|
"team",
|
|
4501
|
-
"
|
|
4578
|
+
"create.js"
|
|
4502
4579
|
]
|
|
4503
4580
|
},
|
|
4504
|
-
"team:
|
|
4581
|
+
"team:delete": {
|
|
4505
4582
|
"aliases": [],
|
|
4506
4583
|
"args": {
|
|
4507
4584
|
"team_id": {
|
|
@@ -4510,7 +4587,7 @@
|
|
|
4510
4587
|
"required": true
|
|
4511
4588
|
}
|
|
4512
4589
|
},
|
|
4513
|
-
"description": "
|
|
4590
|
+
"description": "Delete a team",
|
|
4514
4591
|
"flags": {
|
|
4515
4592
|
"json": {
|
|
4516
4593
|
"description": "Format output as json.",
|
|
@@ -4542,11 +4619,17 @@
|
|
|
4542
4619
|
"hasDynamicHelp": false,
|
|
4543
4620
|
"multiple": false,
|
|
4544
4621
|
"type": "option"
|
|
4622
|
+
},
|
|
4623
|
+
"yes": {
|
|
4624
|
+
"description": "Skip confirmation",
|
|
4625
|
+
"name": "yes",
|
|
4626
|
+
"allowNo": false,
|
|
4627
|
+
"type": "boolean"
|
|
4545
4628
|
}
|
|
4546
4629
|
},
|
|
4547
4630
|
"hasDynamicHelp": false,
|
|
4548
4631
|
"hiddenAliases": [],
|
|
4549
|
-
"id": "team:
|
|
4632
|
+
"id": "team:delete",
|
|
4550
4633
|
"pluginAlias": "faces-cli",
|
|
4551
4634
|
"pluginName": "faces-cli",
|
|
4552
4635
|
"pluginType": "core",
|
|
@@ -4557,24 +4640,19 @@
|
|
|
4557
4640
|
"dist",
|
|
4558
4641
|
"commands",
|
|
4559
4642
|
"team",
|
|
4560
|
-
"
|
|
4643
|
+
"delete.js"
|
|
4561
4644
|
]
|
|
4562
4645
|
},
|
|
4563
|
-
"team:
|
|
4646
|
+
"team:edit": {
|
|
4564
4647
|
"aliases": [],
|
|
4565
4648
|
"args": {
|
|
4566
4649
|
"team_id": {
|
|
4567
4650
|
"description": "Team ID",
|
|
4568
4651
|
"name": "team_id",
|
|
4569
4652
|
"required": true
|
|
4570
|
-
},
|
|
4571
|
-
"alias": {
|
|
4572
|
-
"description": "Face alias to remove",
|
|
4573
|
-
"name": "alias",
|
|
4574
|
-
"required": true
|
|
4575
4653
|
}
|
|
4576
4654
|
},
|
|
4577
|
-
"description": "
|
|
4655
|
+
"description": "Edit a team",
|
|
4578
4656
|
"flags": {
|
|
4579
4657
|
"json": {
|
|
4580
4658
|
"description": "Format output as json.",
|
|
@@ -4606,11 +4684,39 @@
|
|
|
4606
4684
|
"hasDynamicHelp": false,
|
|
4607
4685
|
"multiple": false,
|
|
4608
4686
|
"type": "option"
|
|
4687
|
+
},
|
|
4688
|
+
"name": {
|
|
4689
|
+
"description": "New team name",
|
|
4690
|
+
"name": "name",
|
|
4691
|
+
"hasDynamicHelp": false,
|
|
4692
|
+
"multiple": false,
|
|
4693
|
+
"type": "option"
|
|
4694
|
+
},
|
|
4695
|
+
"description": {
|
|
4696
|
+
"description": "New description (max 1500 chars)",
|
|
4697
|
+
"name": "description",
|
|
4698
|
+
"hasDynamicHelp": false,
|
|
4699
|
+
"multiple": false,
|
|
4700
|
+
"type": "option"
|
|
4701
|
+
},
|
|
4702
|
+
"protocol": {
|
|
4703
|
+
"description": "New protocol content",
|
|
4704
|
+
"name": "protocol",
|
|
4705
|
+
"hasDynamicHelp": false,
|
|
4706
|
+
"multiple": false,
|
|
4707
|
+
"type": "option"
|
|
4708
|
+
},
|
|
4709
|
+
"protocol-file": {
|
|
4710
|
+
"description": "Read protocol from file",
|
|
4711
|
+
"name": "protocol-file",
|
|
4712
|
+
"hasDynamicHelp": false,
|
|
4713
|
+
"multiple": false,
|
|
4714
|
+
"type": "option"
|
|
4609
4715
|
}
|
|
4610
4716
|
},
|
|
4611
4717
|
"hasDynamicHelp": false,
|
|
4612
4718
|
"hiddenAliases": [],
|
|
4613
|
-
"id": "team:
|
|
4719
|
+
"id": "team:edit",
|
|
4614
4720
|
"pluginAlias": "faces-cli",
|
|
4615
4721
|
"pluginName": "faces-cli",
|
|
4616
4722
|
"pluginType": "core",
|
|
@@ -4621,13 +4727,19 @@
|
|
|
4621
4727
|
"dist",
|
|
4622
4728
|
"commands",
|
|
4623
4729
|
"team",
|
|
4624
|
-
"
|
|
4730
|
+
"edit.js"
|
|
4625
4731
|
]
|
|
4626
4732
|
},
|
|
4627
|
-
"
|
|
4733
|
+
"team:get": {
|
|
4628
4734
|
"aliases": [],
|
|
4629
|
-
"args": {
|
|
4630
|
-
|
|
4735
|
+
"args": {
|
|
4736
|
+
"team_id": {
|
|
4737
|
+
"description": "Team ID",
|
|
4738
|
+
"name": "team_id",
|
|
4739
|
+
"required": true
|
|
4740
|
+
}
|
|
4741
|
+
},
|
|
4742
|
+
"description": "Get a team by ID",
|
|
4631
4743
|
"flags": {
|
|
4632
4744
|
"json": {
|
|
4633
4745
|
"description": "Format output as json.",
|
|
@@ -4659,19 +4771,11 @@
|
|
|
4659
4771
|
"hasDynamicHelp": false,
|
|
4660
4772
|
"multiple": false,
|
|
4661
4773
|
"type": "option"
|
|
4662
|
-
},
|
|
4663
|
-
"timeout": {
|
|
4664
|
-
"description": "Per-item compile timeout in seconds (default: 600)",
|
|
4665
|
-
"name": "timeout",
|
|
4666
|
-
"default": 600,
|
|
4667
|
-
"hasDynamicHelp": false,
|
|
4668
|
-
"multiple": false,
|
|
4669
|
-
"type": "option"
|
|
4670
4774
|
}
|
|
4671
4775
|
},
|
|
4672
4776
|
"hasDynamicHelp": false,
|
|
4673
4777
|
"hiddenAliases": [],
|
|
4674
|
-
"id": "
|
|
4778
|
+
"id": "team:get",
|
|
4675
4779
|
"pluginAlias": "faces-cli",
|
|
4676
4780
|
"pluginName": "faces-cli",
|
|
4677
4781
|
"pluginType": "core",
|
|
@@ -4681,20 +4785,14 @@
|
|
|
4681
4785
|
"relativePath": [
|
|
4682
4786
|
"dist",
|
|
4683
4787
|
"commands",
|
|
4684
|
-
"
|
|
4685
|
-
"
|
|
4788
|
+
"team",
|
|
4789
|
+
"get.js"
|
|
4686
4790
|
]
|
|
4687
4791
|
},
|
|
4688
|
-
"
|
|
4792
|
+
"team:list": {
|
|
4689
4793
|
"aliases": [],
|
|
4690
|
-
"args": {
|
|
4691
|
-
|
|
4692
|
-
"description": "Face alias",
|
|
4693
|
-
"name": "face_id",
|
|
4694
|
-
"required": true
|
|
4695
|
-
}
|
|
4696
|
-
},
|
|
4697
|
-
"description": "Import a YouTube video into a face via server-side download and transcription",
|
|
4794
|
+
"args": {},
|
|
4795
|
+
"description": "List your teams",
|
|
4698
4796
|
"flags": {
|
|
4699
4797
|
"json": {
|
|
4700
4798
|
"description": "Format output as json.",
|
|
@@ -4711,71 +4809,26 @@
|
|
|
4711
4809
|
"multiple": false,
|
|
4712
4810
|
"type": "option"
|
|
4713
4811
|
},
|
|
4714
|
-
"token": {
|
|
4715
|
-
"description": "JWT bearer token",
|
|
4716
|
-
"env": "FACES_TOKEN",
|
|
4717
|
-
"name": "token",
|
|
4718
|
-
"hasDynamicHelp": false,
|
|
4719
|
-
"multiple": false,
|
|
4720
|
-
"type": "option"
|
|
4721
|
-
},
|
|
4722
|
-
"api-key": {
|
|
4723
|
-
"description": "API key",
|
|
4724
|
-
"env": "FACES_API_KEY",
|
|
4725
|
-
"name": "api-key",
|
|
4726
|
-
"hasDynamicHelp": false,
|
|
4727
|
-
"multiple": false,
|
|
4728
|
-
"type": "option"
|
|
4729
|
-
},
|
|
4730
|
-
"url": {
|
|
4731
|
-
"description": "YouTube URL (youtube.com/watch?v=... or youtu.be/...)",
|
|
4732
|
-
"name": "url",
|
|
4733
|
-
"required": true,
|
|
4734
|
-
"hasDynamicHelp": false,
|
|
4735
|
-
"multiple": false,
|
|
4736
|
-
"type": "option"
|
|
4737
|
-
},
|
|
4738
|
-
"type": {
|
|
4739
|
-
"description": "\"document\" for solo talks, lectures, monologues; \"thread\" for interviews or multi-speaker conversations",
|
|
4740
|
-
"name": "type",
|
|
4741
|
-
"default": "document",
|
|
4742
|
-
"hasDynamicHelp": false,
|
|
4743
|
-
"multiple": false,
|
|
4744
|
-
"options": [
|
|
4745
|
-
"document",
|
|
4746
|
-
"thread"
|
|
4747
|
-
],
|
|
4748
|
-
"type": "option"
|
|
4749
|
-
},
|
|
4750
|
-
"perspective": {
|
|
4751
|
-
"description": "\"first-person\" if the face is the speaker; \"third-person\" if the video is about the face",
|
|
4752
|
-
"name": "perspective",
|
|
4753
|
-
"default": "third-person",
|
|
4812
|
+
"token": {
|
|
4813
|
+
"description": "JWT bearer token",
|
|
4814
|
+
"env": "FACES_TOKEN",
|
|
4815
|
+
"name": "token",
|
|
4754
4816
|
"hasDynamicHelp": false,
|
|
4755
4817
|
"multiple": false,
|
|
4756
|
-
"options": [
|
|
4757
|
-
"first-person",
|
|
4758
|
-
"third-person"
|
|
4759
|
-
],
|
|
4760
4818
|
"type": "option"
|
|
4761
4819
|
},
|
|
4762
|
-
"
|
|
4763
|
-
"description": "
|
|
4764
|
-
"
|
|
4820
|
+
"api-key": {
|
|
4821
|
+
"description": "API key",
|
|
4822
|
+
"env": "FACES_API_KEY",
|
|
4823
|
+
"name": "api-key",
|
|
4765
4824
|
"hasDynamicHelp": false,
|
|
4766
4825
|
"multiple": false,
|
|
4767
4826
|
"type": "option"
|
|
4768
|
-
},
|
|
4769
|
-
"no-wait": {
|
|
4770
|
-
"description": "Return immediately after import starts (do not poll for transcription). Prints the ID for manual polling.",
|
|
4771
|
-
"name": "no-wait",
|
|
4772
|
-
"allowNo": false,
|
|
4773
|
-
"type": "boolean"
|
|
4774
4827
|
}
|
|
4775
4828
|
},
|
|
4776
4829
|
"hasDynamicHelp": false,
|
|
4777
4830
|
"hiddenAliases": [],
|
|
4778
|
-
"id": "
|
|
4831
|
+
"id": "team:list",
|
|
4779
4832
|
"pluginAlias": "faces-cli",
|
|
4780
4833
|
"pluginName": "faces-cli",
|
|
4781
4834
|
"pluginType": "core",
|
|
@@ -4785,14 +4838,24 @@
|
|
|
4785
4838
|
"relativePath": [
|
|
4786
4839
|
"dist",
|
|
4787
4840
|
"commands",
|
|
4788
|
-
"
|
|
4789
|
-
"
|
|
4841
|
+
"team",
|
|
4842
|
+
"list.js"
|
|
4790
4843
|
]
|
|
4791
4844
|
},
|
|
4792
|
-
"
|
|
4845
|
+
"team:members": {
|
|
4793
4846
|
"aliases": [],
|
|
4794
|
-
"args": {
|
|
4795
|
-
|
|
4847
|
+
"args": {
|
|
4848
|
+
"team_id": {
|
|
4849
|
+
"description": "Team ID",
|
|
4850
|
+
"name": "team_id",
|
|
4851
|
+
"required": true
|
|
4852
|
+
}
|
|
4853
|
+
},
|
|
4854
|
+
"description": "List members of a team. A member you do not own can stop being reachable if its owner revokes access or deletes it; those are listed with the reason rather than dropped.",
|
|
4855
|
+
"examples": [
|
|
4856
|
+
"<%= config.bin %> <%= command.id %> TEAM_ID",
|
|
4857
|
+
"<%= config.bin %> <%= command.id %> TEAM_ID --json"
|
|
4858
|
+
],
|
|
4796
4859
|
"flags": {
|
|
4797
4860
|
"json": {
|
|
4798
4861
|
"description": "Format output as json.",
|
|
@@ -4828,7 +4891,7 @@
|
|
|
4828
4891
|
},
|
|
4829
4892
|
"hasDynamicHelp": false,
|
|
4830
4893
|
"hiddenAliases": [],
|
|
4831
|
-
"id": "
|
|
4894
|
+
"id": "team:members",
|
|
4832
4895
|
"pluginAlias": "faces-cli",
|
|
4833
4896
|
"pluginName": "faces-cli",
|
|
4834
4897
|
"pluginType": "core",
|
|
@@ -4838,20 +4901,25 @@
|
|
|
4838
4901
|
"relativePath": [
|
|
4839
4902
|
"dist",
|
|
4840
4903
|
"commands",
|
|
4841
|
-
"
|
|
4842
|
-
"
|
|
4904
|
+
"team",
|
|
4905
|
+
"members.js"
|
|
4843
4906
|
]
|
|
4844
4907
|
},
|
|
4845
|
-
"
|
|
4908
|
+
"team:remove": {
|
|
4846
4909
|
"aliases": [],
|
|
4847
4910
|
"args": {
|
|
4911
|
+
"team_id": {
|
|
4912
|
+
"description": "Team ID",
|
|
4913
|
+
"name": "team_id",
|
|
4914
|
+
"required": true
|
|
4915
|
+
},
|
|
4848
4916
|
"alias": {
|
|
4849
|
-
"description": "Face alias",
|
|
4917
|
+
"description": "Face alias to remove",
|
|
4850
4918
|
"name": "alias",
|
|
4851
4919
|
"required": true
|
|
4852
4920
|
}
|
|
4853
4921
|
},
|
|
4854
|
-
"description": "
|
|
4922
|
+
"description": "Remove a face from a team",
|
|
4855
4923
|
"flags": {
|
|
4856
4924
|
"json": {
|
|
4857
4925
|
"description": "Format output as json.",
|
|
@@ -4883,63 +4951,11 @@
|
|
|
4883
4951
|
"hasDynamicHelp": false,
|
|
4884
4952
|
"multiple": false,
|
|
4885
4953
|
"type": "option"
|
|
4886
|
-
},
|
|
4887
|
-
"file": {
|
|
4888
|
-
"description": "File to upload",
|
|
4889
|
-
"name": "file",
|
|
4890
|
-
"required": true,
|
|
4891
|
-
"hasDynamicHelp": false,
|
|
4892
|
-
"multiple": false,
|
|
4893
|
-
"type": "option"
|
|
4894
|
-
},
|
|
4895
|
-
"kind": {
|
|
4896
|
-
"description": "Upload kind: document or thread",
|
|
4897
|
-
"name": "kind",
|
|
4898
|
-
"default": "document",
|
|
4899
|
-
"hasDynamicHelp": false,
|
|
4900
|
-
"multiple": false,
|
|
4901
|
-
"options": [
|
|
4902
|
-
"document",
|
|
4903
|
-
"thread"
|
|
4904
|
-
],
|
|
4905
|
-
"type": "option"
|
|
4906
|
-
},
|
|
4907
|
-
"perspective": {
|
|
4908
|
-
"description": "Perspective (document only)",
|
|
4909
|
-
"name": "perspective",
|
|
4910
|
-
"default": "third-person",
|
|
4911
|
-
"hasDynamicHelp": false,
|
|
4912
|
-
"multiple": false,
|
|
4913
|
-
"options": [
|
|
4914
|
-
"first-person",
|
|
4915
|
-
"third-person"
|
|
4916
|
-
],
|
|
4917
|
-
"type": "option"
|
|
4918
|
-
},
|
|
4919
|
-
"medium": {
|
|
4920
|
-
"description": "What sort of writing this is — e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (covers speech: transcripts, interviews, calls). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not. Only valid with --kind document.",
|
|
4921
|
-
"name": "medium",
|
|
4922
|
-
"hasDynamicHelp": false,
|
|
4923
|
-
"multiple": false,
|
|
4924
|
-
"type": "option"
|
|
4925
|
-
},
|
|
4926
|
-
"face-speaker": {
|
|
4927
|
-
"description": "Speaker name to map to the face (thread only). If omitted, auto-detected from face name.",
|
|
4928
|
-
"name": "face-speaker",
|
|
4929
|
-
"hasDynamicHelp": false,
|
|
4930
|
-
"multiple": false,
|
|
4931
|
-
"type": "option"
|
|
4932
|
-
},
|
|
4933
|
-
"no-wait": {
|
|
4934
|
-
"description": "Return immediately after upload (do not poll for transcription). Prints the ID for manual polling.",
|
|
4935
|
-
"name": "no-wait",
|
|
4936
|
-
"allowNo": false,
|
|
4937
|
-
"type": "boolean"
|
|
4938
4954
|
}
|
|
4939
4955
|
},
|
|
4940
4956
|
"hasDynamicHelp": false,
|
|
4941
4957
|
"hiddenAliases": [],
|
|
4942
|
-
"id": "
|
|
4958
|
+
"id": "team:remove",
|
|
4943
4959
|
"pluginAlias": "faces-cli",
|
|
4944
4960
|
"pluginName": "faces-cli",
|
|
4945
4961
|
"pluginType": "core",
|
|
@@ -4949,8 +4965,8 @@
|
|
|
4949
4965
|
"relativePath": [
|
|
4950
4966
|
"dist",
|
|
4951
4967
|
"commands",
|
|
4952
|
-
"
|
|
4953
|
-
"
|
|
4968
|
+
"team",
|
|
4969
|
+
"remove.js"
|
|
4954
4970
|
]
|
|
4955
4971
|
},
|
|
4956
4972
|
"billing:subscription:activate": {
|
|
@@ -5132,16 +5148,16 @@
|
|
|
5132
5148
|
"index.js"
|
|
5133
5149
|
]
|
|
5134
5150
|
},
|
|
5135
|
-
"
|
|
5151
|
+
"compile:thread:create": {
|
|
5136
5152
|
"aliases": [],
|
|
5137
5153
|
"args": {
|
|
5138
|
-
"
|
|
5154
|
+
"face_id": {
|
|
5139
5155
|
"description": "Face alias",
|
|
5140
|
-
"name": "
|
|
5156
|
+
"name": "face_id",
|
|
5141
5157
|
"required": true
|
|
5142
5158
|
}
|
|
5143
5159
|
},
|
|
5144
|
-
"description": "
|
|
5160
|
+
"description": "Start a new thread for a face",
|
|
5145
5161
|
"flags": {
|
|
5146
5162
|
"json": {
|
|
5147
5163
|
"description": "Format output as json.",
|
|
@@ -5174,18 +5190,23 @@
|
|
|
5174
5190
|
"multiple": false,
|
|
5175
5191
|
"type": "option"
|
|
5176
5192
|
},
|
|
5177
|
-
"
|
|
5178
|
-
"description": "
|
|
5179
|
-
"name": "
|
|
5180
|
-
"required": true,
|
|
5193
|
+
"label": {
|
|
5194
|
+
"description": "Thread label",
|
|
5195
|
+
"name": "label",
|
|
5181
5196
|
"hasDynamicHelp": false,
|
|
5182
|
-
"multiple":
|
|
5197
|
+
"multiple": false,
|
|
5183
5198
|
"type": "option"
|
|
5199
|
+
},
|
|
5200
|
+
"oauth-only": {
|
|
5201
|
+
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
5202
|
+
"name": "oauth-only",
|
|
5203
|
+
"allowNo": false,
|
|
5204
|
+
"type": "boolean"
|
|
5184
5205
|
}
|
|
5185
5206
|
},
|
|
5186
5207
|
"hasDynamicHelp": false,
|
|
5187
5208
|
"hiddenAliases": [],
|
|
5188
|
-
"id": "
|
|
5209
|
+
"id": "compile:thread:create",
|
|
5189
5210
|
"pluginAlias": "faces-cli",
|
|
5190
5211
|
"pluginName": "faces-cli",
|
|
5191
5212
|
"pluginType": "core",
|
|
@@ -5195,15 +5216,21 @@
|
|
|
5195
5216
|
"relativePath": [
|
|
5196
5217
|
"dist",
|
|
5197
5218
|
"commands",
|
|
5198
|
-
"
|
|
5199
|
-
"
|
|
5200
|
-
"
|
|
5219
|
+
"compile",
|
|
5220
|
+
"thread",
|
|
5221
|
+
"create.js"
|
|
5201
5222
|
]
|
|
5202
5223
|
},
|
|
5203
|
-
"
|
|
5224
|
+
"compile:thread:delete": {
|
|
5204
5225
|
"aliases": [],
|
|
5205
|
-
"args": {
|
|
5206
|
-
|
|
5226
|
+
"args": {
|
|
5227
|
+
"thread_id": {
|
|
5228
|
+
"description": "Thread ID",
|
|
5229
|
+
"name": "thread_id",
|
|
5230
|
+
"required": true
|
|
5231
|
+
}
|
|
5232
|
+
},
|
|
5233
|
+
"description": "Delete a thread",
|
|
5207
5234
|
"flags": {
|
|
5208
5235
|
"json": {
|
|
5209
5236
|
"description": "Format output as json.",
|
|
@@ -5235,11 +5262,17 @@
|
|
|
5235
5262
|
"hasDynamicHelp": false,
|
|
5236
5263
|
"multiple": false,
|
|
5237
5264
|
"type": "option"
|
|
5265
|
+
},
|
|
5266
|
+
"yes": {
|
|
5267
|
+
"description": "Skip confirmation",
|
|
5268
|
+
"name": "yes",
|
|
5269
|
+
"allowNo": false,
|
|
5270
|
+
"type": "boolean"
|
|
5238
5271
|
}
|
|
5239
5272
|
},
|
|
5240
5273
|
"hasDynamicHelp": false,
|
|
5241
5274
|
"hiddenAliases": [],
|
|
5242
|
-
"id": "
|
|
5275
|
+
"id": "compile:thread:delete",
|
|
5243
5276
|
"pluginAlias": "faces-cli",
|
|
5244
5277
|
"pluginName": "faces-cli",
|
|
5245
5278
|
"pluginType": "core",
|
|
@@ -5249,21 +5282,95 @@
|
|
|
5249
5282
|
"relativePath": [
|
|
5250
5283
|
"dist",
|
|
5251
5284
|
"commands",
|
|
5252
|
-
"
|
|
5253
|
-
"
|
|
5254
|
-
"
|
|
5285
|
+
"compile",
|
|
5286
|
+
"thread",
|
|
5287
|
+
"delete.js"
|
|
5255
5288
|
]
|
|
5256
5289
|
},
|
|
5257
|
-
"
|
|
5290
|
+
"compile:thread:edit": {
|
|
5258
5291
|
"aliases": [],
|
|
5259
5292
|
"args": {
|
|
5260
|
-
"
|
|
5261
|
-
"description": "
|
|
5262
|
-
"name": "
|
|
5293
|
+
"thread_id": {
|
|
5294
|
+
"description": "Thread ID",
|
|
5295
|
+
"name": "thread_id",
|
|
5263
5296
|
"required": true
|
|
5264
5297
|
}
|
|
5265
5298
|
},
|
|
5266
|
-
"description": "
|
|
5299
|
+
"description": "Edit a thread (label and/or reassign face speaker)",
|
|
5300
|
+
"flags": {
|
|
5301
|
+
"json": {
|
|
5302
|
+
"description": "Format output as json.",
|
|
5303
|
+
"helpGroup": "GLOBAL",
|
|
5304
|
+
"name": "json",
|
|
5305
|
+
"allowNo": false,
|
|
5306
|
+
"type": "boolean"
|
|
5307
|
+
},
|
|
5308
|
+
"base-url": {
|
|
5309
|
+
"description": "API base URL",
|
|
5310
|
+
"env": "FACES_BASE_URL",
|
|
5311
|
+
"name": "base-url",
|
|
5312
|
+
"hasDynamicHelp": false,
|
|
5313
|
+
"multiple": false,
|
|
5314
|
+
"type": "option"
|
|
5315
|
+
},
|
|
5316
|
+
"token": {
|
|
5317
|
+
"description": "JWT bearer token",
|
|
5318
|
+
"env": "FACES_TOKEN",
|
|
5319
|
+
"name": "token",
|
|
5320
|
+
"hasDynamicHelp": false,
|
|
5321
|
+
"multiple": false,
|
|
5322
|
+
"type": "option"
|
|
5323
|
+
},
|
|
5324
|
+
"api-key": {
|
|
5325
|
+
"description": "API key",
|
|
5326
|
+
"env": "FACES_API_KEY",
|
|
5327
|
+
"name": "api-key",
|
|
5328
|
+
"hasDynamicHelp": false,
|
|
5329
|
+
"multiple": false,
|
|
5330
|
+
"type": "option"
|
|
5331
|
+
},
|
|
5332
|
+
"label": {
|
|
5333
|
+
"description": "New thread label",
|
|
5334
|
+
"name": "label",
|
|
5335
|
+
"hasDynamicHelp": false,
|
|
5336
|
+
"multiple": false,
|
|
5337
|
+
"type": "option"
|
|
5338
|
+
},
|
|
5339
|
+
"face-speaker": {
|
|
5340
|
+
"description": "Reassign face speaker: set this speaker to role=user, all others to role=assistant",
|
|
5341
|
+
"name": "face-speaker",
|
|
5342
|
+
"hasDynamicHelp": false,
|
|
5343
|
+
"multiple": false,
|
|
5344
|
+
"type": "option"
|
|
5345
|
+
}
|
|
5346
|
+
},
|
|
5347
|
+
"hasDynamicHelp": false,
|
|
5348
|
+
"hiddenAliases": [],
|
|
5349
|
+
"id": "compile:thread:edit",
|
|
5350
|
+
"pluginAlias": "faces-cli",
|
|
5351
|
+
"pluginName": "faces-cli",
|
|
5352
|
+
"pluginType": "core",
|
|
5353
|
+
"strict": true,
|
|
5354
|
+
"enableJsonFlag": true,
|
|
5355
|
+
"isESM": true,
|
|
5356
|
+
"relativePath": [
|
|
5357
|
+
"dist",
|
|
5358
|
+
"commands",
|
|
5359
|
+
"compile",
|
|
5360
|
+
"thread",
|
|
5361
|
+
"edit.js"
|
|
5362
|
+
]
|
|
5363
|
+
},
|
|
5364
|
+
"compile:thread:get": {
|
|
5365
|
+
"aliases": [],
|
|
5366
|
+
"args": {
|
|
5367
|
+
"thread_id": {
|
|
5368
|
+
"description": "Thread ID",
|
|
5369
|
+
"name": "thread_id",
|
|
5370
|
+
"required": true
|
|
5371
|
+
}
|
|
5372
|
+
},
|
|
5373
|
+
"description": "Get a thread by ID",
|
|
5267
5374
|
"flags": {
|
|
5268
5375
|
"json": {
|
|
5269
5376
|
"description": "Format output as json.",
|
|
@@ -5299,7 +5406,7 @@
|
|
|
5299
5406
|
},
|
|
5300
5407
|
"hasDynamicHelp": false,
|
|
5301
5408
|
"hiddenAliases": [],
|
|
5302
|
-
"id": "
|
|
5409
|
+
"id": "compile:thread:get",
|
|
5303
5410
|
"pluginAlias": "faces-cli",
|
|
5304
5411
|
"pluginName": "faces-cli",
|
|
5305
5412
|
"pluginType": "core",
|
|
@@ -5309,26 +5416,21 @@
|
|
|
5309
5416
|
"relativePath": [
|
|
5310
5417
|
"dist",
|
|
5311
5418
|
"commands",
|
|
5312
|
-
"
|
|
5313
|
-
"
|
|
5314
|
-
"
|
|
5419
|
+
"compile",
|
|
5420
|
+
"thread",
|
|
5421
|
+
"get.js"
|
|
5315
5422
|
]
|
|
5316
5423
|
},
|
|
5317
|
-
"
|
|
5424
|
+
"compile:thread:list": {
|
|
5318
5425
|
"aliases": [],
|
|
5319
5426
|
"args": {
|
|
5320
|
-
"
|
|
5427
|
+
"face_id": {
|
|
5321
5428
|
"description": "Face alias",
|
|
5322
|
-
"name": "
|
|
5323
|
-
"required": true
|
|
5324
|
-
},
|
|
5325
|
-
"tag": {
|
|
5326
|
-
"description": "Tag to remove",
|
|
5327
|
-
"name": "tag",
|
|
5429
|
+
"name": "face_id",
|
|
5328
5430
|
"required": true
|
|
5329
5431
|
}
|
|
5330
5432
|
},
|
|
5331
|
-
"description": "
|
|
5433
|
+
"description": "List threads for a face",
|
|
5332
5434
|
"flags": {
|
|
5333
5435
|
"json": {
|
|
5334
5436
|
"description": "Format output as json.",
|
|
@@ -5364,7 +5466,7 @@
|
|
|
5364
5466
|
},
|
|
5365
5467
|
"hasDynamicHelp": false,
|
|
5366
5468
|
"hiddenAliases": [],
|
|
5367
|
-
"id": "
|
|
5469
|
+
"id": "compile:thread:list",
|
|
5368
5470
|
"pluginAlias": "faces-cli",
|
|
5369
5471
|
"pluginName": "faces-cli",
|
|
5370
5472
|
"pluginType": "core",
|
|
@@ -5374,21 +5476,21 @@
|
|
|
5374
5476
|
"relativePath": [
|
|
5375
5477
|
"dist",
|
|
5376
5478
|
"commands",
|
|
5377
|
-
"
|
|
5378
|
-
"
|
|
5379
|
-
"
|
|
5479
|
+
"compile",
|
|
5480
|
+
"thread",
|
|
5481
|
+
"list.js"
|
|
5380
5482
|
]
|
|
5381
5483
|
},
|
|
5382
|
-
"
|
|
5484
|
+
"compile:thread:make": {
|
|
5383
5485
|
"aliases": [],
|
|
5384
5486
|
"args": {
|
|
5385
|
-
"
|
|
5386
|
-
"description": "
|
|
5387
|
-
"name": "
|
|
5487
|
+
"thread_id": {
|
|
5488
|
+
"description": "Thread ID",
|
|
5489
|
+
"name": "thread_id",
|
|
5388
5490
|
"required": true
|
|
5389
5491
|
}
|
|
5390
5492
|
},
|
|
5391
|
-
"description": "
|
|
5493
|
+
"description": "Compile an existing thread (prepare + sync in one step)",
|
|
5392
5494
|
"flags": {
|
|
5393
5495
|
"json": {
|
|
5394
5496
|
"description": "Format output as json.",
|
|
@@ -5421,18 +5523,24 @@
|
|
|
5421
5523
|
"multiple": false,
|
|
5422
5524
|
"type": "option"
|
|
5423
5525
|
},
|
|
5424
|
-
"
|
|
5425
|
-
"description": "
|
|
5426
|
-
"name": "
|
|
5427
|
-
"
|
|
5526
|
+
"timeout": {
|
|
5527
|
+
"description": "Compile timeout in seconds (default: 600)",
|
|
5528
|
+
"name": "timeout",
|
|
5529
|
+
"default": 600,
|
|
5428
5530
|
"hasDynamicHelp": false,
|
|
5429
|
-
"multiple":
|
|
5531
|
+
"multiple": false,
|
|
5430
5532
|
"type": "option"
|
|
5533
|
+
},
|
|
5534
|
+
"no-wait": {
|
|
5535
|
+
"description": "Return immediately after triggering compilation. Prints the thread ID for manual polling.",
|
|
5536
|
+
"name": "no-wait",
|
|
5537
|
+
"allowNo": false,
|
|
5538
|
+
"type": "boolean"
|
|
5431
5539
|
}
|
|
5432
5540
|
},
|
|
5433
5541
|
"hasDynamicHelp": false,
|
|
5434
5542
|
"hiddenAliases": [],
|
|
5435
|
-
"id": "
|
|
5543
|
+
"id": "compile:thread:make",
|
|
5436
5544
|
"pluginAlias": "faces-cli",
|
|
5437
5545
|
"pluginName": "faces-cli",
|
|
5438
5546
|
"pluginType": "core",
|
|
@@ -5442,21 +5550,21 @@
|
|
|
5442
5550
|
"relativePath": [
|
|
5443
5551
|
"dist",
|
|
5444
5552
|
"commands",
|
|
5445
|
-
"
|
|
5446
|
-
"
|
|
5447
|
-
"
|
|
5553
|
+
"compile",
|
|
5554
|
+
"thread",
|
|
5555
|
+
"make.js"
|
|
5448
5556
|
]
|
|
5449
5557
|
},
|
|
5450
|
-
"
|
|
5558
|
+
"compile:thread:message": {
|
|
5451
5559
|
"aliases": [],
|
|
5452
5560
|
"args": {
|
|
5453
|
-
"
|
|
5454
|
-
"description": "
|
|
5455
|
-
"name": "
|
|
5561
|
+
"thread_id": {
|
|
5562
|
+
"description": "Thread ID",
|
|
5563
|
+
"name": "thread_id",
|
|
5456
5564
|
"required": true
|
|
5457
5565
|
}
|
|
5458
5566
|
},
|
|
5459
|
-
"description": "
|
|
5567
|
+
"description": "Send a user message to a thread",
|
|
5460
5568
|
"flags": {
|
|
5461
5569
|
"json": {
|
|
5462
5570
|
"description": "Format output as json.",
|
|
@@ -5489,18 +5597,25 @@
|
|
|
5489
5597
|
"multiple": false,
|
|
5490
5598
|
"type": "option"
|
|
5491
5599
|
},
|
|
5492
|
-
"
|
|
5493
|
-
"
|
|
5494
|
-
"
|
|
5600
|
+
"message": {
|
|
5601
|
+
"char": "m",
|
|
5602
|
+
"description": "User message to append",
|
|
5603
|
+
"name": "message",
|
|
5495
5604
|
"required": true,
|
|
5496
5605
|
"hasDynamicHelp": false,
|
|
5497
|
-
"multiple":
|
|
5606
|
+
"multiple": false,
|
|
5498
5607
|
"type": "option"
|
|
5608
|
+
},
|
|
5609
|
+
"oauth-only": {
|
|
5610
|
+
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
5611
|
+
"name": "oauth-only",
|
|
5612
|
+
"allowNo": false,
|
|
5613
|
+
"type": "boolean"
|
|
5499
5614
|
}
|
|
5500
5615
|
},
|
|
5501
5616
|
"hasDynamicHelp": false,
|
|
5502
5617
|
"hiddenAliases": [],
|
|
5503
|
-
"id": "
|
|
5618
|
+
"id": "compile:thread:message",
|
|
5504
5619
|
"pluginAlias": "faces-cli",
|
|
5505
5620
|
"pluginName": "faces-cli",
|
|
5506
5621
|
"pluginType": "core",
|
|
@@ -5510,21 +5625,21 @@
|
|
|
5510
5625
|
"relativePath": [
|
|
5511
5626
|
"dist",
|
|
5512
5627
|
"commands",
|
|
5513
|
-
"
|
|
5514
|
-
"
|
|
5515
|
-
"
|
|
5628
|
+
"compile",
|
|
5629
|
+
"thread",
|
|
5630
|
+
"message.js"
|
|
5516
5631
|
]
|
|
5517
5632
|
},
|
|
5518
|
-
"
|
|
5633
|
+
"compile:thread:pause": {
|
|
5519
5634
|
"aliases": [],
|
|
5520
5635
|
"args": {
|
|
5521
|
-
"
|
|
5522
|
-
"description": "
|
|
5523
|
-
"name": "
|
|
5636
|
+
"thread_id": {
|
|
5637
|
+
"description": "Thread ID",
|
|
5638
|
+
"name": "thread_id",
|
|
5524
5639
|
"required": true
|
|
5525
5640
|
}
|
|
5526
5641
|
},
|
|
5527
|
-
"description": "
|
|
5642
|
+
"description": "Ask a running thread compilation to stop (preserves progress, resume with make). The compile stops at the next chunk boundary; this waits for it unless --no-wait.",
|
|
5528
5643
|
"flags": {
|
|
5529
5644
|
"json": {
|
|
5530
5645
|
"description": "Format output as json.",
|
|
@@ -5556,11 +5671,25 @@
|
|
|
5556
5671
|
"hasDynamicHelp": false,
|
|
5557
5672
|
"multiple": false,
|
|
5558
5673
|
"type": "option"
|
|
5674
|
+
},
|
|
5675
|
+
"no-wait": {
|
|
5676
|
+
"description": "Return as soon as the pause is accepted, without waiting for the compile to stop.",
|
|
5677
|
+
"name": "no-wait",
|
|
5678
|
+
"allowNo": false,
|
|
5679
|
+
"type": "boolean"
|
|
5680
|
+
},
|
|
5681
|
+
"timeout": {
|
|
5682
|
+
"description": "Seconds to wait for the compile to stop (default: 60)",
|
|
5683
|
+
"name": "timeout",
|
|
5684
|
+
"default": 60,
|
|
5685
|
+
"hasDynamicHelp": false,
|
|
5686
|
+
"multiple": false,
|
|
5687
|
+
"type": "option"
|
|
5559
5688
|
}
|
|
5560
5689
|
},
|
|
5561
5690
|
"hasDynamicHelp": false,
|
|
5562
5691
|
"hiddenAliases": [],
|
|
5563
|
-
"id": "
|
|
5692
|
+
"id": "compile:thread:pause",
|
|
5564
5693
|
"pluginAlias": "faces-cli",
|
|
5565
5694
|
"pluginName": "faces-cli",
|
|
5566
5695
|
"pluginType": "core",
|
|
@@ -5570,26 +5699,21 @@
|
|
|
5570
5699
|
"relativePath": [
|
|
5571
5700
|
"dist",
|
|
5572
5701
|
"commands",
|
|
5573
|
-
"
|
|
5574
|
-
"
|
|
5575
|
-
"
|
|
5702
|
+
"compile",
|
|
5703
|
+
"thread",
|
|
5704
|
+
"pause.js"
|
|
5576
5705
|
]
|
|
5577
5706
|
},
|
|
5578
|
-
"
|
|
5707
|
+
"compile:thread:reset": {
|
|
5579
5708
|
"aliases": [],
|
|
5580
5709
|
"args": {
|
|
5581
|
-
"
|
|
5582
|
-
"description": "
|
|
5583
|
-
"name": "
|
|
5584
|
-
"required": true
|
|
5585
|
-
},
|
|
5586
|
-
"tag": {
|
|
5587
|
-
"description": "Tag to remove",
|
|
5588
|
-
"name": "tag",
|
|
5710
|
+
"thread_id": {
|
|
5711
|
+
"description": "Thread ID",
|
|
5712
|
+
"name": "thread_id",
|
|
5589
5713
|
"required": true
|
|
5590
5714
|
}
|
|
5591
5715
|
},
|
|
5592
|
-
"description": "
|
|
5716
|
+
"description": "Reset thread compilation progress (wipe extraction, keep source messages)",
|
|
5593
5717
|
"flags": {
|
|
5594
5718
|
"json": {
|
|
5595
5719
|
"description": "Format output as json.",
|
|
@@ -5621,11 +5745,17 @@
|
|
|
5621
5745
|
"hasDynamicHelp": false,
|
|
5622
5746
|
"multiple": false,
|
|
5623
5747
|
"type": "option"
|
|
5748
|
+
},
|
|
5749
|
+
"yes": {
|
|
5750
|
+
"description": "Skip confirmation",
|
|
5751
|
+
"name": "yes",
|
|
5752
|
+
"allowNo": false,
|
|
5753
|
+
"type": "boolean"
|
|
5624
5754
|
}
|
|
5625
5755
|
},
|
|
5626
5756
|
"hasDynamicHelp": false,
|
|
5627
5757
|
"hiddenAliases": [],
|
|
5628
|
-
"id": "
|
|
5758
|
+
"id": "compile:thread:reset",
|
|
5629
5759
|
"pluginAlias": "faces-cli",
|
|
5630
5760
|
"pluginName": "faces-cli",
|
|
5631
5761
|
"pluginType": "core",
|
|
@@ -5635,21 +5765,21 @@
|
|
|
5635
5765
|
"relativePath": [
|
|
5636
5766
|
"dist",
|
|
5637
5767
|
"commands",
|
|
5638
|
-
"
|
|
5639
|
-
"
|
|
5640
|
-
"
|
|
5768
|
+
"compile",
|
|
5769
|
+
"thread",
|
|
5770
|
+
"reset.js"
|
|
5641
5771
|
]
|
|
5642
5772
|
},
|
|
5643
|
-
"
|
|
5773
|
+
"compile:thread:sync": {
|
|
5644
5774
|
"aliases": [],
|
|
5645
5775
|
"args": {
|
|
5646
|
-
"
|
|
5647
|
-
"description": "
|
|
5648
|
-
"name": "
|
|
5776
|
+
"thread_id": {
|
|
5777
|
+
"description": "Thread ID",
|
|
5778
|
+
"name": "thread_id",
|
|
5649
5779
|
"required": true
|
|
5650
5780
|
}
|
|
5651
5781
|
},
|
|
5652
|
-
"description": "
|
|
5782
|
+
"description": "Archive and sync a thread into a face",
|
|
5653
5783
|
"flags": {
|
|
5654
5784
|
"json": {
|
|
5655
5785
|
"description": "Format output as json.",
|
|
@@ -5681,19 +5811,11 @@
|
|
|
5681
5811
|
"hasDynamicHelp": false,
|
|
5682
5812
|
"multiple": false,
|
|
5683
5813
|
"type": "option"
|
|
5684
|
-
},
|
|
5685
|
-
"tag": {
|
|
5686
|
-
"description": "Tag to set (repeatable, replaces all)",
|
|
5687
|
-
"name": "tag",
|
|
5688
|
-
"required": true,
|
|
5689
|
-
"hasDynamicHelp": false,
|
|
5690
|
-
"multiple": true,
|
|
5691
|
-
"type": "option"
|
|
5692
5814
|
}
|
|
5693
5815
|
},
|
|
5694
5816
|
"hasDynamicHelp": false,
|
|
5695
5817
|
"hiddenAliases": [],
|
|
5696
|
-
"id": "
|
|
5818
|
+
"id": "compile:thread:sync",
|
|
5697
5819
|
"pluginAlias": "faces-cli",
|
|
5698
5820
|
"pluginName": "faces-cli",
|
|
5699
5821
|
"pluginType": "core",
|
|
@@ -5703,9 +5825,9 @@
|
|
|
5703
5825
|
"relativePath": [
|
|
5704
5826
|
"dist",
|
|
5705
5827
|
"commands",
|
|
5706
|
-
"
|
|
5707
|
-
"
|
|
5708
|
-
"
|
|
5828
|
+
"compile",
|
|
5829
|
+
"thread",
|
|
5830
|
+
"sync.js"
|
|
5709
5831
|
]
|
|
5710
5832
|
},
|
|
5711
5833
|
"compile:doc:create": {
|
|
@@ -5772,7 +5894,7 @@
|
|
|
5772
5894
|
"type": "option"
|
|
5773
5895
|
},
|
|
5774
5896
|
"medium": {
|
|
5775
|
-
"description": "What sort of writing this is — e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (
|
|
5897
|
+
"description": "What sort of writing this is — e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not.",
|
|
5776
5898
|
"name": "medium",
|
|
5777
5899
|
"hasDynamicHelp": false,
|
|
5778
5900
|
"multiple": false,
|
|
@@ -5932,7 +6054,7 @@
|
|
|
5932
6054
|
"type": "option"
|
|
5933
6055
|
},
|
|
5934
6056
|
"medium": {
|
|
5935
|
-
"description": "What sort of writing this is — e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (
|
|
6057
|
+
"description": "What sort of writing this is — e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not.",
|
|
5936
6058
|
"name": "medium",
|
|
5937
6059
|
"hasDynamicHelp": false,
|
|
5938
6060
|
"multiple": false,
|
|
@@ -6098,7 +6220,7 @@
|
|
|
6098
6220
|
"type": "option"
|
|
6099
6221
|
},
|
|
6100
6222
|
"medium": {
|
|
6101
|
-
"description": "What sort of writing this is — e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (
|
|
6223
|
+
"description": "What sort of writing this is — e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not.",
|
|
6102
6224
|
"name": "medium",
|
|
6103
6225
|
"hasDynamicHelp": false,
|
|
6104
6226
|
"multiple": false,
|
|
@@ -6428,89 +6550,16 @@
|
|
|
6428
6550
|
"reset.js"
|
|
6429
6551
|
]
|
|
6430
6552
|
},
|
|
6431
|
-
"
|
|
6432
|
-
"aliases": [],
|
|
6433
|
-
"args": {
|
|
6434
|
-
"face_id": {
|
|
6435
|
-
"description": "Face alias",
|
|
6436
|
-
"name": "face_id",
|
|
6437
|
-
"required": true
|
|
6438
|
-
}
|
|
6439
|
-
},
|
|
6440
|
-
"description": "Start a new thread for a face",
|
|
6441
|
-
"flags": {
|
|
6442
|
-
"json": {
|
|
6443
|
-
"description": "Format output as json.",
|
|
6444
|
-
"helpGroup": "GLOBAL",
|
|
6445
|
-
"name": "json",
|
|
6446
|
-
"allowNo": false,
|
|
6447
|
-
"type": "boolean"
|
|
6448
|
-
},
|
|
6449
|
-
"base-url": {
|
|
6450
|
-
"description": "API base URL",
|
|
6451
|
-
"env": "FACES_BASE_URL",
|
|
6452
|
-
"name": "base-url",
|
|
6453
|
-
"hasDynamicHelp": false,
|
|
6454
|
-
"multiple": false,
|
|
6455
|
-
"type": "option"
|
|
6456
|
-
},
|
|
6457
|
-
"token": {
|
|
6458
|
-
"description": "JWT bearer token",
|
|
6459
|
-
"env": "FACES_TOKEN",
|
|
6460
|
-
"name": "token",
|
|
6461
|
-
"hasDynamicHelp": false,
|
|
6462
|
-
"multiple": false,
|
|
6463
|
-
"type": "option"
|
|
6464
|
-
},
|
|
6465
|
-
"api-key": {
|
|
6466
|
-
"description": "API key",
|
|
6467
|
-
"env": "FACES_API_KEY",
|
|
6468
|
-
"name": "api-key",
|
|
6469
|
-
"hasDynamicHelp": false,
|
|
6470
|
-
"multiple": false,
|
|
6471
|
-
"type": "option"
|
|
6472
|
-
},
|
|
6473
|
-
"label": {
|
|
6474
|
-
"description": "Thread label",
|
|
6475
|
-
"name": "label",
|
|
6476
|
-
"hasDynamicHelp": false,
|
|
6477
|
-
"multiple": false,
|
|
6478
|
-
"type": "option"
|
|
6479
|
-
},
|
|
6480
|
-
"oauth-only": {
|
|
6481
|
-
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
6482
|
-
"name": "oauth-only",
|
|
6483
|
-
"allowNo": false,
|
|
6484
|
-
"type": "boolean"
|
|
6485
|
-
}
|
|
6486
|
-
},
|
|
6487
|
-
"hasDynamicHelp": false,
|
|
6488
|
-
"hiddenAliases": [],
|
|
6489
|
-
"id": "compile:thread:create",
|
|
6490
|
-
"pluginAlias": "faces-cli",
|
|
6491
|
-
"pluginName": "faces-cli",
|
|
6492
|
-
"pluginType": "core",
|
|
6493
|
-
"strict": true,
|
|
6494
|
-
"enableJsonFlag": true,
|
|
6495
|
-
"isESM": true,
|
|
6496
|
-
"relativePath": [
|
|
6497
|
-
"dist",
|
|
6498
|
-
"commands",
|
|
6499
|
-
"compile",
|
|
6500
|
-
"thread",
|
|
6501
|
-
"create.js"
|
|
6502
|
-
]
|
|
6503
|
-
},
|
|
6504
|
-
"compile:thread:delete": {
|
|
6553
|
+
"face:tag:add": {
|
|
6505
6554
|
"aliases": [],
|
|
6506
6555
|
"args": {
|
|
6507
|
-
"
|
|
6508
|
-
"description": "
|
|
6509
|
-
"name": "
|
|
6556
|
+
"alias": {
|
|
6557
|
+
"description": "Face alias",
|
|
6558
|
+
"name": "alias",
|
|
6510
6559
|
"required": true
|
|
6511
6560
|
}
|
|
6512
6561
|
},
|
|
6513
|
-
"description": "
|
|
6562
|
+
"description": "Add tags to a face (appends, idempotent)",
|
|
6514
6563
|
"flags": {
|
|
6515
6564
|
"json": {
|
|
6516
6565
|
"description": "Format output as json.",
|
|
@@ -6543,16 +6592,18 @@
|
|
|
6543
6592
|
"multiple": false,
|
|
6544
6593
|
"type": "option"
|
|
6545
6594
|
},
|
|
6546
|
-
"
|
|
6547
|
-
"description": "
|
|
6548
|
-
"name": "
|
|
6549
|
-
"
|
|
6550
|
-
"
|
|
6595
|
+
"tag": {
|
|
6596
|
+
"description": "Tag to add (repeatable)",
|
|
6597
|
+
"name": "tag",
|
|
6598
|
+
"required": true,
|
|
6599
|
+
"hasDynamicHelp": false,
|
|
6600
|
+
"multiple": true,
|
|
6601
|
+
"type": "option"
|
|
6551
6602
|
}
|
|
6552
6603
|
},
|
|
6553
6604
|
"hasDynamicHelp": false,
|
|
6554
6605
|
"hiddenAliases": [],
|
|
6555
|
-
"id": "
|
|
6606
|
+
"id": "face:tag:add",
|
|
6556
6607
|
"pluginAlias": "faces-cli",
|
|
6557
6608
|
"pluginName": "faces-cli",
|
|
6558
6609
|
"pluginType": "core",
|
|
@@ -6562,21 +6613,15 @@
|
|
|
6562
6613
|
"relativePath": [
|
|
6563
6614
|
"dist",
|
|
6564
6615
|
"commands",
|
|
6565
|
-
"
|
|
6566
|
-
"
|
|
6567
|
-
"
|
|
6616
|
+
"face",
|
|
6617
|
+
"tag",
|
|
6618
|
+
"add.js"
|
|
6568
6619
|
]
|
|
6569
6620
|
},
|
|
6570
|
-
"
|
|
6621
|
+
"face:tag:all": {
|
|
6571
6622
|
"aliases": [],
|
|
6572
|
-
"args": {
|
|
6573
|
-
|
|
6574
|
-
"description": "Thread ID",
|
|
6575
|
-
"name": "thread_id",
|
|
6576
|
-
"required": true
|
|
6577
|
-
}
|
|
6578
|
-
},
|
|
6579
|
-
"description": "Edit a thread (label and/or reassign face speaker)",
|
|
6623
|
+
"args": {},
|
|
6624
|
+
"description": "List all tags across all your faces",
|
|
6580
6625
|
"flags": {
|
|
6581
6626
|
"json": {
|
|
6582
6627
|
"description": "Format output as json.",
|
|
@@ -6608,25 +6653,11 @@
|
|
|
6608
6653
|
"hasDynamicHelp": false,
|
|
6609
6654
|
"multiple": false,
|
|
6610
6655
|
"type": "option"
|
|
6611
|
-
},
|
|
6612
|
-
"label": {
|
|
6613
|
-
"description": "New thread label",
|
|
6614
|
-
"name": "label",
|
|
6615
|
-
"hasDynamicHelp": false,
|
|
6616
|
-
"multiple": false,
|
|
6617
|
-
"type": "option"
|
|
6618
|
-
},
|
|
6619
|
-
"face-speaker": {
|
|
6620
|
-
"description": "Reassign face speaker: set this speaker to role=user, all others to role=assistant",
|
|
6621
|
-
"name": "face-speaker",
|
|
6622
|
-
"hasDynamicHelp": false,
|
|
6623
|
-
"multiple": false,
|
|
6624
|
-
"type": "option"
|
|
6625
6656
|
}
|
|
6626
6657
|
},
|
|
6627
6658
|
"hasDynamicHelp": false,
|
|
6628
6659
|
"hiddenAliases": [],
|
|
6629
|
-
"id": "
|
|
6660
|
+
"id": "face:tag:all",
|
|
6630
6661
|
"pluginAlias": "faces-cli",
|
|
6631
6662
|
"pluginName": "faces-cli",
|
|
6632
6663
|
"pluginType": "core",
|
|
@@ -6636,21 +6667,21 @@
|
|
|
6636
6667
|
"relativePath": [
|
|
6637
6668
|
"dist",
|
|
6638
6669
|
"commands",
|
|
6639
|
-
"
|
|
6640
|
-
"
|
|
6641
|
-
"
|
|
6670
|
+
"face",
|
|
6671
|
+
"tag",
|
|
6672
|
+
"all.js"
|
|
6642
6673
|
]
|
|
6643
6674
|
},
|
|
6644
|
-
"
|
|
6675
|
+
"face:tag:list": {
|
|
6645
6676
|
"aliases": [],
|
|
6646
6677
|
"args": {
|
|
6647
|
-
"
|
|
6648
|
-
"description": "
|
|
6649
|
-
"name": "
|
|
6678
|
+
"alias": {
|
|
6679
|
+
"description": "Face alias",
|
|
6680
|
+
"name": "alias",
|
|
6650
6681
|
"required": true
|
|
6651
6682
|
}
|
|
6652
6683
|
},
|
|
6653
|
-
"description": "
|
|
6684
|
+
"description": "List tags on a face",
|
|
6654
6685
|
"flags": {
|
|
6655
6686
|
"json": {
|
|
6656
6687
|
"description": "Format output as json.",
|
|
@@ -6686,7 +6717,7 @@
|
|
|
6686
6717
|
},
|
|
6687
6718
|
"hasDynamicHelp": false,
|
|
6688
6719
|
"hiddenAliases": [],
|
|
6689
|
-
"id": "
|
|
6720
|
+
"id": "face:tag:list",
|
|
6690
6721
|
"pluginAlias": "faces-cli",
|
|
6691
6722
|
"pluginName": "faces-cli",
|
|
6692
6723
|
"pluginType": "core",
|
|
@@ -6696,21 +6727,26 @@
|
|
|
6696
6727
|
"relativePath": [
|
|
6697
6728
|
"dist",
|
|
6698
6729
|
"commands",
|
|
6699
|
-
"
|
|
6700
|
-
"
|
|
6701
|
-
"
|
|
6730
|
+
"face",
|
|
6731
|
+
"tag",
|
|
6732
|
+
"list.js"
|
|
6702
6733
|
]
|
|
6703
6734
|
},
|
|
6704
|
-
"
|
|
6735
|
+
"face:tag:remove": {
|
|
6705
6736
|
"aliases": [],
|
|
6706
6737
|
"args": {
|
|
6707
|
-
"
|
|
6738
|
+
"alias": {
|
|
6708
6739
|
"description": "Face alias",
|
|
6709
|
-
"name": "
|
|
6740
|
+
"name": "alias",
|
|
6741
|
+
"required": true
|
|
6742
|
+
},
|
|
6743
|
+
"tag": {
|
|
6744
|
+
"description": "Tag to remove",
|
|
6745
|
+
"name": "tag",
|
|
6710
6746
|
"required": true
|
|
6711
6747
|
}
|
|
6712
6748
|
},
|
|
6713
|
-
"description": "
|
|
6749
|
+
"description": "Remove a tag from a face",
|
|
6714
6750
|
"flags": {
|
|
6715
6751
|
"json": {
|
|
6716
6752
|
"description": "Format output as json.",
|
|
@@ -6746,7 +6782,7 @@
|
|
|
6746
6782
|
},
|
|
6747
6783
|
"hasDynamicHelp": false,
|
|
6748
6784
|
"hiddenAliases": [],
|
|
6749
|
-
"id": "
|
|
6785
|
+
"id": "face:tag:remove",
|
|
6750
6786
|
"pluginAlias": "faces-cli",
|
|
6751
6787
|
"pluginName": "faces-cli",
|
|
6752
6788
|
"pluginType": "core",
|
|
@@ -6756,21 +6792,21 @@
|
|
|
6756
6792
|
"relativePath": [
|
|
6757
6793
|
"dist",
|
|
6758
6794
|
"commands",
|
|
6759
|
-
"
|
|
6760
|
-
"
|
|
6761
|
-
"
|
|
6795
|
+
"face",
|
|
6796
|
+
"tag",
|
|
6797
|
+
"remove.js"
|
|
6762
6798
|
]
|
|
6763
6799
|
},
|
|
6764
|
-
"
|
|
6800
|
+
"face:tag:set": {
|
|
6765
6801
|
"aliases": [],
|
|
6766
6802
|
"args": {
|
|
6767
|
-
"
|
|
6768
|
-
"description": "
|
|
6769
|
-
"name": "
|
|
6803
|
+
"alias": {
|
|
6804
|
+
"description": "Face alias",
|
|
6805
|
+
"name": "alias",
|
|
6770
6806
|
"required": true
|
|
6771
6807
|
}
|
|
6772
6808
|
},
|
|
6773
|
-
"description": "
|
|
6809
|
+
"description": "Replace all tags on a face",
|
|
6774
6810
|
"flags": {
|
|
6775
6811
|
"json": {
|
|
6776
6812
|
"description": "Format output as json.",
|
|
@@ -6803,24 +6839,18 @@
|
|
|
6803
6839
|
"multiple": false,
|
|
6804
6840
|
"type": "option"
|
|
6805
6841
|
},
|
|
6806
|
-
"
|
|
6807
|
-
"description": "
|
|
6808
|
-
"name": "
|
|
6809
|
-
"
|
|
6842
|
+
"tag": {
|
|
6843
|
+
"description": "Tag to set (repeatable, replaces all)",
|
|
6844
|
+
"name": "tag",
|
|
6845
|
+
"required": true,
|
|
6810
6846
|
"hasDynamicHelp": false,
|
|
6811
|
-
"multiple":
|
|
6847
|
+
"multiple": true,
|
|
6812
6848
|
"type": "option"
|
|
6813
|
-
},
|
|
6814
|
-
"no-wait": {
|
|
6815
|
-
"description": "Return immediately after triggering compilation. Prints the thread ID for manual polling.",
|
|
6816
|
-
"name": "no-wait",
|
|
6817
|
-
"allowNo": false,
|
|
6818
|
-
"type": "boolean"
|
|
6819
6849
|
}
|
|
6820
6850
|
},
|
|
6821
6851
|
"hasDynamicHelp": false,
|
|
6822
6852
|
"hiddenAliases": [],
|
|
6823
|
-
"id": "
|
|
6853
|
+
"id": "face:tag:set",
|
|
6824
6854
|
"pluginAlias": "faces-cli",
|
|
6825
6855
|
"pluginName": "faces-cli",
|
|
6826
6856
|
"pluginType": "core",
|
|
@@ -6830,21 +6860,21 @@
|
|
|
6830
6860
|
"relativePath": [
|
|
6831
6861
|
"dist",
|
|
6832
6862
|
"commands",
|
|
6833
|
-
"
|
|
6834
|
-
"
|
|
6835
|
-
"
|
|
6863
|
+
"face",
|
|
6864
|
+
"tag",
|
|
6865
|
+
"set.js"
|
|
6836
6866
|
]
|
|
6837
6867
|
},
|
|
6838
|
-
"
|
|
6868
|
+
"team:tag:add": {
|
|
6839
6869
|
"aliases": [],
|
|
6840
6870
|
"args": {
|
|
6841
|
-
"
|
|
6842
|
-
"description": "
|
|
6843
|
-
"name": "
|
|
6871
|
+
"team_id": {
|
|
6872
|
+
"description": "Team ID",
|
|
6873
|
+
"name": "team_id",
|
|
6844
6874
|
"required": true
|
|
6845
6875
|
}
|
|
6846
6876
|
},
|
|
6847
|
-
"description": "
|
|
6877
|
+
"description": "Add tags to a team (appends, idempotent)",
|
|
6848
6878
|
"flags": {
|
|
6849
6879
|
"json": {
|
|
6850
6880
|
"description": "Format output as json.",
|
|
@@ -6877,25 +6907,18 @@
|
|
|
6877
6907
|
"multiple": false,
|
|
6878
6908
|
"type": "option"
|
|
6879
6909
|
},
|
|
6880
|
-
"
|
|
6881
|
-
"
|
|
6882
|
-
"
|
|
6883
|
-
"name": "message",
|
|
6910
|
+
"tag": {
|
|
6911
|
+
"description": "Tag to add (repeatable)",
|
|
6912
|
+
"name": "tag",
|
|
6884
6913
|
"required": true,
|
|
6885
6914
|
"hasDynamicHelp": false,
|
|
6886
|
-
"multiple":
|
|
6915
|
+
"multiple": true,
|
|
6887
6916
|
"type": "option"
|
|
6888
|
-
},
|
|
6889
|
-
"oauth-only": {
|
|
6890
|
-
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
6891
|
-
"name": "oauth-only",
|
|
6892
|
-
"allowNo": false,
|
|
6893
|
-
"type": "boolean"
|
|
6894
6917
|
}
|
|
6895
6918
|
},
|
|
6896
6919
|
"hasDynamicHelp": false,
|
|
6897
6920
|
"hiddenAliases": [],
|
|
6898
|
-
"id": "
|
|
6921
|
+
"id": "team:tag:add",
|
|
6899
6922
|
"pluginAlias": "faces-cli",
|
|
6900
6923
|
"pluginName": "faces-cli",
|
|
6901
6924
|
"pluginType": "core",
|
|
@@ -6905,21 +6928,21 @@
|
|
|
6905
6928
|
"relativePath": [
|
|
6906
6929
|
"dist",
|
|
6907
6930
|
"commands",
|
|
6908
|
-
"
|
|
6909
|
-
"
|
|
6910
|
-
"
|
|
6931
|
+
"team",
|
|
6932
|
+
"tag",
|
|
6933
|
+
"add.js"
|
|
6911
6934
|
]
|
|
6912
6935
|
},
|
|
6913
|
-
"
|
|
6936
|
+
"team:tag:list": {
|
|
6914
6937
|
"aliases": [],
|
|
6915
6938
|
"args": {
|
|
6916
|
-
"
|
|
6917
|
-
"description": "
|
|
6918
|
-
"name": "
|
|
6939
|
+
"team_id": {
|
|
6940
|
+
"description": "Team ID",
|
|
6941
|
+
"name": "team_id",
|
|
6919
6942
|
"required": true
|
|
6920
6943
|
}
|
|
6921
6944
|
},
|
|
6922
|
-
"description": "
|
|
6945
|
+
"description": "List tags on a team",
|
|
6923
6946
|
"flags": {
|
|
6924
6947
|
"json": {
|
|
6925
6948
|
"description": "Format output as json.",
|
|
@@ -6951,25 +6974,11 @@
|
|
|
6951
6974
|
"hasDynamicHelp": false,
|
|
6952
6975
|
"multiple": false,
|
|
6953
6976
|
"type": "option"
|
|
6954
|
-
},
|
|
6955
|
-
"no-wait": {
|
|
6956
|
-
"description": "Return as soon as the pause is accepted, without waiting for the compile to stop.",
|
|
6957
|
-
"name": "no-wait",
|
|
6958
|
-
"allowNo": false,
|
|
6959
|
-
"type": "boolean"
|
|
6960
|
-
},
|
|
6961
|
-
"timeout": {
|
|
6962
|
-
"description": "Seconds to wait for the compile to stop (default: 60)",
|
|
6963
|
-
"name": "timeout",
|
|
6964
|
-
"default": 60,
|
|
6965
|
-
"hasDynamicHelp": false,
|
|
6966
|
-
"multiple": false,
|
|
6967
|
-
"type": "option"
|
|
6968
6977
|
}
|
|
6969
6978
|
},
|
|
6970
6979
|
"hasDynamicHelp": false,
|
|
6971
6980
|
"hiddenAliases": [],
|
|
6972
|
-
"id": "
|
|
6981
|
+
"id": "team:tag:list",
|
|
6973
6982
|
"pluginAlias": "faces-cli",
|
|
6974
6983
|
"pluginName": "faces-cli",
|
|
6975
6984
|
"pluginType": "core",
|
|
@@ -6979,21 +6988,26 @@
|
|
|
6979
6988
|
"relativePath": [
|
|
6980
6989
|
"dist",
|
|
6981
6990
|
"commands",
|
|
6982
|
-
"
|
|
6983
|
-
"
|
|
6984
|
-
"
|
|
6991
|
+
"team",
|
|
6992
|
+
"tag",
|
|
6993
|
+
"list.js"
|
|
6985
6994
|
]
|
|
6986
6995
|
},
|
|
6987
|
-
"
|
|
6996
|
+
"team:tag:remove": {
|
|
6988
6997
|
"aliases": [],
|
|
6989
6998
|
"args": {
|
|
6990
|
-
"
|
|
6991
|
-
"description": "
|
|
6992
|
-
"name": "
|
|
6999
|
+
"team_id": {
|
|
7000
|
+
"description": "Team ID",
|
|
7001
|
+
"name": "team_id",
|
|
7002
|
+
"required": true
|
|
7003
|
+
},
|
|
7004
|
+
"tag": {
|
|
7005
|
+
"description": "Tag to remove",
|
|
7006
|
+
"name": "tag",
|
|
6993
7007
|
"required": true
|
|
6994
7008
|
}
|
|
6995
7009
|
},
|
|
6996
|
-
"description": "
|
|
7010
|
+
"description": "Remove a tag from a team",
|
|
6997
7011
|
"flags": {
|
|
6998
7012
|
"json": {
|
|
6999
7013
|
"description": "Format output as json.",
|
|
@@ -7025,17 +7039,11 @@
|
|
|
7025
7039
|
"hasDynamicHelp": false,
|
|
7026
7040
|
"multiple": false,
|
|
7027
7041
|
"type": "option"
|
|
7028
|
-
},
|
|
7029
|
-
"yes": {
|
|
7030
|
-
"description": "Skip confirmation",
|
|
7031
|
-
"name": "yes",
|
|
7032
|
-
"allowNo": false,
|
|
7033
|
-
"type": "boolean"
|
|
7034
7042
|
}
|
|
7035
7043
|
},
|
|
7036
7044
|
"hasDynamicHelp": false,
|
|
7037
7045
|
"hiddenAliases": [],
|
|
7038
|
-
"id": "
|
|
7046
|
+
"id": "team:tag:remove",
|
|
7039
7047
|
"pluginAlias": "faces-cli",
|
|
7040
7048
|
"pluginName": "faces-cli",
|
|
7041
7049
|
"pluginType": "core",
|
|
@@ -7045,21 +7053,21 @@
|
|
|
7045
7053
|
"relativePath": [
|
|
7046
7054
|
"dist",
|
|
7047
7055
|
"commands",
|
|
7048
|
-
"
|
|
7049
|
-
"
|
|
7050
|
-
"
|
|
7056
|
+
"team",
|
|
7057
|
+
"tag",
|
|
7058
|
+
"remove.js"
|
|
7051
7059
|
]
|
|
7052
7060
|
},
|
|
7053
|
-
"
|
|
7061
|
+
"team:tag:set": {
|
|
7054
7062
|
"aliases": [],
|
|
7055
7063
|
"args": {
|
|
7056
|
-
"
|
|
7057
|
-
"description": "
|
|
7058
|
-
"name": "
|
|
7064
|
+
"team_id": {
|
|
7065
|
+
"description": "Team ID",
|
|
7066
|
+
"name": "team_id",
|
|
7059
7067
|
"required": true
|
|
7060
7068
|
}
|
|
7061
7069
|
},
|
|
7062
|
-
"description": "
|
|
7070
|
+
"description": "Replace all tags on a team",
|
|
7063
7071
|
"flags": {
|
|
7064
7072
|
"json": {
|
|
7065
7073
|
"description": "Format output as json.",
|
|
@@ -7091,11 +7099,19 @@
|
|
|
7091
7099
|
"hasDynamicHelp": false,
|
|
7092
7100
|
"multiple": false,
|
|
7093
7101
|
"type": "option"
|
|
7102
|
+
},
|
|
7103
|
+
"tag": {
|
|
7104
|
+
"description": "Tag to set (repeatable, replaces all)",
|
|
7105
|
+
"name": "tag",
|
|
7106
|
+
"required": true,
|
|
7107
|
+
"hasDynamicHelp": false,
|
|
7108
|
+
"multiple": true,
|
|
7109
|
+
"type": "option"
|
|
7094
7110
|
}
|
|
7095
7111
|
},
|
|
7096
7112
|
"hasDynamicHelp": false,
|
|
7097
7113
|
"hiddenAliases": [],
|
|
7098
|
-
"id": "
|
|
7114
|
+
"id": "team:tag:set",
|
|
7099
7115
|
"pluginAlias": "faces-cli",
|
|
7100
7116
|
"pluginName": "faces-cli",
|
|
7101
7117
|
"pluginType": "core",
|
|
@@ -7105,11 +7121,11 @@
|
|
|
7105
7121
|
"relativePath": [
|
|
7106
7122
|
"dist",
|
|
7107
7123
|
"commands",
|
|
7108
|
-
"
|
|
7109
|
-
"
|
|
7110
|
-
"
|
|
7124
|
+
"team",
|
|
7125
|
+
"tag",
|
|
7126
|
+
"set.js"
|
|
7111
7127
|
]
|
|
7112
7128
|
}
|
|
7113
7129
|
},
|
|
7114
|
-
"version": "1.8.
|
|
7130
|
+
"version": "1.8.3"
|
|
7115
7131
|
}
|