faces-cli 1.8.5 → 1.8.7
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/catalog.js +1 -1
- package/dist/commands/auth/connect.js +3 -3
- package/dist/commands/auth/connections.js +1 -1
- package/dist/commands/billing/subscription/activate.js +2 -2
- package/dist/commands/catalog/doctor.js +1 -1
- package/dist/commands/catalog/list.js +1 -1
- package/dist/commands/chat/thread.js +2 -2
- package/dist/commands/compile/all.js +1 -1
- package/dist/commands/compile/doc/index.js +3 -3
- package/dist/commands/compile/doc/pause.js +2 -2
- package/dist/commands/compile/import.js +1 -1
- package/dist/commands/compile/thread/edit.d.ts +3 -0
- package/dist/commands/compile/thread/edit.js +44 -9
- package/dist/commands/compile/thread/pause.js +2 -2
- package/dist/commands/face/diff.js +1 -1
- package/dist/commands/face/get.js +8 -0
- package/dist/commands/face/list.d.ts +1 -0
- package/dist/commands/face/list.js +10 -0
- package/dist/commands/face/lock.js +2 -2
- package/dist/commands/face/neighbors.js +1 -1
- package/dist/commands/face/share.js +1 -1
- package/dist/commands/face/sources.js +5 -2
- package/dist/commands/face/unlock.js +1 -1
- package/dist/commands/face/unpublish.js +1 -1
- package/dist/commands/face/unshare.js +1 -1
- package/dist/commands/keys/create.js +3 -3
- package/dist/commands/style/delete.js +13 -8
- package/dist/commands/style/make.js +40 -18
- package/dist/style.d.ts +20 -8
- package/dist/style.js +40 -10
- package/dist/utils.js +2 -2
- package/oclif.manifest.json +1177 -1147
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -120,23 +120,10 @@
|
|
|
120
120
|
"state.js"
|
|
121
121
|
]
|
|
122
122
|
},
|
|
123
|
-
"
|
|
123
|
+
"catalog:backup": {
|
|
124
124
|
"aliases": [],
|
|
125
|
-
"args": {
|
|
126
|
-
|
|
127
|
-
"description": "OAuth provider to connect",
|
|
128
|
-
"name": "provider",
|
|
129
|
-
"options": [
|
|
130
|
-
"openai"
|
|
131
|
-
],
|
|
132
|
-
"required": true
|
|
133
|
-
}
|
|
134
|
-
},
|
|
135
|
-
"description": "Connect your ChatGPT account to Faces via device-code authorization (Subscription Connect plan)",
|
|
136
|
-
"examples": [
|
|
137
|
-
"<%= config.bin %> auth connect openai",
|
|
138
|
-
"<%= config.bin %> auth connect openai --json"
|
|
139
|
-
],
|
|
125
|
+
"args": {},
|
|
126
|
+
"description": "Snapshot all faces, teams, and source material for migration",
|
|
140
127
|
"flags": {
|
|
141
128
|
"json": {
|
|
142
129
|
"description": "Format output as json.",
|
|
@@ -172,7 +159,7 @@
|
|
|
172
159
|
},
|
|
173
160
|
"hasDynamicHelp": false,
|
|
174
161
|
"hiddenAliases": [],
|
|
175
|
-
"id": "
|
|
162
|
+
"id": "catalog:backup",
|
|
176
163
|
"pluginAlias": "faces-cli",
|
|
177
164
|
"pluginName": "faces-cli",
|
|
178
165
|
"pluginType": "core",
|
|
@@ -182,18 +169,14 @@
|
|
|
182
169
|
"relativePath": [
|
|
183
170
|
"dist",
|
|
184
171
|
"commands",
|
|
185
|
-
"
|
|
186
|
-
"
|
|
172
|
+
"catalog",
|
|
173
|
+
"backup.js"
|
|
187
174
|
]
|
|
188
175
|
},
|
|
189
|
-
"
|
|
176
|
+
"catalog:doctor": {
|
|
190
177
|
"aliases": [],
|
|
191
178
|
"args": {},
|
|
192
|
-
"description": "
|
|
193
|
-
"examples": [
|
|
194
|
-
"<%= config.bin %> auth connections",
|
|
195
|
-
"<%= config.bin %> auth connections --json"
|
|
196
|
-
],
|
|
179
|
+
"description": "Diagnose and repair the local face and team catalog",
|
|
197
180
|
"flags": {
|
|
198
181
|
"json": {
|
|
199
182
|
"description": "Format output as json.",
|
|
@@ -225,11 +208,23 @@
|
|
|
225
208
|
"hasDynamicHelp": false,
|
|
226
209
|
"multiple": false,
|
|
227
210
|
"type": "option"
|
|
211
|
+
},
|
|
212
|
+
"fix": {
|
|
213
|
+
"description": "Rebuild missing or stale catalog entries from API",
|
|
214
|
+
"name": "fix",
|
|
215
|
+
"allowNo": false,
|
|
216
|
+
"type": "boolean"
|
|
217
|
+
},
|
|
218
|
+
"generate": {
|
|
219
|
+
"description": "Fix + generate missing descriptions via LLM",
|
|
220
|
+
"name": "generate",
|
|
221
|
+
"allowNo": false,
|
|
222
|
+
"type": "boolean"
|
|
228
223
|
}
|
|
229
224
|
},
|
|
230
225
|
"hasDynamicHelp": false,
|
|
231
226
|
"hiddenAliases": [],
|
|
232
|
-
"id": "
|
|
227
|
+
"id": "catalog:doctor",
|
|
233
228
|
"pluginAlias": "faces-cli",
|
|
234
229
|
"pluginName": "faces-cli",
|
|
235
230
|
"pluginType": "core",
|
|
@@ -239,26 +234,14 @@
|
|
|
239
234
|
"relativePath": [
|
|
240
235
|
"dist",
|
|
241
236
|
"commands",
|
|
242
|
-
"
|
|
243
|
-
"
|
|
237
|
+
"catalog",
|
|
238
|
+
"doctor.js"
|
|
244
239
|
]
|
|
245
240
|
},
|
|
246
|
-
"
|
|
241
|
+
"catalog:list": {
|
|
247
242
|
"aliases": [],
|
|
248
|
-
"args": {
|
|
249
|
-
|
|
250
|
-
"description": "OAuth provider to disconnect",
|
|
251
|
-
"name": "provider",
|
|
252
|
-
"options": [
|
|
253
|
-
"openai"
|
|
254
|
-
],
|
|
255
|
-
"required": true
|
|
256
|
-
}
|
|
257
|
-
},
|
|
258
|
-
"description": "Disconnect a linked OAuth provider account",
|
|
259
|
-
"examples": [
|
|
260
|
-
"<%= config.bin %> auth disconnect openai"
|
|
261
|
-
],
|
|
243
|
+
"args": {},
|
|
244
|
+
"description": "List all faces in the local catalog",
|
|
262
245
|
"flags": {
|
|
263
246
|
"json": {
|
|
264
247
|
"description": "Format output as json.",
|
|
@@ -294,7 +277,7 @@
|
|
|
294
277
|
},
|
|
295
278
|
"hasDynamicHelp": false,
|
|
296
279
|
"hiddenAliases": [],
|
|
297
|
-
"id": "
|
|
280
|
+
"id": "catalog:list",
|
|
298
281
|
"pluginAlias": "faces-cli",
|
|
299
282
|
"pluginName": "faces-cli",
|
|
300
283
|
"pluginType": "core",
|
|
@@ -304,14 +287,14 @@
|
|
|
304
287
|
"relativePath": [
|
|
305
288
|
"dist",
|
|
306
289
|
"commands",
|
|
307
|
-
"
|
|
308
|
-
"
|
|
290
|
+
"catalog",
|
|
291
|
+
"list.js"
|
|
309
292
|
]
|
|
310
293
|
},
|
|
311
|
-
"
|
|
294
|
+
"catalog:manyfaced": {
|
|
312
295
|
"aliases": [],
|
|
313
296
|
"args": {},
|
|
314
|
-
"description": "
|
|
297
|
+
"description": "Browse and install community manyfaced skills from github.com/facessh/manyfaced",
|
|
315
298
|
"flags": {
|
|
316
299
|
"json": {
|
|
317
300
|
"description": "Format output as json.",
|
|
@@ -344,26 +327,37 @@
|
|
|
344
327
|
"multiple": false,
|
|
345
328
|
"type": "option"
|
|
346
329
|
},
|
|
347
|
-
"
|
|
348
|
-
"description": "
|
|
349
|
-
"name": "
|
|
350
|
-
"required": true,
|
|
330
|
+
"skill": {
|
|
331
|
+
"description": "Show details for a specific skill",
|
|
332
|
+
"name": "skill",
|
|
351
333
|
"hasDynamicHelp": false,
|
|
352
334
|
"multiple": false,
|
|
353
335
|
"type": "option"
|
|
354
336
|
},
|
|
355
|
-
"
|
|
356
|
-
"description": "
|
|
357
|
-
"name": "
|
|
358
|
-
"
|
|
337
|
+
"install": {
|
|
338
|
+
"description": "Install a skill by name",
|
|
339
|
+
"name": "install",
|
|
340
|
+
"hasDynamicHelp": false,
|
|
341
|
+
"multiple": false,
|
|
342
|
+
"type": "option"
|
|
343
|
+
},
|
|
344
|
+
"skills-dir": {
|
|
345
|
+
"description": "Directory to install skills into (required for --install)",
|
|
346
|
+
"name": "skills-dir",
|
|
359
347
|
"hasDynamicHelp": false,
|
|
360
348
|
"multiple": false,
|
|
361
349
|
"type": "option"
|
|
350
|
+
},
|
|
351
|
+
"refresh": {
|
|
352
|
+
"description": "Force refresh the skill index (ignore cache)",
|
|
353
|
+
"name": "refresh",
|
|
354
|
+
"allowNo": false,
|
|
355
|
+
"type": "boolean"
|
|
362
356
|
}
|
|
363
357
|
},
|
|
364
358
|
"hasDynamicHelp": false,
|
|
365
359
|
"hiddenAliases": [],
|
|
366
|
-
"id": "
|
|
360
|
+
"id": "catalog:manyfaced",
|
|
367
361
|
"pluginAlias": "faces-cli",
|
|
368
362
|
"pluginName": "faces-cli",
|
|
369
363
|
"pluginType": "core",
|
|
@@ -373,14 +367,19 @@
|
|
|
373
367
|
"relativePath": [
|
|
374
368
|
"dist",
|
|
375
369
|
"commands",
|
|
376
|
-
"
|
|
377
|
-
"
|
|
370
|
+
"catalog",
|
|
371
|
+
"manyfaced.js"
|
|
378
372
|
]
|
|
379
373
|
},
|
|
380
|
-
"
|
|
374
|
+
"catalog:restore": {
|
|
381
375
|
"aliases": [],
|
|
382
|
-
"args": {
|
|
383
|
-
|
|
376
|
+
"args": {
|
|
377
|
+
"file": {
|
|
378
|
+
"description": "Backup file path (default: most recent in ~/.faces/backups/)",
|
|
379
|
+
"name": "file"
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
"description": "Restore faces, teams, and source material from a backup snapshot",
|
|
384
383
|
"flags": {
|
|
385
384
|
"json": {
|
|
386
385
|
"description": "Format output as json.",
|
|
@@ -412,11 +411,17 @@
|
|
|
412
411
|
"hasDynamicHelp": false,
|
|
413
412
|
"multiple": false,
|
|
414
413
|
"type": "option"
|
|
414
|
+
},
|
|
415
|
+
"compile": {
|
|
416
|
+
"description": "Run compile:all after restoring",
|
|
417
|
+
"name": "compile",
|
|
418
|
+
"allowNo": false,
|
|
419
|
+
"type": "boolean"
|
|
415
420
|
}
|
|
416
421
|
},
|
|
417
422
|
"hasDynamicHelp": false,
|
|
418
423
|
"hiddenAliases": [],
|
|
419
|
-
"id": "
|
|
424
|
+
"id": "catalog:restore",
|
|
420
425
|
"pluginAlias": "faces-cli",
|
|
421
426
|
"pluginName": "faces-cli",
|
|
422
427
|
"pluginType": "core",
|
|
@@ -426,14 +431,14 @@
|
|
|
426
431
|
"relativePath": [
|
|
427
432
|
"dist",
|
|
428
433
|
"commands",
|
|
429
|
-
"
|
|
430
|
-
"
|
|
434
|
+
"catalog",
|
|
435
|
+
"restore.js"
|
|
431
436
|
]
|
|
432
437
|
},
|
|
433
|
-
"
|
|
438
|
+
"billing:balance": {
|
|
434
439
|
"aliases": [],
|
|
435
440
|
"args": {},
|
|
436
|
-
"description": "
|
|
441
|
+
"description": "Show credit balance and payment method status",
|
|
437
442
|
"flags": {
|
|
438
443
|
"json": {
|
|
439
444
|
"description": "Format output as json.",
|
|
@@ -469,7 +474,7 @@
|
|
|
469
474
|
},
|
|
470
475
|
"hasDynamicHelp": false,
|
|
471
476
|
"hiddenAliases": [],
|
|
472
|
-
"id": "
|
|
477
|
+
"id": "billing:balance",
|
|
473
478
|
"pluginAlias": "faces-cli",
|
|
474
479
|
"pluginName": "faces-cli",
|
|
475
480
|
"pluginType": "core",
|
|
@@ -479,14 +484,14 @@
|
|
|
479
484
|
"relativePath": [
|
|
480
485
|
"dist",
|
|
481
486
|
"commands",
|
|
482
|
-
"
|
|
483
|
-
"
|
|
487
|
+
"billing",
|
|
488
|
+
"balance.js"
|
|
484
489
|
]
|
|
485
490
|
},
|
|
486
|
-
"
|
|
491
|
+
"billing:card-setup": {
|
|
487
492
|
"aliases": [],
|
|
488
493
|
"args": {},
|
|
489
|
-
"description": "
|
|
494
|
+
"description": "Get a Stripe card setup URL to save a payment method",
|
|
490
495
|
"flags": {
|
|
491
496
|
"json": {
|
|
492
497
|
"description": "Format output as json.",
|
|
@@ -518,54 +523,11 @@
|
|
|
518
523
|
"hasDynamicHelp": false,
|
|
519
524
|
"multiple": false,
|
|
520
525
|
"type": "option"
|
|
521
|
-
},
|
|
522
|
-
"email": {
|
|
523
|
-
"description": "Email address",
|
|
524
|
-
"name": "email",
|
|
525
|
-
"required": true,
|
|
526
|
-
"hasDynamicHelp": false,
|
|
527
|
-
"multiple": false,
|
|
528
|
-
"type": "option"
|
|
529
|
-
},
|
|
530
|
-
"password": {
|
|
531
|
-
"description": "Password",
|
|
532
|
-
"name": "password",
|
|
533
|
-
"required": true,
|
|
534
|
-
"hasDynamicHelp": false,
|
|
535
|
-
"multiple": false,
|
|
536
|
-
"type": "option"
|
|
537
|
-
},
|
|
538
|
-
"username": {
|
|
539
|
-
"description": "Username (lowercase, dashes, numbers)",
|
|
540
|
-
"name": "username",
|
|
541
|
-
"required": true,
|
|
542
|
-
"hasDynamicHelp": false,
|
|
543
|
-
"multiple": false,
|
|
544
|
-
"type": "option"
|
|
545
|
-
},
|
|
546
|
-
"invite-key": {
|
|
547
|
-
"description": "Invite key (if required)",
|
|
548
|
-
"name": "invite-key",
|
|
549
|
-
"hasDynamicHelp": false,
|
|
550
|
-
"multiple": false,
|
|
551
|
-
"type": "option"
|
|
552
|
-
},
|
|
553
|
-
"plan": {
|
|
554
|
-
"description": "Plan to subscribe to: \"free\" ($5 activation) or \"connect\" ($17/mo, no activation fee)",
|
|
555
|
-
"name": "plan",
|
|
556
|
-
"default": "free",
|
|
557
|
-
"hasDynamicHelp": false,
|
|
558
|
-
"multiple": false,
|
|
559
|
-
"options": [
|
|
560
|
-
"free",
|
|
561
|
-
"connect"
|
|
562
|
-
],
|
|
563
|
-
"type": "option"
|
|
564
526
|
}
|
|
565
527
|
},
|
|
566
528
|
"hasDynamicHelp": false,
|
|
567
529
|
"hiddenAliases": [],
|
|
568
|
-
"id": "
|
|
530
|
+
"id": "billing:card-setup",
|
|
569
531
|
"pluginAlias": "faces-cli",
|
|
570
532
|
"pluginName": "faces-cli",
|
|
571
533
|
"pluginType": "core",
|
|
@@ -575,14 +537,14 @@
|
|
|
575
537
|
"relativePath": [
|
|
576
538
|
"dist",
|
|
577
539
|
"commands",
|
|
578
|
-
"
|
|
579
|
-
"
|
|
540
|
+
"billing",
|
|
541
|
+
"card-setup.js"
|
|
580
542
|
]
|
|
581
543
|
},
|
|
582
|
-
"
|
|
544
|
+
"billing:llm-costs": {
|
|
583
545
|
"aliases": [],
|
|
584
546
|
"args": {},
|
|
585
|
-
"description": "
|
|
547
|
+
"description": "List available LLMs and their per-token costs",
|
|
586
548
|
"flags": {
|
|
587
549
|
"json": {
|
|
588
550
|
"description": "Format output as json.",
|
|
@@ -614,11 +576,18 @@
|
|
|
614
576
|
"hasDynamicHelp": false,
|
|
615
577
|
"multiple": false,
|
|
616
578
|
"type": "option"
|
|
579
|
+
},
|
|
580
|
+
"provider": {
|
|
581
|
+
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
582
|
+
"name": "provider",
|
|
583
|
+
"hasDynamicHelp": false,
|
|
584
|
+
"multiple": false,
|
|
585
|
+
"type": "option"
|
|
617
586
|
}
|
|
618
587
|
},
|
|
619
588
|
"hasDynamicHelp": false,
|
|
620
589
|
"hiddenAliases": [],
|
|
621
|
-
"id": "
|
|
590
|
+
"id": "billing:llm-costs",
|
|
622
591
|
"pluginAlias": "faces-cli",
|
|
623
592
|
"pluginName": "faces-cli",
|
|
624
593
|
"pluginType": "core",
|
|
@@ -628,14 +597,14 @@
|
|
|
628
597
|
"relativePath": [
|
|
629
598
|
"dist",
|
|
630
599
|
"commands",
|
|
631
|
-
"
|
|
632
|
-
"
|
|
600
|
+
"billing",
|
|
601
|
+
"llm-costs.js"
|
|
633
602
|
]
|
|
634
603
|
},
|
|
635
|
-
"billing:
|
|
604
|
+
"billing:topup": {
|
|
636
605
|
"aliases": [],
|
|
637
606
|
"args": {},
|
|
638
|
-
"description": "
|
|
607
|
+
"description": "Top up credit balance using saved payment method",
|
|
639
608
|
"flags": {
|
|
640
609
|
"json": {
|
|
641
610
|
"description": "Format output as json.",
|
|
@@ -667,11 +636,26 @@
|
|
|
667
636
|
"hasDynamicHelp": false,
|
|
668
637
|
"multiple": false,
|
|
669
638
|
"type": "option"
|
|
639
|
+
},
|
|
640
|
+
"amount": {
|
|
641
|
+
"description": "Top-up amount in USD (min $1)",
|
|
642
|
+
"name": "amount",
|
|
643
|
+
"required": true,
|
|
644
|
+
"hasDynamicHelp": false,
|
|
645
|
+
"multiple": false,
|
|
646
|
+
"type": "option"
|
|
647
|
+
},
|
|
648
|
+
"payment-ref": {
|
|
649
|
+
"description": "Payment reference (admin/test path)",
|
|
650
|
+
"name": "payment-ref",
|
|
651
|
+
"hasDynamicHelp": false,
|
|
652
|
+
"multiple": false,
|
|
653
|
+
"type": "option"
|
|
670
654
|
}
|
|
671
655
|
},
|
|
672
656
|
"hasDynamicHelp": false,
|
|
673
657
|
"hiddenAliases": [],
|
|
674
|
-
"id": "billing:
|
|
658
|
+
"id": "billing:topup",
|
|
675
659
|
"pluginAlias": "faces-cli",
|
|
676
660
|
"pluginName": "faces-cli",
|
|
677
661
|
"pluginType": "core",
|
|
@@ -682,13 +666,13 @@
|
|
|
682
666
|
"dist",
|
|
683
667
|
"commands",
|
|
684
668
|
"billing",
|
|
685
|
-
"
|
|
669
|
+
"topup.js"
|
|
686
670
|
]
|
|
687
671
|
},
|
|
688
|
-
"billing:
|
|
672
|
+
"billing:usage": {
|
|
689
673
|
"aliases": [],
|
|
690
674
|
"args": {},
|
|
691
|
-
"description": "
|
|
675
|
+
"description": "Aggregated usage analytics",
|
|
692
676
|
"flags": {
|
|
693
677
|
"json": {
|
|
694
678
|
"description": "Format output as json.",
|
|
@@ -720,63 +704,30 @@
|
|
|
720
704
|
"hasDynamicHelp": false,
|
|
721
705
|
"multiple": false,
|
|
722
706
|
"type": "option"
|
|
723
|
-
}
|
|
724
|
-
},
|
|
725
|
-
"hasDynamicHelp": false,
|
|
726
|
-
"hiddenAliases": [],
|
|
727
|
-
"id": "billing:card-setup",
|
|
728
|
-
"pluginAlias": "faces-cli",
|
|
729
|
-
"pluginName": "faces-cli",
|
|
730
|
-
"pluginType": "core",
|
|
731
|
-
"strict": true,
|
|
732
|
-
"enableJsonFlag": true,
|
|
733
|
-
"isESM": true,
|
|
734
|
-
"relativePath": [
|
|
735
|
-
"dist",
|
|
736
|
-
"commands",
|
|
737
|
-
"billing",
|
|
738
|
-
"card-setup.js"
|
|
739
|
-
]
|
|
740
|
-
},
|
|
741
|
-
"billing:llm-costs": {
|
|
742
|
-
"aliases": [],
|
|
743
|
-
"args": {},
|
|
744
|
-
"description": "List available LLMs and their per-token costs",
|
|
745
|
-
"flags": {
|
|
746
|
-
"json": {
|
|
747
|
-
"description": "Format output as json.",
|
|
748
|
-
"helpGroup": "GLOBAL",
|
|
749
|
-
"name": "json",
|
|
750
|
-
"allowNo": false,
|
|
751
|
-
"type": "boolean"
|
|
752
|
-
},
|
|
753
|
-
"base-url": {
|
|
754
|
-
"description": "API base URL",
|
|
755
|
-
"env": "FACES_BASE_URL",
|
|
756
|
-
"name": "base-url",
|
|
757
|
-
"hasDynamicHelp": false,
|
|
758
|
-
"multiple": false,
|
|
759
|
-
"type": "option"
|
|
760
707
|
},
|
|
761
|
-
"
|
|
762
|
-
"description": "
|
|
763
|
-
"
|
|
764
|
-
"name": "token",
|
|
708
|
+
"group-by": {
|
|
709
|
+
"description": "Group results",
|
|
710
|
+
"name": "group-by",
|
|
765
711
|
"hasDynamicHelp": false,
|
|
766
712
|
"multiple": false,
|
|
713
|
+
"options": [
|
|
714
|
+
"api_key",
|
|
715
|
+
"model",
|
|
716
|
+
"llm",
|
|
717
|
+
"date"
|
|
718
|
+
],
|
|
767
719
|
"type": "option"
|
|
768
720
|
},
|
|
769
|
-
"
|
|
770
|
-
"description": "
|
|
771
|
-
"
|
|
772
|
-
"name": "api-key",
|
|
721
|
+
"from": {
|
|
722
|
+
"description": "Start date (YYYY-MM-DD)",
|
|
723
|
+
"name": "from",
|
|
773
724
|
"hasDynamicHelp": false,
|
|
774
725
|
"multiple": false,
|
|
775
726
|
"type": "option"
|
|
776
727
|
},
|
|
777
|
-
"
|
|
778
|
-
"description": "
|
|
779
|
-
"name": "
|
|
728
|
+
"to": {
|
|
729
|
+
"description": "End date (YYYY-MM-DD)",
|
|
730
|
+
"name": "to",
|
|
780
731
|
"hasDynamicHelp": false,
|
|
781
732
|
"multiple": false,
|
|
782
733
|
"type": "option"
|
|
@@ -784,7 +735,7 @@
|
|
|
784
735
|
},
|
|
785
736
|
"hasDynamicHelp": false,
|
|
786
737
|
"hiddenAliases": [],
|
|
787
|
-
"id": "billing:
|
|
738
|
+
"id": "billing:usage",
|
|
788
739
|
"pluginAlias": "faces-cli",
|
|
789
740
|
"pluginName": "faces-cli",
|
|
790
741
|
"pluginType": "core",
|
|
@@ -795,13 +746,26 @@
|
|
|
795
746
|
"dist",
|
|
796
747
|
"commands",
|
|
797
748
|
"billing",
|
|
798
|
-
"
|
|
749
|
+
"usage.js"
|
|
799
750
|
]
|
|
800
751
|
},
|
|
801
|
-
"
|
|
752
|
+
"auth:connect": {
|
|
802
753
|
"aliases": [],
|
|
803
|
-
"args": {
|
|
804
|
-
|
|
754
|
+
"args": {
|
|
755
|
+
"provider": {
|
|
756
|
+
"description": "OAuth provider to connect",
|
|
757
|
+
"name": "provider",
|
|
758
|
+
"options": [
|
|
759
|
+
"openai"
|
|
760
|
+
],
|
|
761
|
+
"required": true
|
|
762
|
+
}
|
|
763
|
+
},
|
|
764
|
+
"description": "Connect your ChatGPT account to Faces via device-code authorization (Subscription Connect plan)",
|
|
765
|
+
"examples": [
|
|
766
|
+
"<%= config.bin %> auth connect openai",
|
|
767
|
+
"<%= config.bin %> auth connect openai --json"
|
|
768
|
+
],
|
|
805
769
|
"flags": {
|
|
806
770
|
"json": {
|
|
807
771
|
"description": "Format output as json.",
|
|
@@ -833,26 +797,11 @@
|
|
|
833
797
|
"hasDynamicHelp": false,
|
|
834
798
|
"multiple": false,
|
|
835
799
|
"type": "option"
|
|
836
|
-
},
|
|
837
|
-
"amount": {
|
|
838
|
-
"description": "Top-up amount in USD (min $1)",
|
|
839
|
-
"name": "amount",
|
|
840
|
-
"required": true,
|
|
841
|
-
"hasDynamicHelp": false,
|
|
842
|
-
"multiple": false,
|
|
843
|
-
"type": "option"
|
|
844
|
-
},
|
|
845
|
-
"payment-ref": {
|
|
846
|
-
"description": "Payment reference (admin/test path)",
|
|
847
|
-
"name": "payment-ref",
|
|
848
|
-
"hasDynamicHelp": false,
|
|
849
|
-
"multiple": false,
|
|
850
|
-
"type": "option"
|
|
851
800
|
}
|
|
852
801
|
},
|
|
853
802
|
"hasDynamicHelp": false,
|
|
854
803
|
"hiddenAliases": [],
|
|
855
|
-
"id": "
|
|
804
|
+
"id": "auth:connect",
|
|
856
805
|
"pluginAlias": "faces-cli",
|
|
857
806
|
"pluginName": "faces-cli",
|
|
858
807
|
"pluginType": "core",
|
|
@@ -862,14 +811,18 @@
|
|
|
862
811
|
"relativePath": [
|
|
863
812
|
"dist",
|
|
864
813
|
"commands",
|
|
865
|
-
"
|
|
866
|
-
"
|
|
814
|
+
"auth",
|
|
815
|
+
"connect.js"
|
|
867
816
|
]
|
|
868
817
|
},
|
|
869
|
-
"
|
|
818
|
+
"auth:connections": {
|
|
870
819
|
"aliases": [],
|
|
871
820
|
"args": {},
|
|
872
|
-
"description": "
|
|
821
|
+
"description": "List connected OAuth provider accounts",
|
|
822
|
+
"examples": [
|
|
823
|
+
"<%= config.bin %> auth connections",
|
|
824
|
+
"<%= config.bin %> auth connections --json"
|
|
825
|
+
],
|
|
873
826
|
"flags": {
|
|
874
827
|
"json": {
|
|
875
828
|
"description": "Format output as json.",
|
|
@@ -901,38 +854,11 @@
|
|
|
901
854
|
"hasDynamicHelp": false,
|
|
902
855
|
"multiple": false,
|
|
903
856
|
"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
857
|
}
|
|
932
858
|
},
|
|
933
859
|
"hasDynamicHelp": false,
|
|
934
860
|
"hiddenAliases": [],
|
|
935
|
-
"id": "
|
|
861
|
+
"id": "auth:connections",
|
|
936
862
|
"pluginAlias": "faces-cli",
|
|
937
863
|
"pluginName": "faces-cli",
|
|
938
864
|
"pluginType": "core",
|
|
@@ -942,14 +868,26 @@
|
|
|
942
868
|
"relativePath": [
|
|
943
869
|
"dist",
|
|
944
870
|
"commands",
|
|
945
|
-
"
|
|
946
|
-
"
|
|
871
|
+
"auth",
|
|
872
|
+
"connections.js"
|
|
947
873
|
]
|
|
948
874
|
},
|
|
949
|
-
"
|
|
875
|
+
"auth:disconnect": {
|
|
950
876
|
"aliases": [],
|
|
951
|
-
"args": {
|
|
952
|
-
|
|
877
|
+
"args": {
|
|
878
|
+
"provider": {
|
|
879
|
+
"description": "OAuth provider to disconnect",
|
|
880
|
+
"name": "provider",
|
|
881
|
+
"options": [
|
|
882
|
+
"openai"
|
|
883
|
+
],
|
|
884
|
+
"required": true
|
|
885
|
+
}
|
|
886
|
+
},
|
|
887
|
+
"description": "Disconnect a linked OAuth provider account",
|
|
888
|
+
"examples": [
|
|
889
|
+
"<%= config.bin %> auth disconnect openai"
|
|
890
|
+
],
|
|
953
891
|
"flags": {
|
|
954
892
|
"json": {
|
|
955
893
|
"description": "Format output as json.",
|
|
@@ -985,7 +923,7 @@
|
|
|
985
923
|
},
|
|
986
924
|
"hasDynamicHelp": false,
|
|
987
925
|
"hiddenAliases": [],
|
|
988
|
-
"id": "
|
|
926
|
+
"id": "auth:disconnect",
|
|
989
927
|
"pluginAlias": "faces-cli",
|
|
990
928
|
"pluginName": "faces-cli",
|
|
991
929
|
"pluginType": "core",
|
|
@@ -995,14 +933,14 @@
|
|
|
995
933
|
"relativePath": [
|
|
996
934
|
"dist",
|
|
997
935
|
"commands",
|
|
998
|
-
"
|
|
999
|
-
"
|
|
936
|
+
"auth",
|
|
937
|
+
"disconnect.js"
|
|
1000
938
|
]
|
|
1001
939
|
},
|
|
1002
|
-
"
|
|
940
|
+
"auth:login": {
|
|
1003
941
|
"aliases": [],
|
|
1004
942
|
"args": {},
|
|
1005
|
-
"description": "
|
|
943
|
+
"description": "Login and save JWT credentials",
|
|
1006
944
|
"flags": {
|
|
1007
945
|
"json": {
|
|
1008
946
|
"description": "Format output as json.",
|
|
@@ -1035,22 +973,26 @@
|
|
|
1035
973
|
"multiple": false,
|
|
1036
974
|
"type": "option"
|
|
1037
975
|
},
|
|
1038
|
-
"
|
|
1039
|
-
"description": "
|
|
1040
|
-
"name": "
|
|
1041
|
-
"
|
|
1042
|
-
"
|
|
976
|
+
"email": {
|
|
977
|
+
"description": "Account email",
|
|
978
|
+
"name": "email",
|
|
979
|
+
"required": true,
|
|
980
|
+
"hasDynamicHelp": false,
|
|
981
|
+
"multiple": false,
|
|
982
|
+
"type": "option"
|
|
1043
983
|
},
|
|
1044
|
-
"
|
|
1045
|
-
"description": "
|
|
1046
|
-
"name": "
|
|
1047
|
-
"
|
|
1048
|
-
"
|
|
984
|
+
"password": {
|
|
985
|
+
"description": "Account password",
|
|
986
|
+
"name": "password",
|
|
987
|
+
"required": true,
|
|
988
|
+
"hasDynamicHelp": false,
|
|
989
|
+
"multiple": false,
|
|
990
|
+
"type": "option"
|
|
1049
991
|
}
|
|
1050
992
|
},
|
|
1051
993
|
"hasDynamicHelp": false,
|
|
1052
994
|
"hiddenAliases": [],
|
|
1053
|
-
"id": "
|
|
995
|
+
"id": "auth:login",
|
|
1054
996
|
"pluginAlias": "faces-cli",
|
|
1055
997
|
"pluginName": "faces-cli",
|
|
1056
998
|
"pluginType": "core",
|
|
@@ -1060,14 +1002,14 @@
|
|
|
1060
1002
|
"relativePath": [
|
|
1061
1003
|
"dist",
|
|
1062
1004
|
"commands",
|
|
1063
|
-
"
|
|
1064
|
-
"
|
|
1005
|
+
"auth",
|
|
1006
|
+
"login.js"
|
|
1065
1007
|
]
|
|
1066
1008
|
},
|
|
1067
|
-
"
|
|
1009
|
+
"auth:logout": {
|
|
1068
1010
|
"aliases": [],
|
|
1069
1011
|
"args": {},
|
|
1070
|
-
"description": "
|
|
1012
|
+
"description": "Clear saved credentials",
|
|
1071
1013
|
"flags": {
|
|
1072
1014
|
"json": {
|
|
1073
1015
|
"description": "Format output as json.",
|
|
@@ -1103,7 +1045,7 @@
|
|
|
1103
1045
|
},
|
|
1104
1046
|
"hasDynamicHelp": false,
|
|
1105
1047
|
"hiddenAliases": [],
|
|
1106
|
-
"id": "
|
|
1048
|
+
"id": "auth:logout",
|
|
1107
1049
|
"pluginAlias": "faces-cli",
|
|
1108
1050
|
"pluginName": "faces-cli",
|
|
1109
1051
|
"pluginType": "core",
|
|
@@ -1113,14 +1055,14 @@
|
|
|
1113
1055
|
"relativePath": [
|
|
1114
1056
|
"dist",
|
|
1115
1057
|
"commands",
|
|
1116
|
-
"
|
|
1117
|
-
"
|
|
1058
|
+
"auth",
|
|
1059
|
+
"logout.js"
|
|
1118
1060
|
]
|
|
1119
1061
|
},
|
|
1120
|
-
"
|
|
1062
|
+
"auth:refresh": {
|
|
1121
1063
|
"aliases": [],
|
|
1122
1064
|
"args": {},
|
|
1123
|
-
"description": "
|
|
1065
|
+
"description": "Exchange current JWT for a fresh one",
|
|
1124
1066
|
"flags": {
|
|
1125
1067
|
"json": {
|
|
1126
1068
|
"description": "Format output as json.",
|
|
@@ -1152,38 +1094,11 @@
|
|
|
1152
1094
|
"hasDynamicHelp": false,
|
|
1153
1095
|
"multiple": false,
|
|
1154
1096
|
"type": "option"
|
|
1155
|
-
},
|
|
1156
|
-
"skill": {
|
|
1157
|
-
"description": "Show details for a specific skill",
|
|
1158
|
-
"name": "skill",
|
|
1159
|
-
"hasDynamicHelp": false,
|
|
1160
|
-
"multiple": false,
|
|
1161
|
-
"type": "option"
|
|
1162
|
-
},
|
|
1163
|
-
"install": {
|
|
1164
|
-
"description": "Install a skill by name",
|
|
1165
|
-
"name": "install",
|
|
1166
|
-
"hasDynamicHelp": false,
|
|
1167
|
-
"multiple": false,
|
|
1168
|
-
"type": "option"
|
|
1169
|
-
},
|
|
1170
|
-
"skills-dir": {
|
|
1171
|
-
"description": "Directory to install skills into (required for --install)",
|
|
1172
|
-
"name": "skills-dir",
|
|
1173
|
-
"hasDynamicHelp": false,
|
|
1174
|
-
"multiple": false,
|
|
1175
|
-
"type": "option"
|
|
1176
|
-
},
|
|
1177
|
-
"refresh": {
|
|
1178
|
-
"description": "Force refresh the skill index (ignore cache)",
|
|
1179
|
-
"name": "refresh",
|
|
1180
|
-
"allowNo": false,
|
|
1181
|
-
"type": "boolean"
|
|
1182
1097
|
}
|
|
1183
1098
|
},
|
|
1184
1099
|
"hasDynamicHelp": false,
|
|
1185
1100
|
"hiddenAliases": [],
|
|
1186
|
-
"id": "
|
|
1101
|
+
"id": "auth:refresh",
|
|
1187
1102
|
"pluginAlias": "faces-cli",
|
|
1188
1103
|
"pluginName": "faces-cli",
|
|
1189
1104
|
"pluginType": "core",
|
|
@@ -1193,19 +1108,14 @@
|
|
|
1193
1108
|
"relativePath": [
|
|
1194
1109
|
"dist",
|
|
1195
1110
|
"commands",
|
|
1196
|
-
"
|
|
1197
|
-
"
|
|
1111
|
+
"auth",
|
|
1112
|
+
"refresh.js"
|
|
1198
1113
|
]
|
|
1199
1114
|
},
|
|
1200
|
-
"
|
|
1115
|
+
"auth:register": {
|
|
1201
1116
|
"aliases": [],
|
|
1202
|
-
"args": {
|
|
1203
|
-
|
|
1204
|
-
"description": "Backup file path (default: most recent in ~/.faces/backups/)",
|
|
1205
|
-
"name": "file"
|
|
1206
|
-
}
|
|
1207
|
-
},
|
|
1208
|
-
"description": "Restore faces, teams, and source material from a backup snapshot",
|
|
1117
|
+
"args": {},
|
|
1118
|
+
"description": "Create a new Faces account",
|
|
1209
1119
|
"flags": {
|
|
1210
1120
|
"json": {
|
|
1211
1121
|
"description": "Format output as json.",
|
|
@@ -1238,16 +1148,53 @@
|
|
|
1238
1148
|
"multiple": false,
|
|
1239
1149
|
"type": "option"
|
|
1240
1150
|
},
|
|
1241
|
-
"
|
|
1242
|
-
"description": "
|
|
1243
|
-
"name": "
|
|
1244
|
-
"
|
|
1245
|
-
"
|
|
1246
|
-
|
|
1151
|
+
"email": {
|
|
1152
|
+
"description": "Email address",
|
|
1153
|
+
"name": "email",
|
|
1154
|
+
"required": true,
|
|
1155
|
+
"hasDynamicHelp": false,
|
|
1156
|
+
"multiple": false,
|
|
1157
|
+
"type": "option"
|
|
1158
|
+
},
|
|
1159
|
+
"password": {
|
|
1160
|
+
"description": "Password",
|
|
1161
|
+
"name": "password",
|
|
1162
|
+
"required": true,
|
|
1163
|
+
"hasDynamicHelp": false,
|
|
1164
|
+
"multiple": false,
|
|
1165
|
+
"type": "option"
|
|
1166
|
+
},
|
|
1167
|
+
"username": {
|
|
1168
|
+
"description": "Username (lowercase, dashes, numbers)",
|
|
1169
|
+
"name": "username",
|
|
1170
|
+
"required": true,
|
|
1171
|
+
"hasDynamicHelp": false,
|
|
1172
|
+
"multiple": false,
|
|
1173
|
+
"type": "option"
|
|
1174
|
+
},
|
|
1175
|
+
"invite-key": {
|
|
1176
|
+
"description": "Invite key (if required)",
|
|
1177
|
+
"name": "invite-key",
|
|
1178
|
+
"hasDynamicHelp": false,
|
|
1179
|
+
"multiple": false,
|
|
1180
|
+
"type": "option"
|
|
1181
|
+
},
|
|
1182
|
+
"plan": {
|
|
1183
|
+
"description": "Plan to subscribe to: \"free\" ($5 activation) or \"connect\" ($17/mo, no activation fee)",
|
|
1184
|
+
"name": "plan",
|
|
1185
|
+
"default": "free",
|
|
1186
|
+
"hasDynamicHelp": false,
|
|
1187
|
+
"multiple": false,
|
|
1188
|
+
"options": [
|
|
1189
|
+
"free",
|
|
1190
|
+
"connect"
|
|
1191
|
+
],
|
|
1192
|
+
"type": "option"
|
|
1193
|
+
}
|
|
1247
1194
|
},
|
|
1248
1195
|
"hasDynamicHelp": false,
|
|
1249
1196
|
"hiddenAliases": [],
|
|
1250
|
-
"id": "
|
|
1197
|
+
"id": "auth:register",
|
|
1251
1198
|
"pluginAlias": "faces-cli",
|
|
1252
1199
|
"pluginName": "faces-cli",
|
|
1253
1200
|
"pluginType": "core",
|
|
@@ -1257,8 +1204,61 @@
|
|
|
1257
1204
|
"relativePath": [
|
|
1258
1205
|
"dist",
|
|
1259
1206
|
"commands",
|
|
1260
|
-
"
|
|
1261
|
-
"
|
|
1207
|
+
"auth",
|
|
1208
|
+
"register.js"
|
|
1209
|
+
]
|
|
1210
|
+
},
|
|
1211
|
+
"auth:whoami": {
|
|
1212
|
+
"aliases": [],
|
|
1213
|
+
"args": {},
|
|
1214
|
+
"description": "Print current user profile and auth diagnostic",
|
|
1215
|
+
"flags": {
|
|
1216
|
+
"json": {
|
|
1217
|
+
"description": "Format output as json.",
|
|
1218
|
+
"helpGroup": "GLOBAL",
|
|
1219
|
+
"name": "json",
|
|
1220
|
+
"allowNo": false,
|
|
1221
|
+
"type": "boolean"
|
|
1222
|
+
},
|
|
1223
|
+
"base-url": {
|
|
1224
|
+
"description": "API base URL",
|
|
1225
|
+
"env": "FACES_BASE_URL",
|
|
1226
|
+
"name": "base-url",
|
|
1227
|
+
"hasDynamicHelp": false,
|
|
1228
|
+
"multiple": false,
|
|
1229
|
+
"type": "option"
|
|
1230
|
+
},
|
|
1231
|
+
"token": {
|
|
1232
|
+
"description": "JWT bearer token",
|
|
1233
|
+
"env": "FACES_TOKEN",
|
|
1234
|
+
"name": "token",
|
|
1235
|
+
"hasDynamicHelp": false,
|
|
1236
|
+
"multiple": false,
|
|
1237
|
+
"type": "option"
|
|
1238
|
+
},
|
|
1239
|
+
"api-key": {
|
|
1240
|
+
"description": "API key",
|
|
1241
|
+
"env": "FACES_API_KEY",
|
|
1242
|
+
"name": "api-key",
|
|
1243
|
+
"hasDynamicHelp": false,
|
|
1244
|
+
"multiple": false,
|
|
1245
|
+
"type": "option"
|
|
1246
|
+
}
|
|
1247
|
+
},
|
|
1248
|
+
"hasDynamicHelp": false,
|
|
1249
|
+
"hiddenAliases": [],
|
|
1250
|
+
"id": "auth:whoami",
|
|
1251
|
+
"pluginAlias": "faces-cli",
|
|
1252
|
+
"pluginName": "faces-cli",
|
|
1253
|
+
"pluginType": "core",
|
|
1254
|
+
"strict": true,
|
|
1255
|
+
"enableJsonFlag": true,
|
|
1256
|
+
"isESM": true,
|
|
1257
|
+
"relativePath": [
|
|
1258
|
+
"dist",
|
|
1259
|
+
"commands",
|
|
1260
|
+
"auth",
|
|
1261
|
+
"whoami.js"
|
|
1262
1262
|
]
|
|
1263
1263
|
},
|
|
1264
1264
|
"chat:chat": {
|
|
@@ -1372,7 +1372,7 @@
|
|
|
1372
1372
|
"type": "boolean"
|
|
1373
1373
|
},
|
|
1374
1374
|
"medium": {
|
|
1375
|
-
"description": "What sort of writing this is
|
|
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
|
|
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
|
|
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,
|
|
@@ -1601,12 +1601,12 @@
|
|
|
1601
1601
|
"aliases": [],
|
|
1602
1602
|
"args": {
|
|
1603
1603
|
"face_username": {
|
|
1604
|
-
"description": "Face alias (alias@model, or owner:alias@model for a published face)
|
|
1604
|
+
"description": "Face alias (alias@model, or owner:alias@model for a published face). Required when starting a new thread",
|
|
1605
1605
|
"name": "face_username",
|
|
1606
1606
|
"required": false
|
|
1607
1607
|
}
|
|
1608
1608
|
},
|
|
1609
|
-
"description": "Multi-turn chat thread. Conversation history is stored under ~/.faces/threads/<id>.json
|
|
1609
|
+
"description": "Multi-turn chat thread. Conversation history is stored under ~/.faces/threads/<id>.json. Resume any thread later with --id.",
|
|
1610
1610
|
"examples": [
|
|
1611
1611
|
"<%= config.bin %> <%= command.id %> socrates -m \"What is justice?\"",
|
|
1612
1612
|
"<%= config.bin %> <%= command.id %> --id t_abc123 -m \"Say more about that\"",
|
|
@@ -1703,7 +1703,7 @@
|
|
|
1703
1703
|
"type": "boolean"
|
|
1704
1704
|
},
|
|
1705
1705
|
"medium": {
|
|
1706
|
-
"description": "What sort of writing this is
|
|
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,
|
|
@@ -2043,7 +2043,7 @@
|
|
|
2043
2043
|
"type": "option"
|
|
2044
2044
|
},
|
|
2045
2045
|
"medium": {
|
|
2046
|
-
"description": "What sort of writing this is
|
|
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
2047
|
"name": "medium",
|
|
2048
2048
|
"hasDynamicHelp": false,
|
|
2049
2049
|
"multiple": false,
|
|
@@ -2255,10 +2255,10 @@
|
|
|
2255
2255
|
"show.js"
|
|
2256
2256
|
]
|
|
2257
2257
|
},
|
|
2258
|
-
"
|
|
2258
|
+
"face:attributes": {
|
|
2259
2259
|
"aliases": [],
|
|
2260
2260
|
"args": {},
|
|
2261
|
-
"description": "
|
|
2261
|
+
"description": "List all supported attribute keys",
|
|
2262
2262
|
"flags": {
|
|
2263
2263
|
"json": {
|
|
2264
2264
|
"description": "Format output as json.",
|
|
@@ -2290,53 +2290,11 @@
|
|
|
2290
2290
|
"hasDynamicHelp": false,
|
|
2291
2291
|
"multiple": false,
|
|
2292
2292
|
"type": "option"
|
|
2293
|
-
},
|
|
2294
|
-
"name": {
|
|
2295
|
-
"description": "Key name/label",
|
|
2296
|
-
"name": "name",
|
|
2297
|
-
"required": true,
|
|
2298
|
-
"hasDynamicHelp": false,
|
|
2299
|
-
"multiple": false,
|
|
2300
|
-
"type": "option"
|
|
2301
|
-
},
|
|
2302
|
-
"expires-days": {
|
|
2303
|
-
"description": "Expiry in days (omit for no expiry)",
|
|
2304
|
-
"name": "expires-days",
|
|
2305
|
-
"hasDynamicHelp": false,
|
|
2306
|
-
"multiple": false,
|
|
2307
|
-
"type": "option"
|
|
2308
|
-
},
|
|
2309
|
-
"budget": {
|
|
2310
|
-
"description": "Spend budget in USD",
|
|
2311
|
-
"name": "budget",
|
|
2312
|
-
"hasDynamicHelp": false,
|
|
2313
|
-
"multiple": false,
|
|
2314
|
-
"type": "option"
|
|
2315
|
-
},
|
|
2316
|
-
"face": {
|
|
2317
|
-
"description": "Allowed face alias (repeatable)",
|
|
2318
|
-
"name": "face",
|
|
2319
|
-
"hasDynamicHelp": false,
|
|
2320
|
-
"multiple": true,
|
|
2321
|
-
"type": "option"
|
|
2322
|
-
},
|
|
2323
|
-
"model": {
|
|
2324
|
-
"description": "Allowed model name (repeatable)",
|
|
2325
|
-
"name": "model",
|
|
2326
|
-
"hasDynamicHelp": false,
|
|
2327
|
-
"multiple": true,
|
|
2328
|
-
"type": "option"
|
|
2329
|
-
},
|
|
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
2293
|
}
|
|
2336
2294
|
},
|
|
2337
2295
|
"hasDynamicHelp": false,
|
|
2338
2296
|
"hiddenAliases": [],
|
|
2339
|
-
"id": "
|
|
2297
|
+
"id": "face:attributes",
|
|
2340
2298
|
"pluginAlias": "faces-cli",
|
|
2341
2299
|
"pluginName": "faces-cli",
|
|
2342
2300
|
"pluginType": "core",
|
|
@@ -2346,14 +2304,14 @@
|
|
|
2346
2304
|
"relativePath": [
|
|
2347
2305
|
"dist",
|
|
2348
2306
|
"commands",
|
|
2349
|
-
"
|
|
2350
|
-
"
|
|
2307
|
+
"face",
|
|
2308
|
+
"attributes.js"
|
|
2351
2309
|
]
|
|
2352
2310
|
},
|
|
2353
|
-
"
|
|
2311
|
+
"face:create": {
|
|
2354
2312
|
"aliases": [],
|
|
2355
2313
|
"args": {},
|
|
2356
|
-
"description": "
|
|
2314
|
+
"description": "Create a new face",
|
|
2357
2315
|
"flags": {
|
|
2358
2316
|
"json": {
|
|
2359
2317
|
"description": "Format output as json.",
|
|
@@ -2385,11 +2343,86 @@
|
|
|
2385
2343
|
"hasDynamicHelp": false,
|
|
2386
2344
|
"multiple": false,
|
|
2387
2345
|
"type": "option"
|
|
2346
|
+
},
|
|
2347
|
+
"name": {
|
|
2348
|
+
"description": "Display name",
|
|
2349
|
+
"name": "name",
|
|
2350
|
+
"required": true,
|
|
2351
|
+
"hasDynamicHelp": false,
|
|
2352
|
+
"multiple": false,
|
|
2353
|
+
"type": "option"
|
|
2354
|
+
},
|
|
2355
|
+
"alias": {
|
|
2356
|
+
"description": "Unique alias slug",
|
|
2357
|
+
"name": "alias",
|
|
2358
|
+
"required": true,
|
|
2359
|
+
"hasDynamicHelp": false,
|
|
2360
|
+
"multiple": false,
|
|
2361
|
+
"type": "option"
|
|
2362
|
+
},
|
|
2363
|
+
"description": {
|
|
2364
|
+
"description": "Plain-text description / bio (max 1500 chars)",
|
|
2365
|
+
"name": "description",
|
|
2366
|
+
"hasDynamicHelp": false,
|
|
2367
|
+
"multiple": false,
|
|
2368
|
+
"type": "option"
|
|
2369
|
+
},
|
|
2370
|
+
"tag": {
|
|
2371
|
+
"description": "Tag label (repeatable, lowercase)",
|
|
2372
|
+
"name": "tag",
|
|
2373
|
+
"hasDynamicHelp": false,
|
|
2374
|
+
"multiple": true,
|
|
2375
|
+
"type": "option"
|
|
2376
|
+
},
|
|
2377
|
+
"default-model": {
|
|
2378
|
+
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
2379
|
+
"name": "default-model",
|
|
2380
|
+
"hasDynamicHelp": false,
|
|
2381
|
+
"multiple": false,
|
|
2382
|
+
"type": "option"
|
|
2383
|
+
},
|
|
2384
|
+
"formula": {
|
|
2385
|
+
"description": "Boolean formula over owned concrete face aliases (e.g. \"a | b\", \"(a | b) - c\"). Creates a composite face.",
|
|
2386
|
+
"name": "formula",
|
|
2387
|
+
"hasDynamicHelp": false,
|
|
2388
|
+
"multiple": false,
|
|
2389
|
+
"type": "option"
|
|
2390
|
+
},
|
|
2391
|
+
"attr": {
|
|
2392
|
+
"description": "Attribute KEY=VALUE (repeatable)",
|
|
2393
|
+
"name": "attr",
|
|
2394
|
+
"hasDynamicHelp": false,
|
|
2395
|
+
"multiple": true,
|
|
2396
|
+
"type": "option"
|
|
2397
|
+
},
|
|
2398
|
+
"tool": {
|
|
2399
|
+
"description": "Tool name to enable (repeatable)",
|
|
2400
|
+
"name": "tool",
|
|
2401
|
+
"hasDynamicHelp": false,
|
|
2402
|
+
"multiple": true,
|
|
2403
|
+
"type": "option"
|
|
2404
|
+
},
|
|
2405
|
+
"profile-addendum": {
|
|
2406
|
+
"description": "Per-face system prompt, injected after the persona profile and before any per-request system prompt (max 100,000 chars).",
|
|
2407
|
+
"name": "profile-addendum",
|
|
2408
|
+
"hasDynamicHelp": false,
|
|
2409
|
+
"multiple": false,
|
|
2410
|
+
"type": "option"
|
|
2411
|
+
},
|
|
2412
|
+
"profile-addendum-file": {
|
|
2413
|
+
"description": "Read the per-face system prompt from a file (alternative to --profile-addendum).",
|
|
2414
|
+
"exclusive": [
|
|
2415
|
+
"profile-addendum"
|
|
2416
|
+
],
|
|
2417
|
+
"name": "profile-addendum-file",
|
|
2418
|
+
"hasDynamicHelp": false,
|
|
2419
|
+
"multiple": false,
|
|
2420
|
+
"type": "option"
|
|
2388
2421
|
}
|
|
2389
2422
|
},
|
|
2390
2423
|
"hasDynamicHelp": false,
|
|
2391
2424
|
"hiddenAliases": [],
|
|
2392
|
-
"id": "
|
|
2425
|
+
"id": "face:create",
|
|
2393
2426
|
"pluginAlias": "faces-cli",
|
|
2394
2427
|
"pluginName": "faces-cli",
|
|
2395
2428
|
"pluginType": "core",
|
|
@@ -2399,20 +2432,20 @@
|
|
|
2399
2432
|
"relativePath": [
|
|
2400
2433
|
"dist",
|
|
2401
2434
|
"commands",
|
|
2402
|
-
"
|
|
2403
|
-
"
|
|
2435
|
+
"face",
|
|
2436
|
+
"create.js"
|
|
2404
2437
|
]
|
|
2405
2438
|
},
|
|
2406
|
-
"
|
|
2439
|
+
"face:delete": {
|
|
2407
2440
|
"aliases": [],
|
|
2408
2441
|
"args": {
|
|
2409
|
-
"
|
|
2410
|
-
"description": "
|
|
2411
|
-
"name": "
|
|
2442
|
+
"face_id": {
|
|
2443
|
+
"description": "Face alias",
|
|
2444
|
+
"name": "face_id",
|
|
2412
2445
|
"required": true
|
|
2413
2446
|
}
|
|
2414
2447
|
},
|
|
2415
|
-
"description": "
|
|
2448
|
+
"description": "Delete a face permanently",
|
|
2416
2449
|
"flags": {
|
|
2417
2450
|
"json": {
|
|
2418
2451
|
"description": "Format output as json.",
|
|
@@ -2454,7 +2487,7 @@
|
|
|
2454
2487
|
},
|
|
2455
2488
|
"hasDynamicHelp": false,
|
|
2456
2489
|
"hiddenAliases": [],
|
|
2457
|
-
"id": "
|
|
2490
|
+
"id": "face:delete",
|
|
2458
2491
|
"pluginAlias": "faces-cli",
|
|
2459
2492
|
"pluginName": "faces-cli",
|
|
2460
2493
|
"pluginType": "core",
|
|
@@ -2464,20 +2497,14 @@
|
|
|
2464
2497
|
"relativePath": [
|
|
2465
2498
|
"dist",
|
|
2466
2499
|
"commands",
|
|
2467
|
-
"
|
|
2468
|
-
"
|
|
2500
|
+
"face",
|
|
2501
|
+
"delete.js"
|
|
2469
2502
|
]
|
|
2470
2503
|
},
|
|
2471
|
-
"
|
|
2504
|
+
"face:diff": {
|
|
2472
2505
|
"aliases": [],
|
|
2473
|
-
"args": {
|
|
2474
|
-
|
|
2475
|
-
"description": "Key ID",
|
|
2476
|
-
"name": "key_id",
|
|
2477
|
-
"required": true
|
|
2478
|
-
}
|
|
2479
|
-
},
|
|
2480
|
-
"description": "Update API key metadata (JWT required)",
|
|
2506
|
+
"args": {},
|
|
2507
|
+
"description": "Compare owned faces pairwise across all centroid components",
|
|
2481
2508
|
"flags": {
|
|
2482
2509
|
"json": {
|
|
2483
2510
|
"description": "Format output as json.",
|
|
@@ -2510,30 +2537,18 @@
|
|
|
2510
2537
|
"multiple": false,
|
|
2511
2538
|
"type": "option"
|
|
2512
2539
|
},
|
|
2513
|
-
"
|
|
2514
|
-
"description": "
|
|
2515
|
-
"name": "
|
|
2516
|
-
"
|
|
2517
|
-
"multiple": false,
|
|
2518
|
-
"type": "option"
|
|
2519
|
-
},
|
|
2520
|
-
"budget": {
|
|
2521
|
-
"description": "New spend budget in USD",
|
|
2522
|
-
"name": "budget",
|
|
2540
|
+
"face": {
|
|
2541
|
+
"description": "Face alias to include (repeatable, min 2)",
|
|
2542
|
+
"name": "face",
|
|
2543
|
+
"required": true,
|
|
2523
2544
|
"hasDynamicHelp": false,
|
|
2524
|
-
"multiple":
|
|
2545
|
+
"multiple": true,
|
|
2525
2546
|
"type": "option"
|
|
2526
|
-
},
|
|
2527
|
-
"reset-spent": {
|
|
2528
|
-
"description": "Reset spent amount to zero",
|
|
2529
|
-
"name": "reset-spent",
|
|
2530
|
-
"allowNo": false,
|
|
2531
|
-
"type": "boolean"
|
|
2532
2547
|
}
|
|
2533
2548
|
},
|
|
2534
2549
|
"hasDynamicHelp": false,
|
|
2535
2550
|
"hiddenAliases": [],
|
|
2536
|
-
"id": "
|
|
2551
|
+
"id": "face:diff",
|
|
2537
2552
|
"pluginAlias": "faces-cli",
|
|
2538
2553
|
"pluginName": "faces-cli",
|
|
2539
2554
|
"pluginType": "core",
|
|
@@ -2543,67 +2558,20 @@
|
|
|
2543
2558
|
"relativePath": [
|
|
2544
2559
|
"dist",
|
|
2545
2560
|
"commands",
|
|
2546
|
-
"
|
|
2547
|
-
"
|
|
2561
|
+
"face",
|
|
2562
|
+
"diff.js"
|
|
2548
2563
|
]
|
|
2549
2564
|
},
|
|
2550
|
-
"face:
|
|
2565
|
+
"face:edit": {
|
|
2551
2566
|
"aliases": [],
|
|
2552
|
-
"args": {
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
"
|
|
2557
|
-
"helpGroup": "GLOBAL",
|
|
2558
|
-
"name": "json",
|
|
2559
|
-
"allowNo": false,
|
|
2560
|
-
"type": "boolean"
|
|
2561
|
-
},
|
|
2562
|
-
"base-url": {
|
|
2563
|
-
"description": "API base URL",
|
|
2564
|
-
"env": "FACES_BASE_URL",
|
|
2565
|
-
"name": "base-url",
|
|
2566
|
-
"hasDynamicHelp": false,
|
|
2567
|
-
"multiple": false,
|
|
2568
|
-
"type": "option"
|
|
2569
|
-
},
|
|
2570
|
-
"token": {
|
|
2571
|
-
"description": "JWT bearer token",
|
|
2572
|
-
"env": "FACES_TOKEN",
|
|
2573
|
-
"name": "token",
|
|
2574
|
-
"hasDynamicHelp": false,
|
|
2575
|
-
"multiple": false,
|
|
2576
|
-
"type": "option"
|
|
2577
|
-
},
|
|
2578
|
-
"api-key": {
|
|
2579
|
-
"description": "API key",
|
|
2580
|
-
"env": "FACES_API_KEY",
|
|
2581
|
-
"name": "api-key",
|
|
2582
|
-
"hasDynamicHelp": false,
|
|
2583
|
-
"multiple": false,
|
|
2584
|
-
"type": "option"
|
|
2567
|
+
"args": {
|
|
2568
|
+
"face_id": {
|
|
2569
|
+
"description": "Face alias",
|
|
2570
|
+
"name": "face_id",
|
|
2571
|
+
"required": true
|
|
2585
2572
|
}
|
|
2586
2573
|
},
|
|
2587
|
-
"
|
|
2588
|
-
"hiddenAliases": [],
|
|
2589
|
-
"id": "face:attributes",
|
|
2590
|
-
"pluginAlias": "faces-cli",
|
|
2591
|
-
"pluginName": "faces-cli",
|
|
2592
|
-
"pluginType": "core",
|
|
2593
|
-
"strict": true,
|
|
2594
|
-
"enableJsonFlag": true,
|
|
2595
|
-
"isESM": true,
|
|
2596
|
-
"relativePath": [
|
|
2597
|
-
"dist",
|
|
2598
|
-
"commands",
|
|
2599
|
-
"face",
|
|
2600
|
-
"attributes.js"
|
|
2601
|
-
]
|
|
2602
|
-
},
|
|
2603
|
-
"face:create": {
|
|
2604
|
-
"aliases": [],
|
|
2605
|
-
"args": {},
|
|
2606
|
-
"description": "Create a new face",
|
|
2574
|
+
"description": "Edit a face's metadata",
|
|
2607
2575
|
"flags": {
|
|
2608
2576
|
"json": {
|
|
2609
2577
|
"description": "Format output as json.",
|
|
@@ -2637,17 +2605,8 @@
|
|
|
2637
2605
|
"type": "option"
|
|
2638
2606
|
},
|
|
2639
2607
|
"name": {
|
|
2640
|
-
"description": "
|
|
2608
|
+
"description": "New display name",
|
|
2641
2609
|
"name": "name",
|
|
2642
|
-
"required": true,
|
|
2643
|
-
"hasDynamicHelp": false,
|
|
2644
|
-
"multiple": false,
|
|
2645
|
-
"type": "option"
|
|
2646
|
-
},
|
|
2647
|
-
"alias": {
|
|
2648
|
-
"description": "Unique alias slug",
|
|
2649
|
-
"name": "alias",
|
|
2650
|
-
"required": true,
|
|
2651
2610
|
"hasDynamicHelp": false,
|
|
2652
2611
|
"multiple": false,
|
|
2653
2612
|
"type": "option"
|
|
@@ -2660,7 +2619,7 @@
|
|
|
2660
2619
|
"type": "option"
|
|
2661
2620
|
},
|
|
2662
2621
|
"tag": {
|
|
2663
|
-
"description": "
|
|
2622
|
+
"description": "Replace all tags (repeatable, lowercase)",
|
|
2664
2623
|
"name": "tag",
|
|
2665
2624
|
"hasDynamicHelp": false,
|
|
2666
2625
|
"multiple": true,
|
|
@@ -2674,35 +2633,35 @@
|
|
|
2674
2633
|
"type": "option"
|
|
2675
2634
|
},
|
|
2676
2635
|
"formula": {
|
|
2677
|
-
"description": "
|
|
2636
|
+
"description": "New boolean formula (synthetic faces only)",
|
|
2678
2637
|
"name": "formula",
|
|
2679
2638
|
"hasDynamicHelp": false,
|
|
2680
2639
|
"multiple": false,
|
|
2681
2640
|
"type": "option"
|
|
2682
2641
|
},
|
|
2683
2642
|
"attr": {
|
|
2684
|
-
"description": "
|
|
2643
|
+
"description": "Update attribute KEY=VALUE (repeatable)",
|
|
2685
2644
|
"name": "attr",
|
|
2686
2645
|
"hasDynamicHelp": false,
|
|
2687
2646
|
"multiple": true,
|
|
2688
2647
|
"type": "option"
|
|
2689
2648
|
},
|
|
2690
2649
|
"tool": {
|
|
2691
|
-
"description": "Tool
|
|
2650
|
+
"description": "Tool names to set (replaces list, repeatable)",
|
|
2692
2651
|
"name": "tool",
|
|
2693
2652
|
"hasDynamicHelp": false,
|
|
2694
2653
|
"multiple": true,
|
|
2695
2654
|
"type": "option"
|
|
2696
2655
|
},
|
|
2697
2656
|
"profile-addendum": {
|
|
2698
|
-
"description": "
|
|
2657
|
+
"description": "Replace the per-face system prompt (max 100,000 chars).",
|
|
2699
2658
|
"name": "profile-addendum",
|
|
2700
2659
|
"hasDynamicHelp": false,
|
|
2701
2660
|
"multiple": false,
|
|
2702
2661
|
"type": "option"
|
|
2703
2662
|
},
|
|
2704
2663
|
"profile-addendum-file": {
|
|
2705
|
-
"description": "
|
|
2664
|
+
"description": "Replace the per-face system prompt from a file.",
|
|
2706
2665
|
"exclusive": [
|
|
2707
2666
|
"profile-addendum"
|
|
2708
2667
|
],
|
|
@@ -2710,11 +2669,21 @@
|
|
|
2710
2669
|
"hasDynamicHelp": false,
|
|
2711
2670
|
"multiple": false,
|
|
2712
2671
|
"type": "option"
|
|
2672
|
+
},
|
|
2673
|
+
"clear-profile-addendum": {
|
|
2674
|
+
"description": "Remove the per-face system prompt.",
|
|
2675
|
+
"exclusive": [
|
|
2676
|
+
"profile-addendum",
|
|
2677
|
+
"profile-addendum-file"
|
|
2678
|
+
],
|
|
2679
|
+
"name": "clear-profile-addendum",
|
|
2680
|
+
"allowNo": false,
|
|
2681
|
+
"type": "boolean"
|
|
2713
2682
|
}
|
|
2714
2683
|
},
|
|
2715
2684
|
"hasDynamicHelp": false,
|
|
2716
2685
|
"hiddenAliases": [],
|
|
2717
|
-
"id": "face:
|
|
2686
|
+
"id": "face:edit",
|
|
2718
2687
|
"pluginAlias": "faces-cli",
|
|
2719
2688
|
"pluginName": "faces-cli",
|
|
2720
2689
|
"pluginType": "core",
|
|
@@ -2725,10 +2694,10 @@
|
|
|
2725
2694
|
"dist",
|
|
2726
2695
|
"commands",
|
|
2727
2696
|
"face",
|
|
2728
|
-
"
|
|
2697
|
+
"edit.js"
|
|
2729
2698
|
]
|
|
2730
2699
|
},
|
|
2731
|
-
"face:
|
|
2700
|
+
"face:get": {
|
|
2732
2701
|
"aliases": [],
|
|
2733
2702
|
"args": {
|
|
2734
2703
|
"face_id": {
|
|
@@ -2737,7 +2706,7 @@
|
|
|
2737
2706
|
"required": true
|
|
2738
2707
|
}
|
|
2739
2708
|
},
|
|
2740
|
-
"description": "
|
|
2709
|
+
"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.",
|
|
2741
2710
|
"flags": {
|
|
2742
2711
|
"json": {
|
|
2743
2712
|
"description": "Format output as json.",
|
|
@@ -2770,16 +2739,23 @@
|
|
|
2770
2739
|
"multiple": false,
|
|
2771
2740
|
"type": "option"
|
|
2772
2741
|
},
|
|
2773
|
-
"
|
|
2774
|
-
"description": "
|
|
2775
|
-
"name": "
|
|
2742
|
+
"include": {
|
|
2743
|
+
"description": "Include extra fields: tags, teams (comma-separated)",
|
|
2744
|
+
"name": "include",
|
|
2745
|
+
"hasDynamicHelp": false,
|
|
2746
|
+
"multiple": false,
|
|
2747
|
+
"type": "option"
|
|
2748
|
+
},
|
|
2749
|
+
"full": {
|
|
2750
|
+
"description": "Print the full profile_addendum instead of a truncated preview",
|
|
2751
|
+
"name": "full",
|
|
2776
2752
|
"allowNo": false,
|
|
2777
2753
|
"type": "boolean"
|
|
2778
2754
|
}
|
|
2779
2755
|
},
|
|
2780
2756
|
"hasDynamicHelp": false,
|
|
2781
2757
|
"hiddenAliases": [],
|
|
2782
|
-
"id": "face:
|
|
2758
|
+
"id": "face:get",
|
|
2783
2759
|
"pluginAlias": "faces-cli",
|
|
2784
2760
|
"pluginName": "faces-cli",
|
|
2785
2761
|
"pluginType": "core",
|
|
@@ -2790,13 +2766,13 @@
|
|
|
2790
2766
|
"dist",
|
|
2791
2767
|
"commands",
|
|
2792
2768
|
"face",
|
|
2793
|
-
"
|
|
2769
|
+
"get.js"
|
|
2794
2770
|
]
|
|
2795
2771
|
},
|
|
2796
|
-
"face:
|
|
2772
|
+
"face:list": {
|
|
2797
2773
|
"aliases": [],
|
|
2798
2774
|
"args": {},
|
|
2799
|
-
"description": "
|
|
2775
|
+
"description": "List faces. By default lists owned faces; use --public to include published faces from other accounts.",
|
|
2800
2776
|
"flags": {
|
|
2801
2777
|
"json": {
|
|
2802
2778
|
"description": "Format output as json.",
|
|
@@ -2829,10 +2805,61 @@
|
|
|
2829
2805
|
"multiple": false,
|
|
2830
2806
|
"type": "option"
|
|
2831
2807
|
},
|
|
2832
|
-
"
|
|
2833
|
-
"description": "
|
|
2834
|
-
"name": "
|
|
2835
|
-
"
|
|
2808
|
+
"tag": {
|
|
2809
|
+
"description": "Filter by tag (repeatable, AND logic)",
|
|
2810
|
+
"name": "tag",
|
|
2811
|
+
"hasDynamicHelp": false,
|
|
2812
|
+
"multiple": true,
|
|
2813
|
+
"type": "option"
|
|
2814
|
+
},
|
|
2815
|
+
"team": {
|
|
2816
|
+
"description": "Filter by team ID (repeatable, OR logic)",
|
|
2817
|
+
"name": "team",
|
|
2818
|
+
"hasDynamicHelp": false,
|
|
2819
|
+
"multiple": true,
|
|
2820
|
+
"type": "option"
|
|
2821
|
+
},
|
|
2822
|
+
"include": {
|
|
2823
|
+
"description": "Include extra fields: tags, teams (comma-separated)",
|
|
2824
|
+
"name": "include",
|
|
2825
|
+
"hasDynamicHelp": false,
|
|
2826
|
+
"multiple": false,
|
|
2827
|
+
"type": "option"
|
|
2828
|
+
},
|
|
2829
|
+
"public": {
|
|
2830
|
+
"description": "Include published faces from other accounts (open to everybody)",
|
|
2831
|
+
"name": "public",
|
|
2832
|
+
"allowNo": false,
|
|
2833
|
+
"type": "boolean"
|
|
2834
|
+
},
|
|
2835
|
+
"has-style": {
|
|
2836
|
+
"description": "Show only faces with a captured style (the ones that write in their own voice)",
|
|
2837
|
+
"name": "has-style",
|
|
2838
|
+
"allowNo": false,
|
|
2839
|
+
"type": "boolean"
|
|
2840
|
+
},
|
|
2841
|
+
"shared": {
|
|
2842
|
+
"description": "Include faces other accounts have shared with YOU in particular",
|
|
2843
|
+
"name": "shared",
|
|
2844
|
+
"allowNo": false,
|
|
2845
|
+
"type": "boolean"
|
|
2846
|
+
},
|
|
2847
|
+
"system": {
|
|
2848
|
+
"description": "Show only the curated system faces (published faces owned by 'head')",
|
|
2849
|
+
"name": "system",
|
|
2850
|
+
"allowNo": false,
|
|
2851
|
+
"type": "boolean"
|
|
2852
|
+
},
|
|
2853
|
+
"from-users": {
|
|
2854
|
+
"description": "Only published faces from these owners (repeatable/comma-separated)",
|
|
2855
|
+
"name": "from-users",
|
|
2856
|
+
"hasDynamicHelp": false,
|
|
2857
|
+
"multiple": true,
|
|
2858
|
+
"type": "option"
|
|
2859
|
+
},
|
|
2860
|
+
"not-from-users": {
|
|
2861
|
+
"description": "Exclude published faces from these owners (repeatable/comma-separated)",
|
|
2862
|
+
"name": "not-from-users",
|
|
2836
2863
|
"hasDynamicHelp": false,
|
|
2837
2864
|
"multiple": true,
|
|
2838
2865
|
"type": "option"
|
|
@@ -2840,7 +2867,7 @@
|
|
|
2840
2867
|
},
|
|
2841
2868
|
"hasDynamicHelp": false,
|
|
2842
2869
|
"hiddenAliases": [],
|
|
2843
|
-
"id": "face:
|
|
2870
|
+
"id": "face:list",
|
|
2844
2871
|
"pluginAlias": "faces-cli",
|
|
2845
2872
|
"pluginName": "faces-cli",
|
|
2846
2873
|
"pluginType": "core",
|
|
@@ -2851,10 +2878,10 @@
|
|
|
2851
2878
|
"dist",
|
|
2852
2879
|
"commands",
|
|
2853
2880
|
"face",
|
|
2854
|
-
"
|
|
2881
|
+
"list.js"
|
|
2855
2882
|
]
|
|
2856
2883
|
},
|
|
2857
|
-
"face:
|
|
2884
|
+
"face:lock": {
|
|
2858
2885
|
"aliases": [],
|
|
2859
2886
|
"args": {
|
|
2860
2887
|
"face_id": {
|
|
@@ -2863,7 +2890,10 @@
|
|
|
2863
2890
|
"required": true
|
|
2864
2891
|
}
|
|
2865
2892
|
},
|
|
2866
|
-
"description": "
|
|
2893
|
+
"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.",
|
|
2894
|
+
"examples": [
|
|
2895
|
+
"<%= config.bin %> <%= command.id %> socrates"
|
|
2896
|
+
],
|
|
2867
2897
|
"flags": {
|
|
2868
2898
|
"json": {
|
|
2869
2899
|
"description": "Format output as json.",
|
|
@@ -2895,87 +2925,98 @@
|
|
|
2895
2925
|
"hasDynamicHelp": false,
|
|
2896
2926
|
"multiple": false,
|
|
2897
2927
|
"type": "option"
|
|
2928
|
+
}
|
|
2929
|
+
},
|
|
2930
|
+
"hasDynamicHelp": false,
|
|
2931
|
+
"hiddenAliases": [],
|
|
2932
|
+
"id": "face:lock",
|
|
2933
|
+
"pluginAlias": "faces-cli",
|
|
2934
|
+
"pluginName": "faces-cli",
|
|
2935
|
+
"pluginType": "core",
|
|
2936
|
+
"strict": true,
|
|
2937
|
+
"enableJsonFlag": true,
|
|
2938
|
+
"isESM": true,
|
|
2939
|
+
"relativePath": [
|
|
2940
|
+
"dist",
|
|
2941
|
+
"commands",
|
|
2942
|
+
"face",
|
|
2943
|
+
"lock.js"
|
|
2944
|
+
]
|
|
2945
|
+
},
|
|
2946
|
+
"face:neighbors": {
|
|
2947
|
+
"aliases": [],
|
|
2948
|
+
"args": {
|
|
2949
|
+
"face_id": {
|
|
2950
|
+
"description": "Face alias",
|
|
2951
|
+
"name": "face_id",
|
|
2952
|
+
"required": true
|
|
2953
|
+
}
|
|
2954
|
+
},
|
|
2955
|
+
"description": "Find the most similar or dissimilar owned faces to a given face",
|
|
2956
|
+
"flags": {
|
|
2957
|
+
"json": {
|
|
2958
|
+
"description": "Format output as json.",
|
|
2959
|
+
"helpGroup": "GLOBAL",
|
|
2960
|
+
"name": "json",
|
|
2961
|
+
"allowNo": false,
|
|
2962
|
+
"type": "boolean"
|
|
2898
2963
|
},
|
|
2899
|
-
"
|
|
2900
|
-
"description": "
|
|
2901
|
-
"
|
|
2902
|
-
"
|
|
2903
|
-
"multiple": false,
|
|
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",
|
|
2964
|
+
"base-url": {
|
|
2965
|
+
"description": "API base URL",
|
|
2966
|
+
"env": "FACES_BASE_URL",
|
|
2967
|
+
"name": "base-url",
|
|
2930
2968
|
"hasDynamicHelp": false,
|
|
2931
2969
|
"multiple": false,
|
|
2932
2970
|
"type": "option"
|
|
2933
2971
|
},
|
|
2934
|
-
"
|
|
2935
|
-
"description": "
|
|
2936
|
-
"
|
|
2972
|
+
"token": {
|
|
2973
|
+
"description": "JWT bearer token",
|
|
2974
|
+
"env": "FACES_TOKEN",
|
|
2975
|
+
"name": "token",
|
|
2937
2976
|
"hasDynamicHelp": false,
|
|
2938
|
-
"multiple":
|
|
2977
|
+
"multiple": false,
|
|
2939
2978
|
"type": "option"
|
|
2940
2979
|
},
|
|
2941
|
-
"
|
|
2942
|
-
"description": "
|
|
2943
|
-
"
|
|
2980
|
+
"api-key": {
|
|
2981
|
+
"description": "API key",
|
|
2982
|
+
"env": "FACES_API_KEY",
|
|
2983
|
+
"name": "api-key",
|
|
2944
2984
|
"hasDynamicHelp": false,
|
|
2945
|
-
"multiple":
|
|
2985
|
+
"multiple": false,
|
|
2946
2986
|
"type": "option"
|
|
2947
2987
|
},
|
|
2948
|
-
"
|
|
2949
|
-
"description": "
|
|
2950
|
-
"name": "
|
|
2988
|
+
"k": {
|
|
2989
|
+
"description": "Number of results (1-20)",
|
|
2990
|
+
"name": "k",
|
|
2991
|
+
"default": 5,
|
|
2951
2992
|
"hasDynamicHelp": false,
|
|
2952
2993
|
"multiple": false,
|
|
2953
2994
|
"type": "option"
|
|
2954
2995
|
},
|
|
2955
|
-
"
|
|
2956
|
-
"description": "
|
|
2957
|
-
"
|
|
2958
|
-
|
|
2959
|
-
],
|
|
2960
|
-
"name": "profile-addendum-file",
|
|
2996
|
+
"component": {
|
|
2997
|
+
"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.",
|
|
2998
|
+
"name": "component",
|
|
2999
|
+
"default": "face",
|
|
2961
3000
|
"hasDynamicHelp": false,
|
|
2962
3001
|
"multiple": false,
|
|
2963
3002
|
"type": "option"
|
|
2964
3003
|
},
|
|
2965
|
-
"
|
|
2966
|
-
"description": "
|
|
2967
|
-
"
|
|
2968
|
-
|
|
2969
|
-
|
|
3004
|
+
"direction": {
|
|
3005
|
+
"description": "nearest (most similar) or furthest (most dissimilar)",
|
|
3006
|
+
"name": "direction",
|
|
3007
|
+
"default": "nearest",
|
|
3008
|
+
"hasDynamicHelp": false,
|
|
3009
|
+
"multiple": false,
|
|
3010
|
+
"options": [
|
|
3011
|
+
"nearest",
|
|
3012
|
+
"furthest"
|
|
2970
3013
|
],
|
|
2971
|
-
"
|
|
2972
|
-
"allowNo": false,
|
|
2973
|
-
"type": "boolean"
|
|
3014
|
+
"type": "option"
|
|
2974
3015
|
}
|
|
2975
3016
|
},
|
|
2976
3017
|
"hasDynamicHelp": false,
|
|
2977
3018
|
"hiddenAliases": [],
|
|
2978
|
-
"id": "face:
|
|
3019
|
+
"id": "face:neighbors",
|
|
2979
3020
|
"pluginAlias": "faces-cli",
|
|
2980
3021
|
"pluginName": "faces-cli",
|
|
2981
3022
|
"pluginType": "core",
|
|
@@ -2986,19 +3027,22 @@
|
|
|
2986
3027
|
"dist",
|
|
2987
3028
|
"commands",
|
|
2988
3029
|
"face",
|
|
2989
|
-
"
|
|
3030
|
+
"neighbors.js"
|
|
2990
3031
|
]
|
|
2991
3032
|
},
|
|
2992
|
-
"face:
|
|
3033
|
+
"face:publish": {
|
|
2993
3034
|
"aliases": [],
|
|
2994
3035
|
"args": {
|
|
2995
|
-
"
|
|
3036
|
+
"alias": {
|
|
2996
3037
|
"description": "Face alias",
|
|
2997
|
-
"name": "
|
|
3038
|
+
"name": "alias",
|
|
2998
3039
|
"required": true
|
|
2999
3040
|
}
|
|
3000
3041
|
},
|
|
3001
|
-
"description": "
|
|
3042
|
+
"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.",
|
|
3043
|
+
"examples": [
|
|
3044
|
+
"<%= config.bin %> <%= command.id %> alice --yes"
|
|
3045
|
+
],
|
|
3002
3046
|
"flags": {
|
|
3003
3047
|
"json": {
|
|
3004
3048
|
"description": "Format output as json.",
|
|
@@ -3031,23 +3075,16 @@
|
|
|
3031
3075
|
"multiple": false,
|
|
3032
3076
|
"type": "option"
|
|
3033
3077
|
},
|
|
3034
|
-
"
|
|
3035
|
-
"description": "
|
|
3036
|
-
"name": "
|
|
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",
|
|
3078
|
+
"yes": {
|
|
3079
|
+
"description": "Skip confirmation",
|
|
3080
|
+
"name": "yes",
|
|
3044
3081
|
"allowNo": false,
|
|
3045
3082
|
"type": "boolean"
|
|
3046
3083
|
}
|
|
3047
3084
|
},
|
|
3048
3085
|
"hasDynamicHelp": false,
|
|
3049
3086
|
"hiddenAliases": [],
|
|
3050
|
-
"id": "face:
|
|
3087
|
+
"id": "face:publish",
|
|
3051
3088
|
"pluginAlias": "faces-cli",
|
|
3052
3089
|
"pluginName": "faces-cli",
|
|
3053
3090
|
"pluginType": "core",
|
|
@@ -3058,13 +3095,25 @@
|
|
|
3058
3095
|
"dist",
|
|
3059
3096
|
"commands",
|
|
3060
3097
|
"face",
|
|
3061
|
-
"
|
|
3098
|
+
"publish.js"
|
|
3062
3099
|
]
|
|
3063
3100
|
},
|
|
3064
|
-
"face:
|
|
3101
|
+
"face:share": {
|
|
3065
3102
|
"aliases": [],
|
|
3066
|
-
"args": {
|
|
3067
|
-
|
|
3103
|
+
"args": {
|
|
3104
|
+
"alias": {
|
|
3105
|
+
"description": "Face alias",
|
|
3106
|
+
"name": "alias",
|
|
3107
|
+
"required": true
|
|
3108
|
+
}
|
|
3109
|
+
},
|
|
3110
|
+
"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.",
|
|
3111
|
+
"examples": [
|
|
3112
|
+
"<%= config.bin %> <%= command.id %> alice --list",
|
|
3113
|
+
"<%= config.bin %> <%= command.id %> alice --add dana",
|
|
3114
|
+
"<%= config.bin %> <%= command.id %> alice --with dana --with sam@example.com",
|
|
3115
|
+
"<%= config.bin %> <%= command.id %> alice --none --yes"
|
|
3116
|
+
],
|
|
3068
3117
|
"flags": {
|
|
3069
3118
|
"json": {
|
|
3070
3119
|
"description": "Format output as json.",
|
|
@@ -3097,63 +3146,54 @@
|
|
|
3097
3146
|
"multiple": false,
|
|
3098
3147
|
"type": "option"
|
|
3099
3148
|
},
|
|
3100
|
-
"
|
|
3101
|
-
"description": "
|
|
3102
|
-
"name": "
|
|
3103
|
-
"
|
|
3104
|
-
"
|
|
3105
|
-
"type": "option"
|
|
3149
|
+
"list": {
|
|
3150
|
+
"description": "Show who the face is shared with, and change nothing",
|
|
3151
|
+
"name": "list",
|
|
3152
|
+
"allowNo": false,
|
|
3153
|
+
"type": "boolean"
|
|
3106
3154
|
},
|
|
3107
|
-
"
|
|
3108
|
-
"description": "
|
|
3109
|
-
"
|
|
3155
|
+
"add": {
|
|
3156
|
+
"description": "Add an account, keeping everyone already on the list. Username or email (repeatable)",
|
|
3157
|
+
"exclusive": [
|
|
3158
|
+
"with",
|
|
3159
|
+
"none"
|
|
3160
|
+
],
|
|
3161
|
+
"name": "add",
|
|
3110
3162
|
"hasDynamicHelp": false,
|
|
3111
3163
|
"multiple": true,
|
|
3112
3164
|
"type": "option"
|
|
3113
3165
|
},
|
|
3114
|
-
"
|
|
3115
|
-
"description": "
|
|
3116
|
-
"
|
|
3166
|
+
"with": {
|
|
3167
|
+
"description": "Set the list to exactly these accounts, dropping anyone else (repeatable)",
|
|
3168
|
+
"exclusive": [
|
|
3169
|
+
"add",
|
|
3170
|
+
"none"
|
|
3171
|
+
],
|
|
3172
|
+
"name": "with",
|
|
3117
3173
|
"hasDynamicHelp": false,
|
|
3118
|
-
"multiple":
|
|
3174
|
+
"multiple": true,
|
|
3119
3175
|
"type": "option"
|
|
3120
3176
|
},
|
|
3121
|
-
"
|
|
3122
|
-
"description": "
|
|
3123
|
-
"
|
|
3124
|
-
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
|
|
3128
|
-
"description": "Include faces other accounts have shared with YOU in particular",
|
|
3129
|
-
"name": "shared",
|
|
3177
|
+
"none": {
|
|
3178
|
+
"description": "Revoke everyone",
|
|
3179
|
+
"exclusive": [
|
|
3180
|
+
"add",
|
|
3181
|
+
"with"
|
|
3182
|
+
],
|
|
3183
|
+
"name": "none",
|
|
3130
3184
|
"allowNo": false,
|
|
3131
3185
|
"type": "boolean"
|
|
3132
3186
|
},
|
|
3133
|
-
"
|
|
3134
|
-
"description": "
|
|
3135
|
-
"name": "
|
|
3187
|
+
"yes": {
|
|
3188
|
+
"description": "Skip the confirmation shown when someone would lose access",
|
|
3189
|
+
"name": "yes",
|
|
3136
3190
|
"allowNo": false,
|
|
3137
3191
|
"type": "boolean"
|
|
3138
|
-
},
|
|
3139
|
-
"from-users": {
|
|
3140
|
-
"description": "Only published faces from these owners (repeatable/comma-separated)",
|
|
3141
|
-
"name": "from-users",
|
|
3142
|
-
"hasDynamicHelp": false,
|
|
3143
|
-
"multiple": true,
|
|
3144
|
-
"type": "option"
|
|
3145
|
-
},
|
|
3146
|
-
"not-from-users": {
|
|
3147
|
-
"description": "Exclude published faces from these owners (repeatable/comma-separated)",
|
|
3148
|
-
"name": "not-from-users",
|
|
3149
|
-
"hasDynamicHelp": false,
|
|
3150
|
-
"multiple": true,
|
|
3151
|
-
"type": "option"
|
|
3152
3192
|
}
|
|
3153
3193
|
},
|
|
3154
3194
|
"hasDynamicHelp": false,
|
|
3155
3195
|
"hiddenAliases": [],
|
|
3156
|
-
"id": "face:
|
|
3196
|
+
"id": "face:share",
|
|
3157
3197
|
"pluginAlias": "faces-cli",
|
|
3158
3198
|
"pluginName": "faces-cli",
|
|
3159
3199
|
"pluginType": "core",
|
|
@@ -3164,21 +3204,23 @@
|
|
|
3164
3204
|
"dist",
|
|
3165
3205
|
"commands",
|
|
3166
3206
|
"face",
|
|
3167
|
-
"
|
|
3207
|
+
"share.js"
|
|
3168
3208
|
]
|
|
3169
3209
|
},
|
|
3170
|
-
"face:
|
|
3210
|
+
"face:sources": {
|
|
3171
3211
|
"aliases": [],
|
|
3172
3212
|
"args": {
|
|
3173
|
-
"
|
|
3213
|
+
"alias": {
|
|
3174
3214
|
"description": "Face alias",
|
|
3175
|
-
"name": "
|
|
3215
|
+
"name": "alias",
|
|
3176
3216
|
"required": true
|
|
3177
3217
|
}
|
|
3178
3218
|
},
|
|
3179
|
-
"description": "
|
|
3219
|
+
"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.",
|
|
3180
3220
|
"examples": [
|
|
3181
|
-
"<%= config.bin %> <%= command.id %>
|
|
3221
|
+
"<%= config.bin %> <%= command.id %> alice",
|
|
3222
|
+
"<%= config.bin %> <%= command.id %> alice --type thread",
|
|
3223
|
+
"<%= config.bin %> <%= command.id %> alice --json"
|
|
3182
3224
|
],
|
|
3183
3225
|
"flags": {
|
|
3184
3226
|
"json": {
|
|
@@ -3211,11 +3253,22 @@
|
|
|
3211
3253
|
"hasDynamicHelp": false,
|
|
3212
3254
|
"multiple": false,
|
|
3213
3255
|
"type": "option"
|
|
3256
|
+
},
|
|
3257
|
+
"type": {
|
|
3258
|
+
"description": "Show only one kind of source",
|
|
3259
|
+
"name": "type",
|
|
3260
|
+
"hasDynamicHelp": false,
|
|
3261
|
+
"multiple": false,
|
|
3262
|
+
"options": [
|
|
3263
|
+
"doc",
|
|
3264
|
+
"thread"
|
|
3265
|
+
],
|
|
3266
|
+
"type": "option"
|
|
3214
3267
|
}
|
|
3215
3268
|
},
|
|
3216
3269
|
"hasDynamicHelp": false,
|
|
3217
3270
|
"hiddenAliases": [],
|
|
3218
|
-
"id": "face:
|
|
3271
|
+
"id": "face:sources",
|
|
3219
3272
|
"pluginAlias": "faces-cli",
|
|
3220
3273
|
"pluginName": "faces-cli",
|
|
3221
3274
|
"pluginType": "core",
|
|
@@ -3226,19 +3279,13 @@
|
|
|
3226
3279
|
"dist",
|
|
3227
3280
|
"commands",
|
|
3228
3281
|
"face",
|
|
3229
|
-
"
|
|
3282
|
+
"sources.js"
|
|
3230
3283
|
]
|
|
3231
3284
|
},
|
|
3232
|
-
"face:
|
|
3285
|
+
"face:stats": {
|
|
3233
3286
|
"aliases": [],
|
|
3234
|
-
"args": {
|
|
3235
|
-
|
|
3236
|
-
"description": "Face alias",
|
|
3237
|
-
"name": "face_id",
|
|
3238
|
-
"required": true
|
|
3239
|
-
}
|
|
3240
|
-
},
|
|
3241
|
-
"description": "Find the most similar or dissimilar owned faces to a given face",
|
|
3287
|
+
"args": {},
|
|
3288
|
+
"description": "Compile and chat stats for all owned faces",
|
|
3242
3289
|
"flags": {
|
|
3243
3290
|
"json": {
|
|
3244
3291
|
"description": "Format output as json.",
|
|
@@ -3270,39 +3317,11 @@
|
|
|
3270
3317
|
"hasDynamicHelp": false,
|
|
3271
3318
|
"multiple": false,
|
|
3272
3319
|
"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"
|
|
3301
3320
|
}
|
|
3302
3321
|
},
|
|
3303
3322
|
"hasDynamicHelp": false,
|
|
3304
3323
|
"hiddenAliases": [],
|
|
3305
|
-
"id": "face:
|
|
3324
|
+
"id": "face:stats",
|
|
3306
3325
|
"pluginAlias": "faces-cli",
|
|
3307
3326
|
"pluginName": "faces-cli",
|
|
3308
3327
|
"pluginType": "core",
|
|
@@ -3313,10 +3332,10 @@
|
|
|
3313
3332
|
"dist",
|
|
3314
3333
|
"commands",
|
|
3315
3334
|
"face",
|
|
3316
|
-
"
|
|
3335
|
+
"stats.js"
|
|
3317
3336
|
]
|
|
3318
3337
|
},
|
|
3319
|
-
"face:
|
|
3338
|
+
"face:teams": {
|
|
3320
3339
|
"aliases": [],
|
|
3321
3340
|
"args": {
|
|
3322
3341
|
"alias": {
|
|
@@ -3325,10 +3344,7 @@
|
|
|
3325
3344
|
"required": true
|
|
3326
3345
|
}
|
|
3327
3346
|
},
|
|
3328
|
-
"description": "
|
|
3329
|
-
"examples": [
|
|
3330
|
-
"<%= config.bin %> <%= command.id %> alice --yes"
|
|
3331
|
-
],
|
|
3347
|
+
"description": "Set a face's team memberships (replaces all)",
|
|
3332
3348
|
"flags": {
|
|
3333
3349
|
"json": {
|
|
3334
3350
|
"description": "Format output as json.",
|
|
@@ -3361,16 +3377,18 @@
|
|
|
3361
3377
|
"multiple": false,
|
|
3362
3378
|
"type": "option"
|
|
3363
3379
|
},
|
|
3364
|
-
"
|
|
3365
|
-
"description": "
|
|
3366
|
-
"name": "
|
|
3367
|
-
"
|
|
3368
|
-
"
|
|
3380
|
+
"team": {
|
|
3381
|
+
"description": "Team ID (repeatable, replaces all memberships)",
|
|
3382
|
+
"name": "team",
|
|
3383
|
+
"required": true,
|
|
3384
|
+
"hasDynamicHelp": false,
|
|
3385
|
+
"multiple": true,
|
|
3386
|
+
"type": "option"
|
|
3369
3387
|
}
|
|
3370
3388
|
},
|
|
3371
3389
|
"hasDynamicHelp": false,
|
|
3372
3390
|
"hiddenAliases": [],
|
|
3373
|
-
"id": "face:
|
|
3391
|
+
"id": "face:teams",
|
|
3374
3392
|
"pluginAlias": "faces-cli",
|
|
3375
3393
|
"pluginName": "faces-cli",
|
|
3376
3394
|
"pluginType": "core",
|
|
@@ -3381,24 +3399,21 @@
|
|
|
3381
3399
|
"dist",
|
|
3382
3400
|
"commands",
|
|
3383
3401
|
"face",
|
|
3384
|
-
"
|
|
3402
|
+
"teams.js"
|
|
3385
3403
|
]
|
|
3386
3404
|
},
|
|
3387
|
-
"face:
|
|
3405
|
+
"face:unlock": {
|
|
3388
3406
|
"aliases": [],
|
|
3389
3407
|
"args": {
|
|
3390
|
-
"
|
|
3408
|
+
"face_id": {
|
|
3391
3409
|
"description": "Face alias",
|
|
3392
|
-
"name": "
|
|
3410
|
+
"name": "face_id",
|
|
3393
3411
|
"required": true
|
|
3394
3412
|
}
|
|
3395
3413
|
},
|
|
3396
|
-
"description": "
|
|
3414
|
+
"description": "Unlock a face (make it writable again). Thaws the face and everything it owns (documents, threads, voiceprint).",
|
|
3397
3415
|
"examples": [
|
|
3398
|
-
"<%= config.bin %> <%= command.id %>
|
|
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"
|
|
3416
|
+
"<%= config.bin %> <%= command.id %> socrates"
|
|
3402
3417
|
],
|
|
3403
3418
|
"flags": {
|
|
3404
3419
|
"json": {
|
|
@@ -3431,55 +3446,11 @@
|
|
|
3431
3446
|
"hasDynamicHelp": false,
|
|
3432
3447
|
"multiple": false,
|
|
3433
3448
|
"type": "option"
|
|
3434
|
-
},
|
|
3435
|
-
"list": {
|
|
3436
|
-
"description": "Show who the face is shared with, and change nothing",
|
|
3437
|
-
"name": "list",
|
|
3438
|
-
"allowNo": false,
|
|
3439
|
-
"type": "boolean"
|
|
3440
|
-
},
|
|
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",
|
|
3448
|
-
"hasDynamicHelp": false,
|
|
3449
|
-
"multiple": true,
|
|
3450
|
-
"type": "option"
|
|
3451
|
-
},
|
|
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",
|
|
3459
|
-
"hasDynamicHelp": false,
|
|
3460
|
-
"multiple": true,
|
|
3461
|
-
"type": "option"
|
|
3462
|
-
},
|
|
3463
|
-
"none": {
|
|
3464
|
-
"description": "Revoke everyone",
|
|
3465
|
-
"exclusive": [
|
|
3466
|
-
"add",
|
|
3467
|
-
"with"
|
|
3468
|
-
],
|
|
3469
|
-
"name": "none",
|
|
3470
|
-
"allowNo": false,
|
|
3471
|
-
"type": "boolean"
|
|
3472
|
-
},
|
|
3473
|
-
"yes": {
|
|
3474
|
-
"description": "Skip the confirmation shown when someone would lose access",
|
|
3475
|
-
"name": "yes",
|
|
3476
|
-
"allowNo": false,
|
|
3477
|
-
"type": "boolean"
|
|
3478
3449
|
}
|
|
3479
3450
|
},
|
|
3480
3451
|
"hasDynamicHelp": false,
|
|
3481
3452
|
"hiddenAliases": [],
|
|
3482
|
-
"id": "face:
|
|
3453
|
+
"id": "face:unlock",
|
|
3483
3454
|
"pluginAlias": "faces-cli",
|
|
3484
3455
|
"pluginName": "faces-cli",
|
|
3485
3456
|
"pluginType": "core",
|
|
@@ -3490,10 +3461,10 @@
|
|
|
3490
3461
|
"dist",
|
|
3491
3462
|
"commands",
|
|
3492
3463
|
"face",
|
|
3493
|
-
"
|
|
3464
|
+
"unlock.js"
|
|
3494
3465
|
]
|
|
3495
3466
|
},
|
|
3496
|
-
"face:
|
|
3467
|
+
"face:unpublish": {
|
|
3497
3468
|
"aliases": [],
|
|
3498
3469
|
"args": {
|
|
3499
3470
|
"alias": {
|
|
@@ -3502,12 +3473,7 @@
|
|
|
3502
3473
|
"required": true
|
|
3503
3474
|
}
|
|
3504
3475
|
},
|
|
3505
|
-
"description": "
|
|
3506
|
-
"examples": [
|
|
3507
|
-
"<%= config.bin %> <%= command.id %> alice",
|
|
3508
|
-
"<%= config.bin %> <%= command.id %> alice --type thread",
|
|
3509
|
-
"<%= config.bin %> <%= command.id %> alice --json"
|
|
3510
|
-
],
|
|
3476
|
+
"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.",
|
|
3511
3477
|
"flags": {
|
|
3512
3478
|
"json": {
|
|
3513
3479
|
"description": "Format output as json.",
|
|
@@ -3539,22 +3505,11 @@
|
|
|
3539
3505
|
"hasDynamicHelp": false,
|
|
3540
3506
|
"multiple": false,
|
|
3541
3507
|
"type": "option"
|
|
3542
|
-
},
|
|
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"
|
|
3553
3508
|
}
|
|
3554
3509
|
},
|
|
3555
3510
|
"hasDynamicHelp": false,
|
|
3556
3511
|
"hiddenAliases": [],
|
|
3557
|
-
"id": "face:
|
|
3512
|
+
"id": "face:unpublish",
|
|
3558
3513
|
"pluginAlias": "faces-cli",
|
|
3559
3514
|
"pluginName": "faces-cli",
|
|
3560
3515
|
"pluginType": "core",
|
|
@@ -3565,13 +3520,23 @@
|
|
|
3565
3520
|
"dist",
|
|
3566
3521
|
"commands",
|
|
3567
3522
|
"face",
|
|
3568
|
-
"
|
|
3523
|
+
"unpublish.js"
|
|
3569
3524
|
]
|
|
3570
3525
|
},
|
|
3571
|
-
"face:
|
|
3526
|
+
"face:unshare": {
|
|
3572
3527
|
"aliases": [],
|
|
3573
|
-
"args": {
|
|
3574
|
-
|
|
3528
|
+
"args": {
|
|
3529
|
+
"alias": {
|
|
3530
|
+
"description": "Face alias",
|
|
3531
|
+
"name": "alias",
|
|
3532
|
+
"required": true
|
|
3533
|
+
}
|
|
3534
|
+
},
|
|
3535
|
+
"description": "Revoke access to a shared face. Takes effect immediately. There is no grace period.",
|
|
3536
|
+
"examples": [
|
|
3537
|
+
"<%= config.bin %> <%= command.id %> alice --from dana --yes",
|
|
3538
|
+
"<%= config.bin %> <%= command.id %> alice --all --yes"
|
|
3539
|
+
],
|
|
3575
3540
|
"flags": {
|
|
3576
3541
|
"json": {
|
|
3577
3542
|
"description": "Format output as json.",
|
|
@@ -3603,11 +3568,36 @@
|
|
|
3603
3568
|
"hasDynamicHelp": false,
|
|
3604
3569
|
"multiple": false,
|
|
3605
3570
|
"type": "option"
|
|
3571
|
+
},
|
|
3572
|
+
"from": {
|
|
3573
|
+
"description": "Account to revoke (repeatable)",
|
|
3574
|
+
"exclusive": [
|
|
3575
|
+
"all"
|
|
3576
|
+
],
|
|
3577
|
+
"name": "from",
|
|
3578
|
+
"hasDynamicHelp": false,
|
|
3579
|
+
"multiple": true,
|
|
3580
|
+
"type": "option"
|
|
3581
|
+
},
|
|
3582
|
+
"all": {
|
|
3583
|
+
"description": "Revoke everyone",
|
|
3584
|
+
"exclusive": [
|
|
3585
|
+
"from"
|
|
3586
|
+
],
|
|
3587
|
+
"name": "all",
|
|
3588
|
+
"allowNo": false,
|
|
3589
|
+
"type": "boolean"
|
|
3590
|
+
},
|
|
3591
|
+
"yes": {
|
|
3592
|
+
"description": "Skip confirmation",
|
|
3593
|
+
"name": "yes",
|
|
3594
|
+
"allowNo": false,
|
|
3595
|
+
"type": "boolean"
|
|
3606
3596
|
}
|
|
3607
3597
|
},
|
|
3608
3598
|
"hasDynamicHelp": false,
|
|
3609
3599
|
"hiddenAliases": [],
|
|
3610
|
-
"id": "face:
|
|
3600
|
+
"id": "face:unshare",
|
|
3611
3601
|
"pluginAlias": "faces-cli",
|
|
3612
3602
|
"pluginName": "faces-cli",
|
|
3613
3603
|
"pluginType": "core",
|
|
@@ -3618,10 +3608,10 @@
|
|
|
3618
3608
|
"dist",
|
|
3619
3609
|
"commands",
|
|
3620
3610
|
"face",
|
|
3621
|
-
"
|
|
3611
|
+
"unshare.js"
|
|
3622
3612
|
]
|
|
3623
3613
|
},
|
|
3624
|
-
"
|
|
3614
|
+
"style:delete": {
|
|
3625
3615
|
"aliases": [],
|
|
3626
3616
|
"args": {
|
|
3627
3617
|
"alias": {
|
|
@@ -3630,7 +3620,11 @@
|
|
|
3630
3620
|
"required": true
|
|
3631
3621
|
}
|
|
3632
3622
|
},
|
|
3633
|
-
"description": "
|
|
3623
|
+
"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.",
|
|
3624
|
+
"examples": [
|
|
3625
|
+
"<%= config.bin %> <%= command.id %> alice",
|
|
3626
|
+
"<%= config.bin %> <%= command.id %> alice --yes"
|
|
3627
|
+
],
|
|
3634
3628
|
"flags": {
|
|
3635
3629
|
"json": {
|
|
3636
3630
|
"description": "Format output as json.",
|
|
@@ -3663,18 +3657,16 @@
|
|
|
3663
3657
|
"multiple": false,
|
|
3664
3658
|
"type": "option"
|
|
3665
3659
|
},
|
|
3666
|
-
"
|
|
3667
|
-
"description": "
|
|
3668
|
-
"name": "
|
|
3669
|
-
"
|
|
3670
|
-
"
|
|
3671
|
-
"multiple": true,
|
|
3672
|
-
"type": "option"
|
|
3660
|
+
"yes": {
|
|
3661
|
+
"description": "Skip confirmation",
|
|
3662
|
+
"name": "yes",
|
|
3663
|
+
"allowNo": false,
|
|
3664
|
+
"type": "boolean"
|
|
3673
3665
|
}
|
|
3674
3666
|
},
|
|
3675
3667
|
"hasDynamicHelp": false,
|
|
3676
3668
|
"hiddenAliases": [],
|
|
3677
|
-
"id": "
|
|
3669
|
+
"id": "style:delete",
|
|
3678
3670
|
"pluginAlias": "faces-cli",
|
|
3679
3671
|
"pluginName": "faces-cli",
|
|
3680
3672
|
"pluginType": "core",
|
|
@@ -3684,22 +3676,25 @@
|
|
|
3684
3676
|
"relativePath": [
|
|
3685
3677
|
"dist",
|
|
3686
3678
|
"commands",
|
|
3687
|
-
"
|
|
3688
|
-
"
|
|
3679
|
+
"style",
|
|
3680
|
+
"delete.js"
|
|
3689
3681
|
]
|
|
3690
3682
|
},
|
|
3691
|
-
"
|
|
3683
|
+
"style:make": {
|
|
3692
3684
|
"aliases": [],
|
|
3693
3685
|
"args": {
|
|
3694
|
-
"
|
|
3686
|
+
"alias": {
|
|
3695
3687
|
"description": "Face alias",
|
|
3696
|
-
"name": "
|
|
3688
|
+
"name": "alias",
|
|
3697
3689
|
"required": true
|
|
3698
3690
|
}
|
|
3699
3691
|
},
|
|
3700
|
-
"description": "
|
|
3692
|
+
"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.",
|
|
3701
3693
|
"examples": [
|
|
3702
|
-
"<%= config.bin %> <%= command.id %>
|
|
3694
|
+
"<%= config.bin %> <%= command.id %> alice --all",
|
|
3695
|
+
"<%= config.bin %> <%= command.id %> alice --source 1a2b3c4d --source 5e6f7a8b",
|
|
3696
|
+
"<%= config.bin %> <%= command.id %> alice --source 1a2b3c4d:essay",
|
|
3697
|
+
"<%= config.bin %> <%= command.id %> alice --all --medium essay --no-wait"
|
|
3703
3698
|
],
|
|
3704
3699
|
"flags": {
|
|
3705
3700
|
"json": {
|
|
@@ -3732,62 +3727,63 @@
|
|
|
3732
3727
|
"hasDynamicHelp": false,
|
|
3733
3728
|
"multiple": false,
|
|
3734
3729
|
"type": "option"
|
|
3735
|
-
}
|
|
3736
|
-
|
|
3737
|
-
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
"relativePath": [
|
|
3747
|
-
"dist",
|
|
3748
|
-
"commands",
|
|
3749
|
-
"face",
|
|
3750
|
-
"unlock.js"
|
|
3751
|
-
]
|
|
3752
|
-
},
|
|
3753
|
-
"face:unpublish": {
|
|
3754
|
-
"aliases": [],
|
|
3755
|
-
"args": {
|
|
3756
|
-
"alias": {
|
|
3757
|
-
"description": "Face alias",
|
|
3758
|
-
"name": "alias",
|
|
3759
|
-
"required": true
|
|
3760
|
-
}
|
|
3761
|
-
},
|
|
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.",
|
|
3763
|
-
"flags": {
|
|
3764
|
-
"json": {
|
|
3765
|
-
"description": "Format output as json.",
|
|
3766
|
-
"helpGroup": "GLOBAL",
|
|
3767
|
-
"name": "json",
|
|
3730
|
+
},
|
|
3731
|
+
"source": {
|
|
3732
|
+
"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.",
|
|
3733
|
+
"name": "source",
|
|
3734
|
+
"hasDynamicHelp": false,
|
|
3735
|
+
"multiple": true,
|
|
3736
|
+
"type": "option"
|
|
3737
|
+
},
|
|
3738
|
+
"all": {
|
|
3739
|
+
"description": "Use every source on the face that is ready. Anything skipped is listed.",
|
|
3740
|
+
"name": "all",
|
|
3768
3741
|
"allowNo": false,
|
|
3769
3742
|
"type": "boolean"
|
|
3770
3743
|
},
|
|
3771
|
-
"
|
|
3772
|
-
"description": "
|
|
3773
|
-
"
|
|
3774
|
-
"name": "base-url",
|
|
3744
|
+
"medium": {
|
|
3745
|
+
"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.",
|
|
3746
|
+
"name": "medium",
|
|
3775
3747
|
"hasDynamicHelp": false,
|
|
3776
3748
|
"multiple": false,
|
|
3777
3749
|
"type": "option"
|
|
3778
3750
|
},
|
|
3779
|
-
"
|
|
3780
|
-
"description": "
|
|
3781
|
-
"
|
|
3782
|
-
"name": "token",
|
|
3751
|
+
"model": {
|
|
3752
|
+
"description": "Analyst model (default: gpt-5.6-terra)",
|
|
3753
|
+
"name": "model",
|
|
3783
3754
|
"hasDynamicHelp": false,
|
|
3784
3755
|
"multiple": false,
|
|
3785
3756
|
"type": "option"
|
|
3786
3757
|
},
|
|
3787
|
-
"
|
|
3788
|
-
"description": "
|
|
3789
|
-
"
|
|
3790
|
-
"
|
|
3758
|
+
"allow-paid": {
|
|
3759
|
+
"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.",
|
|
3760
|
+
"name": "allow-paid",
|
|
3761
|
+
"allowNo": false,
|
|
3762
|
+
"type": "boolean"
|
|
3763
|
+
},
|
|
3764
|
+
"compile": {
|
|
3765
|
+
"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.",
|
|
3766
|
+
"name": "compile",
|
|
3767
|
+
"allowNo": true,
|
|
3768
|
+
"type": "boolean"
|
|
3769
|
+
},
|
|
3770
|
+
"best-of": {
|
|
3771
|
+
"description": "Generate N candidates and keep the best (1-5, default 1)",
|
|
3772
|
+
"name": "best-of",
|
|
3773
|
+
"hasDynamicHelp": false,
|
|
3774
|
+
"multiple": false,
|
|
3775
|
+
"type": "option"
|
|
3776
|
+
},
|
|
3777
|
+
"no-wait": {
|
|
3778
|
+
"description": "Start the build and return the job id without polling.",
|
|
3779
|
+
"name": "no-wait",
|
|
3780
|
+
"allowNo": false,
|
|
3781
|
+
"type": "boolean"
|
|
3782
|
+
},
|
|
3783
|
+
"timeout": {
|
|
3784
|
+
"description": "How long to wait, in seconds (default: 3600)",
|
|
3785
|
+
"name": "timeout",
|
|
3786
|
+
"default": 3600,
|
|
3791
3787
|
"hasDynamicHelp": false,
|
|
3792
3788
|
"multiple": false,
|
|
3793
3789
|
"type": "option"
|
|
@@ -3795,7 +3791,7 @@
|
|
|
3795
3791
|
},
|
|
3796
3792
|
"hasDynamicHelp": false,
|
|
3797
3793
|
"hiddenAliases": [],
|
|
3798
|
-
"id": "
|
|
3794
|
+
"id": "style:make",
|
|
3799
3795
|
"pluginAlias": "faces-cli",
|
|
3800
3796
|
"pluginName": "faces-cli",
|
|
3801
3797
|
"pluginType": "core",
|
|
@@ -3805,11 +3801,11 @@
|
|
|
3805
3801
|
"relativePath": [
|
|
3806
3802
|
"dist",
|
|
3807
3803
|
"commands",
|
|
3808
|
-
"
|
|
3809
|
-
"
|
|
3804
|
+
"style",
|
|
3805
|
+
"make.js"
|
|
3810
3806
|
]
|
|
3811
3807
|
},
|
|
3812
|
-
"
|
|
3808
|
+
"style:revert": {
|
|
3813
3809
|
"aliases": [],
|
|
3814
3810
|
"args": {
|
|
3815
3811
|
"alias": {
|
|
@@ -3818,10 +3814,10 @@
|
|
|
3818
3814
|
"required": true
|
|
3819
3815
|
}
|
|
3820
3816
|
},
|
|
3821
|
-
"description": "
|
|
3817
|
+
"description": "Go back to the style a face had before the last style:make. Two versions are kept per medium, so this is a toggle: running it again returns to where you started. A face holds one style per medium, so name which one with --medium when it has more than one. It changes how the face writes immediately, so it asks first.",
|
|
3822
3818
|
"examples": [
|
|
3823
|
-
"<%= config.bin %> <%= command.id %> alice --
|
|
3824
|
-
"<%= config.bin %> <%= command.id %> alice --
|
|
3819
|
+
"<%= config.bin %> <%= command.id %> alice --yes",
|
|
3820
|
+
"<%= config.bin %> <%= command.id %> alice --medium email --yes"
|
|
3825
3821
|
],
|
|
3826
3822
|
"flags": {
|
|
3827
3823
|
"json": {
|
|
@@ -3855,25 +3851,13 @@
|
|
|
3855
3851
|
"multiple": false,
|
|
3856
3852
|
"type": "option"
|
|
3857
3853
|
},
|
|
3858
|
-
"
|
|
3859
|
-
"description": "
|
|
3860
|
-
"
|
|
3861
|
-
"all"
|
|
3862
|
-
],
|
|
3863
|
-
"name": "from",
|
|
3854
|
+
"medium": {
|
|
3855
|
+
"description": "Which style to step back, when the face has more than one. See faces style:versions <alias>.",
|
|
3856
|
+
"name": "medium",
|
|
3864
3857
|
"hasDynamicHelp": false,
|
|
3865
|
-
"multiple":
|
|
3858
|
+
"multiple": false,
|
|
3866
3859
|
"type": "option"
|
|
3867
3860
|
},
|
|
3868
|
-
"all": {
|
|
3869
|
-
"description": "Revoke everyone",
|
|
3870
|
-
"exclusive": [
|
|
3871
|
-
"from"
|
|
3872
|
-
],
|
|
3873
|
-
"name": "all",
|
|
3874
|
-
"allowNo": false,
|
|
3875
|
-
"type": "boolean"
|
|
3876
|
-
},
|
|
3877
3861
|
"yes": {
|
|
3878
3862
|
"description": "Skip confirmation",
|
|
3879
3863
|
"name": "yes",
|
|
@@ -3883,7 +3867,7 @@
|
|
|
3883
3867
|
},
|
|
3884
3868
|
"hasDynamicHelp": false,
|
|
3885
3869
|
"hiddenAliases": [],
|
|
3886
|
-
"id": "
|
|
3870
|
+
"id": "style:revert",
|
|
3887
3871
|
"pluginAlias": "faces-cli",
|
|
3888
3872
|
"pluginName": "faces-cli",
|
|
3889
3873
|
"pluginType": "core",
|
|
@@ -3893,23 +3877,24 @@
|
|
|
3893
3877
|
"relativePath": [
|
|
3894
3878
|
"dist",
|
|
3895
3879
|
"commands",
|
|
3896
|
-
"
|
|
3897
|
-
"
|
|
3880
|
+
"style",
|
|
3881
|
+
"revert.js"
|
|
3898
3882
|
]
|
|
3899
3883
|
},
|
|
3900
|
-
"style:
|
|
3884
|
+
"style:status": {
|
|
3901
3885
|
"aliases": [],
|
|
3902
3886
|
"args": {
|
|
3903
|
-
"
|
|
3904
|
-
"description": "
|
|
3905
|
-
"name": "
|
|
3906
|
-
"required":
|
|
3887
|
+
"job_id": {
|
|
3888
|
+
"description": "Build job id",
|
|
3889
|
+
"name": "job_id",
|
|
3890
|
+
"required": false
|
|
3907
3891
|
}
|
|
3908
3892
|
},
|
|
3909
|
-
"description": "
|
|
3893
|
+
"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.",
|
|
3910
3894
|
"examples": [
|
|
3911
|
-
"<%= config.bin %> <%= command.id %>
|
|
3912
|
-
"<%= config.bin %> <%= command.id %> alice
|
|
3895
|
+
"<%= config.bin %> <%= command.id %> 7a8b9c0d",
|
|
3896
|
+
"<%= config.bin %> <%= command.id %> --face alice",
|
|
3897
|
+
"<%= config.bin %> <%= command.id %> 7a8b9c0d --wait"
|
|
3913
3898
|
],
|
|
3914
3899
|
"flags": {
|
|
3915
3900
|
"json": {
|
|
@@ -3943,16 +3928,39 @@
|
|
|
3943
3928
|
"multiple": false,
|
|
3944
3929
|
"type": "option"
|
|
3945
3930
|
},
|
|
3946
|
-
"
|
|
3947
|
-
"description": "
|
|
3948
|
-
"name": "
|
|
3931
|
+
"face": {
|
|
3932
|
+
"description": "List recent builds for this face instead of reading one job",
|
|
3933
|
+
"name": "face",
|
|
3934
|
+
"hasDynamicHelp": false,
|
|
3935
|
+
"multiple": false,
|
|
3936
|
+
"type": "option"
|
|
3937
|
+
},
|
|
3938
|
+
"limit": {
|
|
3939
|
+
"description": "How many builds to list with --face (default: 10)",
|
|
3940
|
+
"name": "limit",
|
|
3941
|
+
"default": 10,
|
|
3942
|
+
"hasDynamicHelp": false,
|
|
3943
|
+
"multiple": false,
|
|
3944
|
+
"type": "option"
|
|
3945
|
+
},
|
|
3946
|
+
"wait": {
|
|
3947
|
+
"description": "Block until the job finishes",
|
|
3948
|
+
"name": "wait",
|
|
3949
3949
|
"allowNo": false,
|
|
3950
3950
|
"type": "boolean"
|
|
3951
|
+
},
|
|
3952
|
+
"timeout": {
|
|
3953
|
+
"description": "How long to wait with --wait, in seconds (default: 3600)",
|
|
3954
|
+
"name": "timeout",
|
|
3955
|
+
"default": 3600,
|
|
3956
|
+
"hasDynamicHelp": false,
|
|
3957
|
+
"multiple": false,
|
|
3958
|
+
"type": "option"
|
|
3951
3959
|
}
|
|
3952
3960
|
},
|
|
3953
3961
|
"hasDynamicHelp": false,
|
|
3954
3962
|
"hiddenAliases": [],
|
|
3955
|
-
"id": "style:
|
|
3963
|
+
"id": "style:status",
|
|
3956
3964
|
"pluginAlias": "faces-cli",
|
|
3957
3965
|
"pluginName": "faces-cli",
|
|
3958
3966
|
"pluginType": "core",
|
|
@@ -3963,24 +3971,28 @@
|
|
|
3963
3971
|
"dist",
|
|
3964
3972
|
"commands",
|
|
3965
3973
|
"style",
|
|
3966
|
-
"
|
|
3974
|
+
"status.js"
|
|
3967
3975
|
]
|
|
3968
3976
|
},
|
|
3969
|
-
"style:
|
|
3977
|
+
"style:upload": {
|
|
3970
3978
|
"aliases": [],
|
|
3971
3979
|
"args": {
|
|
3972
3980
|
"alias": {
|
|
3973
3981
|
"description": "Face alias",
|
|
3974
3982
|
"name": "alias",
|
|
3975
3983
|
"required": true
|
|
3984
|
+
},
|
|
3985
|
+
"file": {
|
|
3986
|
+
"description": "Corpus file",
|
|
3987
|
+
"name": "file",
|
|
3988
|
+
"required": true
|
|
3976
3989
|
}
|
|
3977
3990
|
},
|
|
3978
|
-
"description": "
|
|
3991
|
+
"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.",
|
|
3979
3992
|
"examples": [
|
|
3980
|
-
"<%= config.bin %> <%= command.id %> alice
|
|
3981
|
-
"<%= config.bin %> <%= command.id %> alice
|
|
3982
|
-
"<%= config.bin %> <%= command.id %> alice --
|
|
3983
|
-
"<%= config.bin %> <%= command.id %> alice --all --medium essay --no-wait"
|
|
3993
|
+
"<%= config.bin %> <%= command.id %> alice ./mail.jsonl",
|
|
3994
|
+
"<%= config.bin %> <%= command.id %> alice ./thread.json --type thread_json",
|
|
3995
|
+
"<%= config.bin %> <%= command.id %> alice ./mail.jsonl --messages-per-room 100 --strict"
|
|
3984
3996
|
],
|
|
3985
3997
|
"flags": {
|
|
3986
3998
|
"json": {
|
|
@@ -4014,62 +4026,91 @@
|
|
|
4014
4026
|
"multiple": false,
|
|
4015
4027
|
"type": "option"
|
|
4016
4028
|
},
|
|
4017
|
-
"
|
|
4018
|
-
"description": "
|
|
4019
|
-
"name": "
|
|
4020
|
-
"
|
|
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",
|
|
4029
|
+
"type": {
|
|
4030
|
+
"description": "email_jsonl: one message per line, split across several rooms. thread_json: a JSON array that becomes a single room.",
|
|
4031
|
+
"name": "type",
|
|
4032
|
+
"default": "email_jsonl",
|
|
4033
4033
|
"hasDynamicHelp": false,
|
|
4034
4034
|
"multiple": false,
|
|
4035
|
+
"options": [
|
|
4036
|
+
"email_jsonl",
|
|
4037
|
+
"thread_json"
|
|
4038
|
+
],
|
|
4035
4039
|
"type": "option"
|
|
4036
4040
|
},
|
|
4037
|
-
"
|
|
4038
|
-
"description": "
|
|
4039
|
-
"name": "
|
|
4041
|
+
"messages-per-room": {
|
|
4042
|
+
"description": "How many messages per room when the type is email_jsonl (1-1000, default: 50)",
|
|
4043
|
+
"name": "messages-per-room",
|
|
4044
|
+
"default": 50,
|
|
4040
4045
|
"hasDynamicHelp": false,
|
|
4041
4046
|
"multiple": false,
|
|
4042
4047
|
"type": "option"
|
|
4043
4048
|
},
|
|
4044
|
-
"
|
|
4045
|
-
"description": "
|
|
4046
|
-
"name": "
|
|
4049
|
+
"strict": {
|
|
4050
|
+
"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.",
|
|
4051
|
+
"name": "strict",
|
|
4052
|
+
"allowNo": false,
|
|
4053
|
+
"type": "boolean"
|
|
4054
|
+
}
|
|
4055
|
+
},
|
|
4056
|
+
"hasDynamicHelp": false,
|
|
4057
|
+
"hiddenAliases": [],
|
|
4058
|
+
"id": "style:upload",
|
|
4059
|
+
"pluginAlias": "faces-cli",
|
|
4060
|
+
"pluginName": "faces-cli",
|
|
4061
|
+
"pluginType": "core",
|
|
4062
|
+
"strict": true,
|
|
4063
|
+
"enableJsonFlag": true,
|
|
4064
|
+
"isESM": true,
|
|
4065
|
+
"relativePath": [
|
|
4066
|
+
"dist",
|
|
4067
|
+
"commands",
|
|
4068
|
+
"style",
|
|
4069
|
+
"upload.js"
|
|
4070
|
+
]
|
|
4071
|
+
},
|
|
4072
|
+
"style:versions": {
|
|
4073
|
+
"aliases": [],
|
|
4074
|
+
"args": {
|
|
4075
|
+
"alias": {
|
|
4076
|
+
"description": "Face alias",
|
|
4077
|
+
"name": "alias",
|
|
4078
|
+
"required": true
|
|
4079
|
+
}
|
|
4080
|
+
},
|
|
4081
|
+
"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.",
|
|
4082
|
+
"examples": [
|
|
4083
|
+
"<%= config.bin %> <%= command.id %> alice",
|
|
4084
|
+
"<%= config.bin %> <%= command.id %> alice --json"
|
|
4085
|
+
],
|
|
4086
|
+
"flags": {
|
|
4087
|
+
"json": {
|
|
4088
|
+
"description": "Format output as json.",
|
|
4089
|
+
"helpGroup": "GLOBAL",
|
|
4090
|
+
"name": "json",
|
|
4047
4091
|
"allowNo": false,
|
|
4048
4092
|
"type": "boolean"
|
|
4049
4093
|
},
|
|
4050
|
-
"
|
|
4051
|
-
"description": "
|
|
4052
|
-
"
|
|
4053
|
-
"
|
|
4054
|
-
"type": "boolean"
|
|
4055
|
-
},
|
|
4056
|
-
"best-of": {
|
|
4057
|
-
"description": "Generate N candidates and keep the best (1-5, default 1)",
|
|
4058
|
-
"name": "best-of",
|
|
4094
|
+
"base-url": {
|
|
4095
|
+
"description": "API base URL",
|
|
4096
|
+
"env": "FACES_BASE_URL",
|
|
4097
|
+
"name": "base-url",
|
|
4059
4098
|
"hasDynamicHelp": false,
|
|
4060
4099
|
"multiple": false,
|
|
4061
4100
|
"type": "option"
|
|
4062
4101
|
},
|
|
4063
|
-
"
|
|
4064
|
-
"description": "
|
|
4065
|
-
"
|
|
4066
|
-
"
|
|
4067
|
-
"
|
|
4102
|
+
"token": {
|
|
4103
|
+
"description": "JWT bearer token",
|
|
4104
|
+
"env": "FACES_TOKEN",
|
|
4105
|
+
"name": "token",
|
|
4106
|
+
"hasDynamicHelp": false,
|
|
4107
|
+
"multiple": false,
|
|
4108
|
+
"type": "option"
|
|
4068
4109
|
},
|
|
4069
|
-
"
|
|
4070
|
-
"description": "
|
|
4071
|
-
"
|
|
4072
|
-
"
|
|
4110
|
+
"api-key": {
|
|
4111
|
+
"description": "API key",
|
|
4112
|
+
"env": "FACES_API_KEY",
|
|
4113
|
+
"name": "api-key",
|
|
4073
4114
|
"hasDynamicHelp": false,
|
|
4074
4115
|
"multiple": false,
|
|
4075
4116
|
"type": "option"
|
|
@@ -4077,7 +4118,7 @@
|
|
|
4077
4118
|
},
|
|
4078
4119
|
"hasDynamicHelp": false,
|
|
4079
4120
|
"hiddenAliases": [],
|
|
4080
|
-
"id": "style:
|
|
4121
|
+
"id": "style:versions",
|
|
4081
4122
|
"pluginAlias": "faces-cli",
|
|
4082
4123
|
"pluginName": "faces-cli",
|
|
4083
4124
|
"pluginType": "core",
|
|
@@ -4088,22 +4129,22 @@
|
|
|
4088
4129
|
"dist",
|
|
4089
4130
|
"commands",
|
|
4090
4131
|
"style",
|
|
4091
|
-
"
|
|
4132
|
+
"versions.js"
|
|
4092
4133
|
]
|
|
4093
4134
|
},
|
|
4094
|
-
"
|
|
4135
|
+
"team:add": {
|
|
4095
4136
|
"aliases": [],
|
|
4096
4137
|
"args": {
|
|
4097
|
-
"
|
|
4098
|
-
"description": "
|
|
4099
|
-
"name": "
|
|
4138
|
+
"team_id": {
|
|
4139
|
+
"description": "Team ID",
|
|
4140
|
+
"name": "team_id",
|
|
4100
4141
|
"required": true
|
|
4101
4142
|
}
|
|
4102
4143
|
},
|
|
4103
|
-
"description": "
|
|
4144
|
+
"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.",
|
|
4104
4145
|
"examples": [
|
|
4105
|
-
"<%= config.bin %> <%= command.id %> alice --
|
|
4106
|
-
"<%= config.bin %> <%= command.id %>
|
|
4146
|
+
"<%= config.bin %> <%= command.id %> TEAM_ID --face alice --face bob",
|
|
4147
|
+
"<%= config.bin %> <%= command.id %> TEAM_ID --face head:socrates"
|
|
4107
4148
|
],
|
|
4108
4149
|
"flags": {
|
|
4109
4150
|
"json": {
|
|
@@ -4137,23 +4178,18 @@
|
|
|
4137
4178
|
"multiple": false,
|
|
4138
4179
|
"type": "option"
|
|
4139
4180
|
},
|
|
4140
|
-
"
|
|
4141
|
-
"description": "
|
|
4142
|
-
"name": "
|
|
4181
|
+
"face": {
|
|
4182
|
+
"description": "Face alias to add (repeatable)",
|
|
4183
|
+
"name": "face",
|
|
4184
|
+
"required": true,
|
|
4143
4185
|
"hasDynamicHelp": false,
|
|
4144
|
-
"multiple":
|
|
4186
|
+
"multiple": true,
|
|
4145
4187
|
"type": "option"
|
|
4146
|
-
},
|
|
4147
|
-
"yes": {
|
|
4148
|
-
"description": "Skip confirmation",
|
|
4149
|
-
"name": "yes",
|
|
4150
|
-
"allowNo": false,
|
|
4151
|
-
"type": "boolean"
|
|
4152
4188
|
}
|
|
4153
4189
|
},
|
|
4154
4190
|
"hasDynamicHelp": false,
|
|
4155
4191
|
"hiddenAliases": [],
|
|
4156
|
-
"id": "
|
|
4192
|
+
"id": "team:add",
|
|
4157
4193
|
"pluginAlias": "faces-cli",
|
|
4158
4194
|
"pluginName": "faces-cli",
|
|
4159
4195
|
"pluginType": "core",
|
|
@@ -4163,25 +4199,14 @@
|
|
|
4163
4199
|
"relativePath": [
|
|
4164
4200
|
"dist",
|
|
4165
4201
|
"commands",
|
|
4166
|
-
"
|
|
4167
|
-
"
|
|
4202
|
+
"team",
|
|
4203
|
+
"add.js"
|
|
4168
4204
|
]
|
|
4169
4205
|
},
|
|
4170
|
-
"
|
|
4206
|
+
"team:create": {
|
|
4171
4207
|
"aliases": [],
|
|
4172
|
-
"args": {
|
|
4173
|
-
|
|
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
|
-
],
|
|
4208
|
+
"args": {},
|
|
4209
|
+
"description": "Create a new team",
|
|
4185
4210
|
"flags": {
|
|
4186
4211
|
"json": {
|
|
4187
4212
|
"description": "Format output as json.",
|
|
@@ -4214,39 +4239,46 @@
|
|
|
4214
4239
|
"multiple": false,
|
|
4215
4240
|
"type": "option"
|
|
4216
4241
|
},
|
|
4217
|
-
"
|
|
4218
|
-
"description": "
|
|
4219
|
-
"name": "
|
|
4242
|
+
"name": {
|
|
4243
|
+
"description": "Team name",
|
|
4244
|
+
"name": "name",
|
|
4245
|
+
"required": true,
|
|
4220
4246
|
"hasDynamicHelp": false,
|
|
4221
4247
|
"multiple": false,
|
|
4222
4248
|
"type": "option"
|
|
4223
4249
|
},
|
|
4224
|
-
"
|
|
4225
|
-
"description": "
|
|
4226
|
-
"name": "
|
|
4227
|
-
"default": 10,
|
|
4250
|
+
"description": {
|
|
4251
|
+
"description": "Plain-text team description (max 1500 chars)",
|
|
4252
|
+
"name": "description",
|
|
4228
4253
|
"hasDynamicHelp": false,
|
|
4229
4254
|
"multiple": false,
|
|
4230
4255
|
"type": "option"
|
|
4231
4256
|
},
|
|
4232
|
-
"
|
|
4233
|
-
"description": "
|
|
4234
|
-
"name": "
|
|
4235
|
-
"
|
|
4236
|
-
"
|
|
4257
|
+
"protocol": {
|
|
4258
|
+
"description": "Protocol content (mermaid diagram or markdown, max 1000 words)",
|
|
4259
|
+
"name": "protocol",
|
|
4260
|
+
"hasDynamicHelp": false,
|
|
4261
|
+
"multiple": false,
|
|
4262
|
+
"type": "option"
|
|
4237
4263
|
},
|
|
4238
|
-
"
|
|
4239
|
-
"description": "
|
|
4240
|
-
"name": "
|
|
4241
|
-
"default": 3600,
|
|
4264
|
+
"protocol-file": {
|
|
4265
|
+
"description": "Read protocol from file",
|
|
4266
|
+
"name": "protocol-file",
|
|
4242
4267
|
"hasDynamicHelp": false,
|
|
4243
4268
|
"multiple": false,
|
|
4244
4269
|
"type": "option"
|
|
4270
|
+
},
|
|
4271
|
+
"tag": {
|
|
4272
|
+
"description": "Tag label (repeatable, lowercase)",
|
|
4273
|
+
"name": "tag",
|
|
4274
|
+
"hasDynamicHelp": false,
|
|
4275
|
+
"multiple": true,
|
|
4276
|
+
"type": "option"
|
|
4245
4277
|
}
|
|
4246
4278
|
},
|
|
4247
4279
|
"hasDynamicHelp": false,
|
|
4248
4280
|
"hiddenAliases": [],
|
|
4249
|
-
"id": "
|
|
4281
|
+
"id": "team:create",
|
|
4250
4282
|
"pluginAlias": "faces-cli",
|
|
4251
4283
|
"pluginName": "faces-cli",
|
|
4252
4284
|
"pluginType": "core",
|
|
@@ -4256,30 +4288,20 @@
|
|
|
4256
4288
|
"relativePath": [
|
|
4257
4289
|
"dist",
|
|
4258
4290
|
"commands",
|
|
4259
|
-
"
|
|
4260
|
-
"
|
|
4291
|
+
"team",
|
|
4292
|
+
"create.js"
|
|
4261
4293
|
]
|
|
4262
4294
|
},
|
|
4263
|
-
"
|
|
4295
|
+
"team:delete": {
|
|
4264
4296
|
"aliases": [],
|
|
4265
4297
|
"args": {
|
|
4266
|
-
"
|
|
4267
|
-
"description": "
|
|
4268
|
-
"name": "
|
|
4269
|
-
"required": true
|
|
4270
|
-
},
|
|
4271
|
-
"file": {
|
|
4272
|
-
"description": "Corpus file",
|
|
4273
|
-
"name": "file",
|
|
4298
|
+
"team_id": {
|
|
4299
|
+
"description": "Team ID",
|
|
4300
|
+
"name": "team_id",
|
|
4274
4301
|
"required": true
|
|
4275
4302
|
}
|
|
4276
4303
|
},
|
|
4277
|
-
"description": "
|
|
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
|
-
],
|
|
4304
|
+
"description": "Delete a team",
|
|
4283
4305
|
"flags": {
|
|
4284
4306
|
"json": {
|
|
4285
4307
|
"description": "Format output as json.",
|
|
@@ -4312,36 +4334,16 @@
|
|
|
4312
4334
|
"multiple": false,
|
|
4313
4335
|
"type": "option"
|
|
4314
4336
|
},
|
|
4315
|
-
"
|
|
4316
|
-
"description": "
|
|
4317
|
-
"name": "
|
|
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",
|
|
4337
|
+
"yes": {
|
|
4338
|
+
"description": "Skip confirmation",
|
|
4339
|
+
"name": "yes",
|
|
4338
4340
|
"allowNo": false,
|
|
4339
4341
|
"type": "boolean"
|
|
4340
4342
|
}
|
|
4341
4343
|
},
|
|
4342
4344
|
"hasDynamicHelp": false,
|
|
4343
4345
|
"hiddenAliases": [],
|
|
4344
|
-
"id": "
|
|
4346
|
+
"id": "team:delete",
|
|
4345
4347
|
"pluginAlias": "faces-cli",
|
|
4346
4348
|
"pluginName": "faces-cli",
|
|
4347
4349
|
"pluginType": "core",
|
|
@@ -4351,24 +4353,20 @@
|
|
|
4351
4353
|
"relativePath": [
|
|
4352
4354
|
"dist",
|
|
4353
4355
|
"commands",
|
|
4354
|
-
"
|
|
4355
|
-
"
|
|
4356
|
+
"team",
|
|
4357
|
+
"delete.js"
|
|
4356
4358
|
]
|
|
4357
4359
|
},
|
|
4358
|
-
"
|
|
4360
|
+
"team:edit": {
|
|
4359
4361
|
"aliases": [],
|
|
4360
4362
|
"args": {
|
|
4361
|
-
"
|
|
4362
|
-
"description": "
|
|
4363
|
-
"name": "
|
|
4363
|
+
"team_id": {
|
|
4364
|
+
"description": "Team ID",
|
|
4365
|
+
"name": "team_id",
|
|
4364
4366
|
"required": true
|
|
4365
4367
|
}
|
|
4366
4368
|
},
|
|
4367
|
-
"description": "
|
|
4368
|
-
"examples": [
|
|
4369
|
-
"<%= config.bin %> <%= command.id %> alice",
|
|
4370
|
-
"<%= config.bin %> <%= command.id %> alice --json"
|
|
4371
|
-
],
|
|
4369
|
+
"description": "Edit a team",
|
|
4372
4370
|
"flags": {
|
|
4373
4371
|
"json": {
|
|
4374
4372
|
"description": "Format output as json.",
|
|
@@ -4400,11 +4398,39 @@
|
|
|
4400
4398
|
"hasDynamicHelp": false,
|
|
4401
4399
|
"multiple": false,
|
|
4402
4400
|
"type": "option"
|
|
4401
|
+
},
|
|
4402
|
+
"name": {
|
|
4403
|
+
"description": "New team name",
|
|
4404
|
+
"name": "name",
|
|
4405
|
+
"hasDynamicHelp": false,
|
|
4406
|
+
"multiple": false,
|
|
4407
|
+
"type": "option"
|
|
4408
|
+
},
|
|
4409
|
+
"description": {
|
|
4410
|
+
"description": "New description (max 1500 chars)",
|
|
4411
|
+
"name": "description",
|
|
4412
|
+
"hasDynamicHelp": false,
|
|
4413
|
+
"multiple": false,
|
|
4414
|
+
"type": "option"
|
|
4415
|
+
},
|
|
4416
|
+
"protocol": {
|
|
4417
|
+
"description": "New protocol content",
|
|
4418
|
+
"name": "protocol",
|
|
4419
|
+
"hasDynamicHelp": false,
|
|
4420
|
+
"multiple": false,
|
|
4421
|
+
"type": "option"
|
|
4422
|
+
},
|
|
4423
|
+
"protocol-file": {
|
|
4424
|
+
"description": "Read protocol from file",
|
|
4425
|
+
"name": "protocol-file",
|
|
4426
|
+
"hasDynamicHelp": false,
|
|
4427
|
+
"multiple": false,
|
|
4428
|
+
"type": "option"
|
|
4403
4429
|
}
|
|
4404
4430
|
},
|
|
4405
4431
|
"hasDynamicHelp": false,
|
|
4406
4432
|
"hiddenAliases": [],
|
|
4407
|
-
"id": "
|
|
4433
|
+
"id": "team:edit",
|
|
4408
4434
|
"pluginAlias": "faces-cli",
|
|
4409
4435
|
"pluginName": "faces-cli",
|
|
4410
4436
|
"pluginType": "core",
|
|
@@ -4414,11 +4440,11 @@
|
|
|
4414
4440
|
"relativePath": [
|
|
4415
4441
|
"dist",
|
|
4416
4442
|
"commands",
|
|
4417
|
-
"
|
|
4418
|
-
"
|
|
4443
|
+
"team",
|
|
4444
|
+
"edit.js"
|
|
4419
4445
|
]
|
|
4420
4446
|
},
|
|
4421
|
-
"team:
|
|
4447
|
+
"team:get": {
|
|
4422
4448
|
"aliases": [],
|
|
4423
4449
|
"args": {
|
|
4424
4450
|
"team_id": {
|
|
@@ -4427,11 +4453,7 @@
|
|
|
4427
4453
|
"required": true
|
|
4428
4454
|
}
|
|
4429
4455
|
},
|
|
4430
|
-
"description": "
|
|
4431
|
-
"examples": [
|
|
4432
|
-
"<%= config.bin %> <%= command.id %> TEAM_ID --face alice --face bob",
|
|
4433
|
-
"<%= config.bin %> <%= command.id %> TEAM_ID --face head:socrates"
|
|
4434
|
-
],
|
|
4456
|
+
"description": "Get a team by ID",
|
|
4435
4457
|
"flags": {
|
|
4436
4458
|
"json": {
|
|
4437
4459
|
"description": "Format output as json.",
|
|
@@ -4463,19 +4485,11 @@
|
|
|
4463
4485
|
"hasDynamicHelp": false,
|
|
4464
4486
|
"multiple": false,
|
|
4465
4487
|
"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"
|
|
4474
4488
|
}
|
|
4475
4489
|
},
|
|
4476
4490
|
"hasDynamicHelp": false,
|
|
4477
4491
|
"hiddenAliases": [],
|
|
4478
|
-
"id": "team:
|
|
4492
|
+
"id": "team:get",
|
|
4479
4493
|
"pluginAlias": "faces-cli",
|
|
4480
4494
|
"pluginName": "faces-cli",
|
|
4481
4495
|
"pluginType": "core",
|
|
@@ -4486,13 +4500,13 @@
|
|
|
4486
4500
|
"dist",
|
|
4487
4501
|
"commands",
|
|
4488
4502
|
"team",
|
|
4489
|
-
"
|
|
4503
|
+
"get.js"
|
|
4490
4504
|
]
|
|
4491
4505
|
},
|
|
4492
|
-
"team:
|
|
4506
|
+
"team:list": {
|
|
4493
4507
|
"aliases": [],
|
|
4494
4508
|
"args": {},
|
|
4495
|
-
"description": "
|
|
4509
|
+
"description": "List your teams",
|
|
4496
4510
|
"flags": {
|
|
4497
4511
|
"json": {
|
|
4498
4512
|
"description": "Format output as json.",
|
|
@@ -4524,47 +4538,11 @@
|
|
|
4524
4538
|
"hasDynamicHelp": false,
|
|
4525
4539
|
"multiple": false,
|
|
4526
4540
|
"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"
|
|
4563
4541
|
}
|
|
4564
4542
|
},
|
|
4565
4543
|
"hasDynamicHelp": false,
|
|
4566
4544
|
"hiddenAliases": [],
|
|
4567
|
-
"id": "team:
|
|
4545
|
+
"id": "team:list",
|
|
4568
4546
|
"pluginAlias": "faces-cli",
|
|
4569
4547
|
"pluginName": "faces-cli",
|
|
4570
4548
|
"pluginType": "core",
|
|
@@ -4575,10 +4553,10 @@
|
|
|
4575
4553
|
"dist",
|
|
4576
4554
|
"commands",
|
|
4577
4555
|
"team",
|
|
4578
|
-
"
|
|
4556
|
+
"list.js"
|
|
4579
4557
|
]
|
|
4580
4558
|
},
|
|
4581
|
-
"team:
|
|
4559
|
+
"team:members": {
|
|
4582
4560
|
"aliases": [],
|
|
4583
4561
|
"args": {
|
|
4584
4562
|
"team_id": {
|
|
@@ -4587,7 +4565,11 @@
|
|
|
4587
4565
|
"required": true
|
|
4588
4566
|
}
|
|
4589
4567
|
},
|
|
4590
|
-
"description": "
|
|
4568
|
+
"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.",
|
|
4569
|
+
"examples": [
|
|
4570
|
+
"<%= config.bin %> <%= command.id %> TEAM_ID",
|
|
4571
|
+
"<%= config.bin %> <%= command.id %> TEAM_ID --json"
|
|
4572
|
+
],
|
|
4591
4573
|
"flags": {
|
|
4592
4574
|
"json": {
|
|
4593
4575
|
"description": "Format output as json.",
|
|
@@ -4619,17 +4601,11 @@
|
|
|
4619
4601
|
"hasDynamicHelp": false,
|
|
4620
4602
|
"multiple": false,
|
|
4621
4603
|
"type": "option"
|
|
4622
|
-
},
|
|
4623
|
-
"yes": {
|
|
4624
|
-
"description": "Skip confirmation",
|
|
4625
|
-
"name": "yes",
|
|
4626
|
-
"allowNo": false,
|
|
4627
|
-
"type": "boolean"
|
|
4628
4604
|
}
|
|
4629
4605
|
},
|
|
4630
4606
|
"hasDynamicHelp": false,
|
|
4631
4607
|
"hiddenAliases": [],
|
|
4632
|
-
"id": "team:
|
|
4608
|
+
"id": "team:members",
|
|
4633
4609
|
"pluginAlias": "faces-cli",
|
|
4634
4610
|
"pluginName": "faces-cli",
|
|
4635
4611
|
"pluginType": "core",
|
|
@@ -4640,19 +4616,24 @@
|
|
|
4640
4616
|
"dist",
|
|
4641
4617
|
"commands",
|
|
4642
4618
|
"team",
|
|
4643
|
-
"
|
|
4619
|
+
"members.js"
|
|
4644
4620
|
]
|
|
4645
4621
|
},
|
|
4646
|
-
"team:
|
|
4622
|
+
"team:remove": {
|
|
4647
4623
|
"aliases": [],
|
|
4648
4624
|
"args": {
|
|
4649
4625
|
"team_id": {
|
|
4650
4626
|
"description": "Team ID",
|
|
4651
4627
|
"name": "team_id",
|
|
4652
4628
|
"required": true
|
|
4629
|
+
},
|
|
4630
|
+
"alias": {
|
|
4631
|
+
"description": "Face alias to remove",
|
|
4632
|
+
"name": "alias",
|
|
4633
|
+
"required": true
|
|
4653
4634
|
}
|
|
4654
4635
|
},
|
|
4655
|
-
"description": "
|
|
4636
|
+
"description": "Remove a face from a team",
|
|
4656
4637
|
"flags": {
|
|
4657
4638
|
"json": {
|
|
4658
4639
|
"description": "Format output as json.",
|
|
@@ -4684,39 +4665,11 @@
|
|
|
4684
4665
|
"hasDynamicHelp": false,
|
|
4685
4666
|
"multiple": false,
|
|
4686
4667
|
"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"
|
|
4715
4668
|
}
|
|
4716
4669
|
},
|
|
4717
4670
|
"hasDynamicHelp": false,
|
|
4718
4671
|
"hiddenAliases": [],
|
|
4719
|
-
"id": "team:
|
|
4672
|
+
"id": "team:remove",
|
|
4720
4673
|
"pluginAlias": "faces-cli",
|
|
4721
4674
|
"pluginName": "faces-cli",
|
|
4722
4675
|
"pluginType": "core",
|
|
@@ -4727,19 +4680,13 @@
|
|
|
4727
4680
|
"dist",
|
|
4728
4681
|
"commands",
|
|
4729
4682
|
"team",
|
|
4730
|
-
"
|
|
4683
|
+
"remove.js"
|
|
4731
4684
|
]
|
|
4732
4685
|
},
|
|
4733
|
-
"
|
|
4686
|
+
"keys:create": {
|
|
4734
4687
|
"aliases": [],
|
|
4735
|
-
"args": {
|
|
4736
|
-
|
|
4737
|
-
"description": "Team ID",
|
|
4738
|
-
"name": "team_id",
|
|
4739
|
-
"required": true
|
|
4740
|
-
}
|
|
4741
|
-
},
|
|
4742
|
-
"description": "Get a team by ID",
|
|
4688
|
+
"args": {},
|
|
4689
|
+
"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.",
|
|
4743
4690
|
"flags": {
|
|
4744
4691
|
"json": {
|
|
4745
4692
|
"description": "Format output as json.",
|
|
@@ -4771,11 +4718,53 @@
|
|
|
4771
4718
|
"hasDynamicHelp": false,
|
|
4772
4719
|
"multiple": false,
|
|
4773
4720
|
"type": "option"
|
|
4721
|
+
},
|
|
4722
|
+
"name": {
|
|
4723
|
+
"description": "Key name/label",
|
|
4724
|
+
"name": "name",
|
|
4725
|
+
"required": true,
|
|
4726
|
+
"hasDynamicHelp": false,
|
|
4727
|
+
"multiple": false,
|
|
4728
|
+
"type": "option"
|
|
4729
|
+
},
|
|
4730
|
+
"expires-days": {
|
|
4731
|
+
"description": "Expiry in days (omit for no expiry)",
|
|
4732
|
+
"name": "expires-days",
|
|
4733
|
+
"hasDynamicHelp": false,
|
|
4734
|
+
"multiple": false,
|
|
4735
|
+
"type": "option"
|
|
4736
|
+
},
|
|
4737
|
+
"budget": {
|
|
4738
|
+
"description": "Spend budget in USD",
|
|
4739
|
+
"name": "budget",
|
|
4740
|
+
"hasDynamicHelp": false,
|
|
4741
|
+
"multiple": false,
|
|
4742
|
+
"type": "option"
|
|
4743
|
+
},
|
|
4744
|
+
"face": {
|
|
4745
|
+
"description": "Allowed face alias (repeatable)",
|
|
4746
|
+
"name": "face",
|
|
4747
|
+
"hasDynamicHelp": false,
|
|
4748
|
+
"multiple": true,
|
|
4749
|
+
"type": "option"
|
|
4750
|
+
},
|
|
4751
|
+
"model": {
|
|
4752
|
+
"description": "Allowed model name (repeatable)",
|
|
4753
|
+
"name": "model",
|
|
4754
|
+
"hasDynamicHelp": false,
|
|
4755
|
+
"multiple": true,
|
|
4756
|
+
"type": "option"
|
|
4757
|
+
},
|
|
4758
|
+
"save": {
|
|
4759
|
+
"description": "Save the new key to ~/.faces/config.json as api_key (default: true; use --no-save to skip)",
|
|
4760
|
+
"name": "save",
|
|
4761
|
+
"allowNo": true,
|
|
4762
|
+
"type": "boolean"
|
|
4774
4763
|
}
|
|
4775
4764
|
},
|
|
4776
4765
|
"hasDynamicHelp": false,
|
|
4777
4766
|
"hiddenAliases": [],
|
|
4778
|
-
"id": "
|
|
4767
|
+
"id": "keys:create",
|
|
4779
4768
|
"pluginAlias": "faces-cli",
|
|
4780
4769
|
"pluginName": "faces-cli",
|
|
4781
4770
|
"pluginType": "core",
|
|
@@ -4785,14 +4774,14 @@
|
|
|
4785
4774
|
"relativePath": [
|
|
4786
4775
|
"dist",
|
|
4787
4776
|
"commands",
|
|
4788
|
-
"
|
|
4789
|
-
"
|
|
4777
|
+
"keys",
|
|
4778
|
+
"create.js"
|
|
4790
4779
|
]
|
|
4791
4780
|
},
|
|
4792
|
-
"
|
|
4781
|
+
"keys:list": {
|
|
4793
4782
|
"aliases": [],
|
|
4794
4783
|
"args": {},
|
|
4795
|
-
"description": "List
|
|
4784
|
+
"description": "List all API keys (JWT required)",
|
|
4796
4785
|
"flags": {
|
|
4797
4786
|
"json": {
|
|
4798
4787
|
"description": "Format output as json.",
|
|
@@ -4828,7 +4817,7 @@
|
|
|
4828
4817
|
},
|
|
4829
4818
|
"hasDynamicHelp": false,
|
|
4830
4819
|
"hiddenAliases": [],
|
|
4831
|
-
"id": "
|
|
4820
|
+
"id": "keys:list",
|
|
4832
4821
|
"pluginAlias": "faces-cli",
|
|
4833
4822
|
"pluginName": "faces-cli",
|
|
4834
4823
|
"pluginType": "core",
|
|
@@ -4838,24 +4827,20 @@
|
|
|
4838
4827
|
"relativePath": [
|
|
4839
4828
|
"dist",
|
|
4840
4829
|
"commands",
|
|
4841
|
-
"
|
|
4830
|
+
"keys",
|
|
4842
4831
|
"list.js"
|
|
4843
4832
|
]
|
|
4844
4833
|
},
|
|
4845
|
-
"
|
|
4834
|
+
"keys:revoke": {
|
|
4846
4835
|
"aliases": [],
|
|
4847
4836
|
"args": {
|
|
4848
|
-
"
|
|
4849
|
-
"description": "
|
|
4850
|
-
"name": "
|
|
4837
|
+
"key_id": {
|
|
4838
|
+
"description": "Key ID",
|
|
4839
|
+
"name": "key_id",
|
|
4851
4840
|
"required": true
|
|
4852
4841
|
}
|
|
4853
4842
|
},
|
|
4854
|
-
"description": "
|
|
4855
|
-
"examples": [
|
|
4856
|
-
"<%= config.bin %> <%= command.id %> TEAM_ID",
|
|
4857
|
-
"<%= config.bin %> <%= command.id %> TEAM_ID --json"
|
|
4858
|
-
],
|
|
4843
|
+
"description": "Revoke an API key (JWT required)",
|
|
4859
4844
|
"flags": {
|
|
4860
4845
|
"json": {
|
|
4861
4846
|
"description": "Format output as json.",
|
|
@@ -4887,11 +4872,17 @@
|
|
|
4887
4872
|
"hasDynamicHelp": false,
|
|
4888
4873
|
"multiple": false,
|
|
4889
4874
|
"type": "option"
|
|
4875
|
+
},
|
|
4876
|
+
"yes": {
|
|
4877
|
+
"description": "Skip confirmation",
|
|
4878
|
+
"name": "yes",
|
|
4879
|
+
"allowNo": false,
|
|
4880
|
+
"type": "boolean"
|
|
4890
4881
|
}
|
|
4891
4882
|
},
|
|
4892
4883
|
"hasDynamicHelp": false,
|
|
4893
4884
|
"hiddenAliases": [],
|
|
4894
|
-
"id": "
|
|
4885
|
+
"id": "keys:revoke",
|
|
4895
4886
|
"pluginAlias": "faces-cli",
|
|
4896
4887
|
"pluginName": "faces-cli",
|
|
4897
4888
|
"pluginType": "core",
|
|
@@ -4901,25 +4892,20 @@
|
|
|
4901
4892
|
"relativePath": [
|
|
4902
4893
|
"dist",
|
|
4903
4894
|
"commands",
|
|
4904
|
-
"
|
|
4905
|
-
"
|
|
4895
|
+
"keys",
|
|
4896
|
+
"revoke.js"
|
|
4906
4897
|
]
|
|
4907
4898
|
},
|
|
4908
|
-
"
|
|
4899
|
+
"keys:update": {
|
|
4909
4900
|
"aliases": [],
|
|
4910
4901
|
"args": {
|
|
4911
|
-
"
|
|
4912
|
-
"description": "
|
|
4913
|
-
"name": "
|
|
4914
|
-
"required": true
|
|
4915
|
-
},
|
|
4916
|
-
"alias": {
|
|
4917
|
-
"description": "Face alias to remove",
|
|
4918
|
-
"name": "alias",
|
|
4902
|
+
"key_id": {
|
|
4903
|
+
"description": "Key ID",
|
|
4904
|
+
"name": "key_id",
|
|
4919
4905
|
"required": true
|
|
4920
4906
|
}
|
|
4921
4907
|
},
|
|
4922
|
-
"description": "
|
|
4908
|
+
"description": "Update API key metadata (JWT required)",
|
|
4923
4909
|
"flags": {
|
|
4924
4910
|
"json": {
|
|
4925
4911
|
"description": "Format output as json.",
|
|
@@ -4951,11 +4937,31 @@
|
|
|
4951
4937
|
"hasDynamicHelp": false,
|
|
4952
4938
|
"multiple": false,
|
|
4953
4939
|
"type": "option"
|
|
4940
|
+
},
|
|
4941
|
+
"name": {
|
|
4942
|
+
"description": "New key name",
|
|
4943
|
+
"name": "name",
|
|
4944
|
+
"hasDynamicHelp": false,
|
|
4945
|
+
"multiple": false,
|
|
4946
|
+
"type": "option"
|
|
4947
|
+
},
|
|
4948
|
+
"budget": {
|
|
4949
|
+
"description": "New spend budget in USD",
|
|
4950
|
+
"name": "budget",
|
|
4951
|
+
"hasDynamicHelp": false,
|
|
4952
|
+
"multiple": false,
|
|
4953
|
+
"type": "option"
|
|
4954
|
+
},
|
|
4955
|
+
"reset-spent": {
|
|
4956
|
+
"description": "Reset spent amount to zero",
|
|
4957
|
+
"name": "reset-spent",
|
|
4958
|
+
"allowNo": false,
|
|
4959
|
+
"type": "boolean"
|
|
4954
4960
|
}
|
|
4955
4961
|
},
|
|
4956
4962
|
"hasDynamicHelp": false,
|
|
4957
4963
|
"hiddenAliases": [],
|
|
4958
|
-
"id": "
|
|
4964
|
+
"id": "keys:update",
|
|
4959
4965
|
"pluginAlias": "faces-cli",
|
|
4960
4966
|
"pluginName": "faces-cli",
|
|
4961
4967
|
"pluginType": "core",
|
|
@@ -4965,8 +4971,8 @@
|
|
|
4965
4971
|
"relativePath": [
|
|
4966
4972
|
"dist",
|
|
4967
4973
|
"commands",
|
|
4968
|
-
"
|
|
4969
|
-
"
|
|
4974
|
+
"keys",
|
|
4975
|
+
"update.js"
|
|
4970
4976
|
]
|
|
4971
4977
|
},
|
|
4972
4978
|
"billing:subscription:activate": {
|
|
@@ -5212,7 +5218,7 @@
|
|
|
5212
5218
|
"type": "option"
|
|
5213
5219
|
},
|
|
5214
5220
|
"medium": {
|
|
5215
|
-
"description": "What sort of writing this is
|
|
5221
|
+
"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.",
|
|
5216
5222
|
"name": "medium",
|
|
5217
5223
|
"hasDynamicHelp": false,
|
|
5218
5224
|
"multiple": false,
|
|
@@ -5372,7 +5378,7 @@
|
|
|
5372
5378
|
"type": "option"
|
|
5373
5379
|
},
|
|
5374
5380
|
"medium": {
|
|
5375
|
-
"description": "What sort of writing this is
|
|
5381
|
+
"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.",
|
|
5376
5382
|
"name": "medium",
|
|
5377
5383
|
"hasDynamicHelp": false,
|
|
5378
5384
|
"multiple": false,
|
|
@@ -5531,14 +5537,14 @@
|
|
|
5531
5537
|
"type": "option"
|
|
5532
5538
|
},
|
|
5533
5539
|
"file": {
|
|
5534
|
-
"description": "Read content from file (repeatable
|
|
5540
|
+
"description": "Read content from file (repeatable; each file becomes its own document)",
|
|
5535
5541
|
"name": "file",
|
|
5536
5542
|
"hasDynamicHelp": false,
|
|
5537
5543
|
"multiple": true,
|
|
5538
5544
|
"type": "option"
|
|
5539
5545
|
},
|
|
5540
5546
|
"medium": {
|
|
5541
|
-
"description": "What sort of writing this is
|
|
5547
|
+
"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.",
|
|
5542
5548
|
"name": "medium",
|
|
5543
5549
|
"hasDynamicHelp": false,
|
|
5544
5550
|
"multiple": false,
|
|
@@ -6016,7 +6022,12 @@
|
|
|
6016
6022
|
"required": true
|
|
6017
6023
|
}
|
|
6018
6024
|
},
|
|
6019
|
-
"description": "Edit a thread
|
|
6025
|
+
"description": "Edit a thread: its label, what medium it is read as, and/or which speaker is the face.",
|
|
6026
|
+
"examples": [
|
|
6027
|
+
"<%= config.bin %> <%= command.id %> THREAD_ID --label \"Interview\"",
|
|
6028
|
+
"<%= config.bin %> <%= command.id %> THREAD_ID --medium lecture",
|
|
6029
|
+
"<%= config.bin %> <%= command.id %> THREAD_ID --clear-medium"
|
|
6030
|
+
],
|
|
6020
6031
|
"flags": {
|
|
6021
6032
|
"json": {
|
|
6022
6033
|
"description": "Format output as json.",
|
|
@@ -6062,6 +6073,25 @@
|
|
|
6062
6073
|
"hasDynamicHelp": false,
|
|
6063
6074
|
"multiple": false,
|
|
6064
6075
|
"type": "option"
|
|
6076
|
+
},
|
|
6077
|
+
"medium": {
|
|
6078
|
+
"description": "What this thread should be read as. 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. This is a correction that sticks: it overrides what an imported corpus arrived as, without changing the record of what that was.",
|
|
6079
|
+
"exclusive": [
|
|
6080
|
+
"clear-medium"
|
|
6081
|
+
],
|
|
6082
|
+
"name": "medium",
|
|
6083
|
+
"hasDynamicHelp": false,
|
|
6084
|
+
"multiple": false,
|
|
6085
|
+
"type": "option"
|
|
6086
|
+
},
|
|
6087
|
+
"clear-medium": {
|
|
6088
|
+
"description": "Remove a medium correction, so the thread is read as whatever it arrived as.",
|
|
6089
|
+
"exclusive": [
|
|
6090
|
+
"medium"
|
|
6091
|
+
],
|
|
6092
|
+
"name": "clear-medium",
|
|
6093
|
+
"allowNo": false,
|
|
6094
|
+
"type": "boolean"
|
|
6065
6095
|
}
|
|
6066
6096
|
},
|
|
6067
6097
|
"hasDynamicHelp": false,
|
|
@@ -7127,5 +7157,5 @@
|
|
|
7127
7157
|
]
|
|
7128
7158
|
}
|
|
7129
7159
|
},
|
|
7130
|
-
"version": "1.8.
|
|
7160
|
+
"version": "1.8.7"
|
|
7131
7161
|
}
|