faces-cli 1.8.6 → 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/pause.js +2 -2
- package/dist/commands/face/diff.js +1 -1
- 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/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 +13 -4
- package/dist/style.js +10 -0
- package/dist/utils.js +2 -2
- package/oclif.manifest.json +725 -725
- 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,
|
|
@@ -2890,7 +2890,7 @@
|
|
|
2890
2890
|
"required": true
|
|
2891
2891
|
}
|
|
2892
2892
|
},
|
|
2893
|
-
"description": "Lock a face (read-only). A locked face still reads and chats normally, but it
|
|
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
2894
|
"examples": [
|
|
2895
2895
|
"<%= config.bin %> <%= command.id %> socrates"
|
|
2896
2896
|
],
|
|
@@ -2986,7 +2986,7 @@
|
|
|
2986
2986
|
"type": "option"
|
|
2987
2987
|
},
|
|
2988
2988
|
"k": {
|
|
2989
|
-
"description": "Number of results (1
|
|
2989
|
+
"description": "Number of results (1-20)",
|
|
2990
2990
|
"name": "k",
|
|
2991
2991
|
"default": 5,
|
|
2992
2992
|
"hasDynamicHelp": false,
|
|
@@ -3153,7 +3153,7 @@
|
|
|
3153
3153
|
"type": "boolean"
|
|
3154
3154
|
},
|
|
3155
3155
|
"add": {
|
|
3156
|
-
"description": "Add an account, keeping everyone already on the list
|
|
3156
|
+
"description": "Add an account, keeping everyone already on the list. Username or email (repeatable)",
|
|
3157
3157
|
"exclusive": [
|
|
3158
3158
|
"with",
|
|
3159
3159
|
"none"
|
|
@@ -3473,7 +3473,7 @@
|
|
|
3473
3473
|
"required": true
|
|
3474
3474
|
}
|
|
3475
3475
|
},
|
|
3476
|
-
"description": "Stop publishing a face. Anyone it is individually shared with keeps their access
|
|
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.",
|
|
3477
3477
|
"flags": {
|
|
3478
3478
|
"json": {
|
|
3479
3479
|
"description": "Format output as json.",
|
|
@@ -3532,7 +3532,7 @@
|
|
|
3532
3532
|
"required": true
|
|
3533
3533
|
}
|
|
3534
3534
|
},
|
|
3535
|
-
"description": "Revoke access to a shared face. Takes effect immediately
|
|
3535
|
+
"description": "Revoke access to a shared face. Takes effect immediately. There is no grace period.",
|
|
3536
3536
|
"examples": [
|
|
3537
3537
|
"<%= config.bin %> <%= command.id %> alice --from dana --yes",
|
|
3538
3538
|
"<%= config.bin %> <%= command.id %> alice --all --yes"
|
|
@@ -3611,10 +3611,20 @@
|
|
|
3611
3611
|
"unshare.js"
|
|
3612
3612
|
]
|
|
3613
3613
|
},
|
|
3614
|
-
"
|
|
3614
|
+
"style:delete": {
|
|
3615
3615
|
"aliases": [],
|
|
3616
|
-
"args": {
|
|
3617
|
-
|
|
3616
|
+
"args": {
|
|
3617
|
+
"alias": {
|
|
3618
|
+
"description": "Face alias",
|
|
3619
|
+
"name": "alias",
|
|
3620
|
+
"required": true
|
|
3621
|
+
}
|
|
3622
|
+
},
|
|
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
|
+
],
|
|
3618
3628
|
"flags": {
|
|
3619
3629
|
"json": {
|
|
3620
3630
|
"description": "Format output as json.",
|
|
@@ -3647,52 +3657,16 @@
|
|
|
3647
3657
|
"multiple": false,
|
|
3648
3658
|
"type": "option"
|
|
3649
3659
|
},
|
|
3650
|
-
"
|
|
3651
|
-
"description": "
|
|
3652
|
-
"name": "
|
|
3653
|
-
"
|
|
3654
|
-
"hasDynamicHelp": false,
|
|
3655
|
-
"multiple": false,
|
|
3656
|
-
"type": "option"
|
|
3657
|
-
},
|
|
3658
|
-
"expires-days": {
|
|
3659
|
-
"description": "Expiry in days (omit for no expiry)",
|
|
3660
|
-
"name": "expires-days",
|
|
3661
|
-
"hasDynamicHelp": false,
|
|
3662
|
-
"multiple": false,
|
|
3663
|
-
"type": "option"
|
|
3664
|
-
},
|
|
3665
|
-
"budget": {
|
|
3666
|
-
"description": "Spend budget in USD",
|
|
3667
|
-
"name": "budget",
|
|
3668
|
-
"hasDynamicHelp": false,
|
|
3669
|
-
"multiple": false,
|
|
3670
|
-
"type": "option"
|
|
3671
|
-
},
|
|
3672
|
-
"face": {
|
|
3673
|
-
"description": "Allowed face alias (repeatable)",
|
|
3674
|
-
"name": "face",
|
|
3675
|
-
"hasDynamicHelp": false,
|
|
3676
|
-
"multiple": true,
|
|
3677
|
-
"type": "option"
|
|
3678
|
-
},
|
|
3679
|
-
"model": {
|
|
3680
|
-
"description": "Allowed model name (repeatable)",
|
|
3681
|
-
"name": "model",
|
|
3682
|
-
"hasDynamicHelp": false,
|
|
3683
|
-
"multiple": true,
|
|
3684
|
-
"type": "option"
|
|
3685
|
-
},
|
|
3686
|
-
"save": {
|
|
3687
|
-
"description": "Save the new key to ~/.faces/config.json as api_key (default: true; use --no-save to skip)",
|
|
3688
|
-
"name": "save",
|
|
3689
|
-
"allowNo": true,
|
|
3660
|
+
"yes": {
|
|
3661
|
+
"description": "Skip confirmation",
|
|
3662
|
+
"name": "yes",
|
|
3663
|
+
"allowNo": false,
|
|
3690
3664
|
"type": "boolean"
|
|
3691
3665
|
}
|
|
3692
3666
|
},
|
|
3693
3667
|
"hasDynamicHelp": false,
|
|
3694
3668
|
"hiddenAliases": [],
|
|
3695
|
-
"id": "
|
|
3669
|
+
"id": "style:delete",
|
|
3696
3670
|
"pluginAlias": "faces-cli",
|
|
3697
3671
|
"pluginName": "faces-cli",
|
|
3698
3672
|
"pluginType": "core",
|
|
@@ -3702,14 +3676,26 @@
|
|
|
3702
3676
|
"relativePath": [
|
|
3703
3677
|
"dist",
|
|
3704
3678
|
"commands",
|
|
3705
|
-
"
|
|
3706
|
-
"
|
|
3679
|
+
"style",
|
|
3680
|
+
"delete.js"
|
|
3707
3681
|
]
|
|
3708
3682
|
},
|
|
3709
|
-
"
|
|
3683
|
+
"style:make": {
|
|
3710
3684
|
"aliases": [],
|
|
3711
|
-
"args": {
|
|
3712
|
-
|
|
3685
|
+
"args": {
|
|
3686
|
+
"alias": {
|
|
3687
|
+
"description": "Face alias",
|
|
3688
|
+
"name": "alias",
|
|
3689
|
+
"required": true
|
|
3690
|
+
}
|
|
3691
|
+
},
|
|
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.",
|
|
3693
|
+
"examples": [
|
|
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"
|
|
3698
|
+
],
|
|
3713
3699
|
"flags": {
|
|
3714
3700
|
"json": {
|
|
3715
3701
|
"description": "Format output as json.",
|
|
@@ -3741,11 +3727,71 @@
|
|
|
3741
3727
|
"hasDynamicHelp": false,
|
|
3742
3728
|
"multiple": false,
|
|
3743
3729
|
"type": "option"
|
|
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",
|
|
3741
|
+
"allowNo": false,
|
|
3742
|
+
"type": "boolean"
|
|
3743
|
+
},
|
|
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",
|
|
3747
|
+
"hasDynamicHelp": false,
|
|
3748
|
+
"multiple": false,
|
|
3749
|
+
"type": "option"
|
|
3750
|
+
},
|
|
3751
|
+
"model": {
|
|
3752
|
+
"description": "Analyst model (default: gpt-5.6-terra)",
|
|
3753
|
+
"name": "model",
|
|
3754
|
+
"hasDynamicHelp": false,
|
|
3755
|
+
"multiple": false,
|
|
3756
|
+
"type": "option"
|
|
3757
|
+
},
|
|
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,
|
|
3787
|
+
"hasDynamicHelp": false,
|
|
3788
|
+
"multiple": false,
|
|
3789
|
+
"type": "option"
|
|
3744
3790
|
}
|
|
3745
3791
|
},
|
|
3746
3792
|
"hasDynamicHelp": false,
|
|
3747
3793
|
"hiddenAliases": [],
|
|
3748
|
-
"id": "
|
|
3794
|
+
"id": "style:make",
|
|
3749
3795
|
"pluginAlias": "faces-cli",
|
|
3750
3796
|
"pluginName": "faces-cli",
|
|
3751
3797
|
"pluginType": "core",
|
|
@@ -3755,20 +3801,24 @@
|
|
|
3755
3801
|
"relativePath": [
|
|
3756
3802
|
"dist",
|
|
3757
3803
|
"commands",
|
|
3758
|
-
"
|
|
3759
|
-
"
|
|
3804
|
+
"style",
|
|
3805
|
+
"make.js"
|
|
3760
3806
|
]
|
|
3761
3807
|
},
|
|
3762
|
-
"
|
|
3808
|
+
"style:revert": {
|
|
3763
3809
|
"aliases": [],
|
|
3764
3810
|
"args": {
|
|
3765
|
-
"
|
|
3766
|
-
"description": "
|
|
3767
|
-
"name": "
|
|
3811
|
+
"alias": {
|
|
3812
|
+
"description": "Face alias",
|
|
3813
|
+
"name": "alias",
|
|
3768
3814
|
"required": true
|
|
3769
3815
|
}
|
|
3770
3816
|
},
|
|
3771
|
-
"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.",
|
|
3818
|
+
"examples": [
|
|
3819
|
+
"<%= config.bin %> <%= command.id %> alice --yes",
|
|
3820
|
+
"<%= config.bin %> <%= command.id %> alice --medium email --yes"
|
|
3821
|
+
],
|
|
3772
3822
|
"flags": {
|
|
3773
3823
|
"json": {
|
|
3774
3824
|
"description": "Format output as json.",
|
|
@@ -3801,6 +3851,13 @@
|
|
|
3801
3851
|
"multiple": false,
|
|
3802
3852
|
"type": "option"
|
|
3803
3853
|
},
|
|
3854
|
+
"medium": {
|
|
3855
|
+
"description": "Which style to step back, when the face has more than one. See faces style:versions <alias>.",
|
|
3856
|
+
"name": "medium",
|
|
3857
|
+
"hasDynamicHelp": false,
|
|
3858
|
+
"multiple": false,
|
|
3859
|
+
"type": "option"
|
|
3860
|
+
},
|
|
3804
3861
|
"yes": {
|
|
3805
3862
|
"description": "Skip confirmation",
|
|
3806
3863
|
"name": "yes",
|
|
@@ -3810,7 +3867,7 @@
|
|
|
3810
3867
|
},
|
|
3811
3868
|
"hasDynamicHelp": false,
|
|
3812
3869
|
"hiddenAliases": [],
|
|
3813
|
-
"id": "
|
|
3870
|
+
"id": "style:revert",
|
|
3814
3871
|
"pluginAlias": "faces-cli",
|
|
3815
3872
|
"pluginName": "faces-cli",
|
|
3816
3873
|
"pluginType": "core",
|
|
@@ -3820,20 +3877,25 @@
|
|
|
3820
3877
|
"relativePath": [
|
|
3821
3878
|
"dist",
|
|
3822
3879
|
"commands",
|
|
3823
|
-
"
|
|
3824
|
-
"
|
|
3880
|
+
"style",
|
|
3881
|
+
"revert.js"
|
|
3825
3882
|
]
|
|
3826
3883
|
},
|
|
3827
|
-
"
|
|
3884
|
+
"style:status": {
|
|
3828
3885
|
"aliases": [],
|
|
3829
3886
|
"args": {
|
|
3830
|
-
"
|
|
3831
|
-
"description": "
|
|
3832
|
-
"name": "
|
|
3833
|
-
"required":
|
|
3887
|
+
"job_id": {
|
|
3888
|
+
"description": "Build job id",
|
|
3889
|
+
"name": "job_id",
|
|
3890
|
+
"required": false
|
|
3834
3891
|
}
|
|
3835
3892
|
},
|
|
3836
|
-
"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.",
|
|
3894
|
+
"examples": [
|
|
3895
|
+
"<%= config.bin %> <%= command.id %> 7a8b9c0d",
|
|
3896
|
+
"<%= config.bin %> <%= command.id %> --face alice",
|
|
3897
|
+
"<%= config.bin %> <%= command.id %> 7a8b9c0d --wait"
|
|
3898
|
+
],
|
|
3837
3899
|
"flags": {
|
|
3838
3900
|
"json": {
|
|
3839
3901
|
"description": "Format output as json.",
|
|
@@ -3866,30 +3928,39 @@
|
|
|
3866
3928
|
"multiple": false,
|
|
3867
3929
|
"type": "option"
|
|
3868
3930
|
},
|
|
3869
|
-
"
|
|
3870
|
-
"description": "
|
|
3871
|
-
"name": "
|
|
3931
|
+
"face": {
|
|
3932
|
+
"description": "List recent builds for this face instead of reading one job",
|
|
3933
|
+
"name": "face",
|
|
3872
3934
|
"hasDynamicHelp": false,
|
|
3873
3935
|
"multiple": false,
|
|
3874
3936
|
"type": "option"
|
|
3875
3937
|
},
|
|
3876
|
-
"
|
|
3877
|
-
"description": "
|
|
3878
|
-
"name": "
|
|
3938
|
+
"limit": {
|
|
3939
|
+
"description": "How many builds to list with --face (default: 10)",
|
|
3940
|
+
"name": "limit",
|
|
3941
|
+
"default": 10,
|
|
3879
3942
|
"hasDynamicHelp": false,
|
|
3880
3943
|
"multiple": false,
|
|
3881
3944
|
"type": "option"
|
|
3882
3945
|
},
|
|
3883
|
-
"
|
|
3884
|
-
"description": "
|
|
3885
|
-
"name": "
|
|
3946
|
+
"wait": {
|
|
3947
|
+
"description": "Block until the job finishes",
|
|
3948
|
+
"name": "wait",
|
|
3886
3949
|
"allowNo": false,
|
|
3887
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"
|
|
3888
3959
|
}
|
|
3889
3960
|
},
|
|
3890
3961
|
"hasDynamicHelp": false,
|
|
3891
3962
|
"hiddenAliases": [],
|
|
3892
|
-
"id": "
|
|
3963
|
+
"id": "style:status",
|
|
3893
3964
|
"pluginAlias": "faces-cli",
|
|
3894
3965
|
"pluginName": "faces-cli",
|
|
3895
3966
|
"pluginType": "core",
|
|
@@ -3899,23 +3970,29 @@
|
|
|
3899
3970
|
"relativePath": [
|
|
3900
3971
|
"dist",
|
|
3901
3972
|
"commands",
|
|
3902
|
-
"
|
|
3903
|
-
"
|
|
3973
|
+
"style",
|
|
3974
|
+
"status.js"
|
|
3904
3975
|
]
|
|
3905
3976
|
},
|
|
3906
|
-
"style:
|
|
3977
|
+
"style:upload": {
|
|
3907
3978
|
"aliases": [],
|
|
3908
3979
|
"args": {
|
|
3909
3980
|
"alias": {
|
|
3910
3981
|
"description": "Face alias",
|
|
3911
3982
|
"name": "alias",
|
|
3912
3983
|
"required": true
|
|
3984
|
+
},
|
|
3985
|
+
"file": {
|
|
3986
|
+
"description": "Corpus file",
|
|
3987
|
+
"name": "file",
|
|
3988
|
+
"required": true
|
|
3913
3989
|
}
|
|
3914
3990
|
},
|
|
3915
|
-
"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.",
|
|
3916
3992
|
"examples": [
|
|
3917
|
-
"<%= config.bin %> <%= command.id %> alice",
|
|
3918
|
-
"<%= config.bin %> <%= command.id %> alice --
|
|
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"
|
|
3919
3996
|
],
|
|
3920
3997
|
"flags": {
|
|
3921
3998
|
"json": {
|
|
@@ -3949,16 +4026,36 @@
|
|
|
3949
4026
|
"multiple": false,
|
|
3950
4027
|
"type": "option"
|
|
3951
4028
|
},
|
|
3952
|
-
"
|
|
3953
|
-
"description": "
|
|
3954
|
-
"name": "
|
|
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
|
+
"hasDynamicHelp": false,
|
|
4034
|
+
"multiple": false,
|
|
4035
|
+
"options": [
|
|
4036
|
+
"email_jsonl",
|
|
4037
|
+
"thread_json"
|
|
4038
|
+
],
|
|
4039
|
+
"type": "option"
|
|
4040
|
+
},
|
|
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,
|
|
4045
|
+
"hasDynamicHelp": false,
|
|
4046
|
+
"multiple": false,
|
|
4047
|
+
"type": "option"
|
|
4048
|
+
},
|
|
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",
|
|
3955
4052
|
"allowNo": false,
|
|
3956
4053
|
"type": "boolean"
|
|
3957
4054
|
}
|
|
3958
4055
|
},
|
|
3959
4056
|
"hasDynamicHelp": false,
|
|
3960
4057
|
"hiddenAliases": [],
|
|
3961
|
-
"id": "style:
|
|
4058
|
+
"id": "style:upload",
|
|
3962
4059
|
"pluginAlias": "faces-cli",
|
|
3963
4060
|
"pluginName": "faces-cli",
|
|
3964
4061
|
"pluginType": "core",
|
|
@@ -3969,10 +4066,10 @@
|
|
|
3969
4066
|
"dist",
|
|
3970
4067
|
"commands",
|
|
3971
4068
|
"style",
|
|
3972
|
-
"
|
|
4069
|
+
"upload.js"
|
|
3973
4070
|
]
|
|
3974
4071
|
},
|
|
3975
|
-
"style:
|
|
4072
|
+
"style:versions": {
|
|
3976
4073
|
"aliases": [],
|
|
3977
4074
|
"args": {
|
|
3978
4075
|
"alias": {
|
|
@@ -3981,12 +4078,10 @@
|
|
|
3981
4078
|
"required": true
|
|
3982
4079
|
}
|
|
3983
4080
|
},
|
|
3984
|
-
"description": "
|
|
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.",
|
|
3985
4082
|
"examples": [
|
|
3986
|
-
"<%= config.bin %> <%= command.id %> alice
|
|
3987
|
-
"<%= config.bin %> <%= command.id %> alice --
|
|
3988
|
-
"<%= config.bin %> <%= command.id %> alice --source 1a2b3c4d:essay",
|
|
3989
|
-
"<%= config.bin %> <%= command.id %> alice --all --medium essay --no-wait"
|
|
4083
|
+
"<%= config.bin %> <%= command.id %> alice",
|
|
4084
|
+
"<%= config.bin %> <%= command.id %> alice --json"
|
|
3990
4085
|
],
|
|
3991
4086
|
"flags": {
|
|
3992
4087
|
"json": {
|
|
@@ -4019,71 +4114,11 @@
|
|
|
4019
4114
|
"hasDynamicHelp": false,
|
|
4020
4115
|
"multiple": false,
|
|
4021
4116
|
"type": "option"
|
|
4022
|
-
},
|
|
4023
|
-
"source": {
|
|
4024
|
-
"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.",
|
|
4025
|
-
"name": "source",
|
|
4026
|
-
"hasDynamicHelp": false,
|
|
4027
|
-
"multiple": true,
|
|
4028
|
-
"type": "option"
|
|
4029
|
-
},
|
|
4030
|
-
"all": {
|
|
4031
|
-
"description": "Use every source on the face that is ready. Anything skipped is listed.",
|
|
4032
|
-
"name": "all",
|
|
4033
|
-
"allowNo": false,
|
|
4034
|
-
"type": "boolean"
|
|
4035
|
-
},
|
|
4036
|
-
"medium": {
|
|
4037
|
-
"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.",
|
|
4038
|
-
"name": "medium",
|
|
4039
|
-
"hasDynamicHelp": false,
|
|
4040
|
-
"multiple": false,
|
|
4041
|
-
"type": "option"
|
|
4042
|
-
},
|
|
4043
|
-
"model": {
|
|
4044
|
-
"description": "Analyst model (default: gpt-5.6-terra)",
|
|
4045
|
-
"name": "model",
|
|
4046
|
-
"hasDynamicHelp": false,
|
|
4047
|
-
"multiple": false,
|
|
4048
|
-
"type": "option"
|
|
4049
|
-
},
|
|
4050
|
-
"allow-paid": {
|
|
4051
|
-
"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.",
|
|
4052
|
-
"name": "allow-paid",
|
|
4053
|
-
"allowNo": false,
|
|
4054
|
-
"type": "boolean"
|
|
4055
|
-
},
|
|
4056
|
-
"compile": {
|
|
4057
|
-
"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.",
|
|
4058
|
-
"name": "compile",
|
|
4059
|
-
"allowNo": true,
|
|
4060
|
-
"type": "boolean"
|
|
4061
|
-
},
|
|
4062
|
-
"best-of": {
|
|
4063
|
-
"description": "Generate N candidates and keep the best (1-5, default 1)",
|
|
4064
|
-
"name": "best-of",
|
|
4065
|
-
"hasDynamicHelp": false,
|
|
4066
|
-
"multiple": false,
|
|
4067
|
-
"type": "option"
|
|
4068
|
-
},
|
|
4069
|
-
"no-wait": {
|
|
4070
|
-
"description": "Start the build and return the job id without polling.",
|
|
4071
|
-
"name": "no-wait",
|
|
4072
|
-
"allowNo": false,
|
|
4073
|
-
"type": "boolean"
|
|
4074
|
-
},
|
|
4075
|
-
"timeout": {
|
|
4076
|
-
"description": "How long to wait, in seconds (default: 3600)",
|
|
4077
|
-
"name": "timeout",
|
|
4078
|
-
"default": 3600,
|
|
4079
|
-
"hasDynamicHelp": false,
|
|
4080
|
-
"multiple": false,
|
|
4081
|
-
"type": "option"
|
|
4082
4117
|
}
|
|
4083
4118
|
},
|
|
4084
4119
|
"hasDynamicHelp": false,
|
|
4085
4120
|
"hiddenAliases": [],
|
|
4086
|
-
"id": "style:
|
|
4121
|
+
"id": "style:versions",
|
|
4087
4122
|
"pluginAlias": "faces-cli",
|
|
4088
4123
|
"pluginName": "faces-cli",
|
|
4089
4124
|
"pluginType": "core",
|
|
@@ -4094,22 +4129,22 @@
|
|
|
4094
4129
|
"dist",
|
|
4095
4130
|
"commands",
|
|
4096
4131
|
"style",
|
|
4097
|
-
"
|
|
4132
|
+
"versions.js"
|
|
4098
4133
|
]
|
|
4099
4134
|
},
|
|
4100
|
-
"
|
|
4135
|
+
"team:add": {
|
|
4101
4136
|
"aliases": [],
|
|
4102
4137
|
"args": {
|
|
4103
|
-
"
|
|
4104
|
-
"description": "
|
|
4105
|
-
"name": "
|
|
4138
|
+
"team_id": {
|
|
4139
|
+
"description": "Team ID",
|
|
4140
|
+
"name": "team_id",
|
|
4106
4141
|
"required": true
|
|
4107
4142
|
}
|
|
4108
4143
|
},
|
|
4109
|
-
"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.",
|
|
4110
4145
|
"examples": [
|
|
4111
|
-
"<%= config.bin %> <%= command.id %> alice --
|
|
4112
|
-
"<%= 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"
|
|
4113
4148
|
],
|
|
4114
4149
|
"flags": {
|
|
4115
4150
|
"json": {
|
|
@@ -4143,23 +4178,18 @@
|
|
|
4143
4178
|
"multiple": false,
|
|
4144
4179
|
"type": "option"
|
|
4145
4180
|
},
|
|
4146
|
-
"
|
|
4147
|
-
"description": "
|
|
4148
|
-
"name": "
|
|
4181
|
+
"face": {
|
|
4182
|
+
"description": "Face alias to add (repeatable)",
|
|
4183
|
+
"name": "face",
|
|
4184
|
+
"required": true,
|
|
4149
4185
|
"hasDynamicHelp": false,
|
|
4150
|
-
"multiple":
|
|
4186
|
+
"multiple": true,
|
|
4151
4187
|
"type": "option"
|
|
4152
|
-
},
|
|
4153
|
-
"yes": {
|
|
4154
|
-
"description": "Skip confirmation",
|
|
4155
|
-
"name": "yes",
|
|
4156
|
-
"allowNo": false,
|
|
4157
|
-
"type": "boolean"
|
|
4158
4188
|
}
|
|
4159
4189
|
},
|
|
4160
4190
|
"hasDynamicHelp": false,
|
|
4161
4191
|
"hiddenAliases": [],
|
|
4162
|
-
"id": "
|
|
4192
|
+
"id": "team:add",
|
|
4163
4193
|
"pluginAlias": "faces-cli",
|
|
4164
4194
|
"pluginName": "faces-cli",
|
|
4165
4195
|
"pluginType": "core",
|
|
@@ -4169,25 +4199,14 @@
|
|
|
4169
4199
|
"relativePath": [
|
|
4170
4200
|
"dist",
|
|
4171
4201
|
"commands",
|
|
4172
|
-
"
|
|
4173
|
-
"
|
|
4202
|
+
"team",
|
|
4203
|
+
"add.js"
|
|
4174
4204
|
]
|
|
4175
4205
|
},
|
|
4176
|
-
"
|
|
4206
|
+
"team:create": {
|
|
4177
4207
|
"aliases": [],
|
|
4178
|
-
"args": {
|
|
4179
|
-
|
|
4180
|
-
"description": "Build job id",
|
|
4181
|
-
"name": "job_id",
|
|
4182
|
-
"required": false
|
|
4183
|
-
}
|
|
4184
|
-
},
|
|
4185
|
-
"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.",
|
|
4186
|
-
"examples": [
|
|
4187
|
-
"<%= config.bin %> <%= command.id %> 7a8b9c0d",
|
|
4188
|
-
"<%= config.bin %> <%= command.id %> --face alice",
|
|
4189
|
-
"<%= config.bin %> <%= command.id %> 7a8b9c0d --wait"
|
|
4190
|
-
],
|
|
4208
|
+
"args": {},
|
|
4209
|
+
"description": "Create a new team",
|
|
4191
4210
|
"flags": {
|
|
4192
4211
|
"json": {
|
|
4193
4212
|
"description": "Format output as json.",
|
|
@@ -4220,39 +4239,46 @@
|
|
|
4220
4239
|
"multiple": false,
|
|
4221
4240
|
"type": "option"
|
|
4222
4241
|
},
|
|
4223
|
-
"
|
|
4224
|
-
"description": "
|
|
4225
|
-
"name": "
|
|
4242
|
+
"name": {
|
|
4243
|
+
"description": "Team name",
|
|
4244
|
+
"name": "name",
|
|
4245
|
+
"required": true,
|
|
4226
4246
|
"hasDynamicHelp": false,
|
|
4227
4247
|
"multiple": false,
|
|
4228
4248
|
"type": "option"
|
|
4229
4249
|
},
|
|
4230
|
-
"
|
|
4231
|
-
"description": "
|
|
4232
|
-
"name": "
|
|
4233
|
-
"default": 10,
|
|
4250
|
+
"description": {
|
|
4251
|
+
"description": "Plain-text team description (max 1500 chars)",
|
|
4252
|
+
"name": "description",
|
|
4234
4253
|
"hasDynamicHelp": false,
|
|
4235
4254
|
"multiple": false,
|
|
4236
4255
|
"type": "option"
|
|
4237
4256
|
},
|
|
4238
|
-
"
|
|
4239
|
-
"description": "
|
|
4240
|
-
"name": "
|
|
4241
|
-
"
|
|
4242
|
-
"
|
|
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"
|
|
4243
4263
|
},
|
|
4244
|
-
"
|
|
4245
|
-
"description": "
|
|
4246
|
-
"name": "
|
|
4247
|
-
"default": 3600,
|
|
4264
|
+
"protocol-file": {
|
|
4265
|
+
"description": "Read protocol from file",
|
|
4266
|
+
"name": "protocol-file",
|
|
4248
4267
|
"hasDynamicHelp": false,
|
|
4249
4268
|
"multiple": false,
|
|
4250
4269
|
"type": "option"
|
|
4270
|
+
},
|
|
4271
|
+
"tag": {
|
|
4272
|
+
"description": "Tag label (repeatable, lowercase)",
|
|
4273
|
+
"name": "tag",
|
|
4274
|
+
"hasDynamicHelp": false,
|
|
4275
|
+
"multiple": true,
|
|
4276
|
+
"type": "option"
|
|
4251
4277
|
}
|
|
4252
4278
|
},
|
|
4253
4279
|
"hasDynamicHelp": false,
|
|
4254
4280
|
"hiddenAliases": [],
|
|
4255
|
-
"id": "
|
|
4281
|
+
"id": "team:create",
|
|
4256
4282
|
"pluginAlias": "faces-cli",
|
|
4257
4283
|
"pluginName": "faces-cli",
|
|
4258
4284
|
"pluginType": "core",
|
|
@@ -4262,30 +4288,20 @@
|
|
|
4262
4288
|
"relativePath": [
|
|
4263
4289
|
"dist",
|
|
4264
4290
|
"commands",
|
|
4265
|
-
"
|
|
4266
|
-
"
|
|
4291
|
+
"team",
|
|
4292
|
+
"create.js"
|
|
4267
4293
|
]
|
|
4268
4294
|
},
|
|
4269
|
-
"
|
|
4295
|
+
"team:delete": {
|
|
4270
4296
|
"aliases": [],
|
|
4271
4297
|
"args": {
|
|
4272
|
-
"
|
|
4273
|
-
"description": "
|
|
4274
|
-
"name": "
|
|
4275
|
-
"required": true
|
|
4276
|
-
},
|
|
4277
|
-
"file": {
|
|
4278
|
-
"description": "Corpus file",
|
|
4279
|
-
"name": "file",
|
|
4298
|
+
"team_id": {
|
|
4299
|
+
"description": "Team ID",
|
|
4300
|
+
"name": "team_id",
|
|
4280
4301
|
"required": true
|
|
4281
4302
|
}
|
|
4282
4303
|
},
|
|
4283
|
-
"description": "
|
|
4284
|
-
"examples": [
|
|
4285
|
-
"<%= config.bin %> <%= command.id %> alice ./mail.jsonl",
|
|
4286
|
-
"<%= config.bin %> <%= command.id %> alice ./thread.json --type thread_json",
|
|
4287
|
-
"<%= config.bin %> <%= command.id %> alice ./mail.jsonl --messages-per-room 100 --strict"
|
|
4288
|
-
],
|
|
4304
|
+
"description": "Delete a team",
|
|
4289
4305
|
"flags": {
|
|
4290
4306
|
"json": {
|
|
4291
4307
|
"description": "Format output as json.",
|
|
@@ -4318,36 +4334,16 @@
|
|
|
4318
4334
|
"multiple": false,
|
|
4319
4335
|
"type": "option"
|
|
4320
4336
|
},
|
|
4321
|
-
"
|
|
4322
|
-
"description": "
|
|
4323
|
-
"name": "
|
|
4324
|
-
"default": "email_jsonl",
|
|
4325
|
-
"hasDynamicHelp": false,
|
|
4326
|
-
"multiple": false,
|
|
4327
|
-
"options": [
|
|
4328
|
-
"email_jsonl",
|
|
4329
|
-
"thread_json"
|
|
4330
|
-
],
|
|
4331
|
-
"type": "option"
|
|
4332
|
-
},
|
|
4333
|
-
"messages-per-room": {
|
|
4334
|
-
"description": "How many messages per room when the type is email_jsonl (1-1000, default: 50)",
|
|
4335
|
-
"name": "messages-per-room",
|
|
4336
|
-
"default": 50,
|
|
4337
|
-
"hasDynamicHelp": false,
|
|
4338
|
-
"multiple": false,
|
|
4339
|
-
"type": "option"
|
|
4340
|
-
},
|
|
4341
|
-
"strict": {
|
|
4342
|
-
"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.",
|
|
4343
|
-
"name": "strict",
|
|
4337
|
+
"yes": {
|
|
4338
|
+
"description": "Skip confirmation",
|
|
4339
|
+
"name": "yes",
|
|
4344
4340
|
"allowNo": false,
|
|
4345
4341
|
"type": "boolean"
|
|
4346
4342
|
}
|
|
4347
4343
|
},
|
|
4348
4344
|
"hasDynamicHelp": false,
|
|
4349
4345
|
"hiddenAliases": [],
|
|
4350
|
-
"id": "
|
|
4346
|
+
"id": "team:delete",
|
|
4351
4347
|
"pluginAlias": "faces-cli",
|
|
4352
4348
|
"pluginName": "faces-cli",
|
|
4353
4349
|
"pluginType": "core",
|
|
@@ -4357,24 +4353,20 @@
|
|
|
4357
4353
|
"relativePath": [
|
|
4358
4354
|
"dist",
|
|
4359
4355
|
"commands",
|
|
4360
|
-
"
|
|
4361
|
-
"
|
|
4356
|
+
"team",
|
|
4357
|
+
"delete.js"
|
|
4362
4358
|
]
|
|
4363
4359
|
},
|
|
4364
|
-
"
|
|
4360
|
+
"team:edit": {
|
|
4365
4361
|
"aliases": [],
|
|
4366
4362
|
"args": {
|
|
4367
|
-
"
|
|
4368
|
-
"description": "
|
|
4369
|
-
"name": "
|
|
4363
|
+
"team_id": {
|
|
4364
|
+
"description": "Team ID",
|
|
4365
|
+
"name": "team_id",
|
|
4370
4366
|
"required": true
|
|
4371
4367
|
}
|
|
4372
4368
|
},
|
|
4373
|
-
"description": "
|
|
4374
|
-
"examples": [
|
|
4375
|
-
"<%= config.bin %> <%= command.id %> alice",
|
|
4376
|
-
"<%= config.bin %> <%= command.id %> alice --json"
|
|
4377
|
-
],
|
|
4369
|
+
"description": "Edit a team",
|
|
4378
4370
|
"flags": {
|
|
4379
4371
|
"json": {
|
|
4380
4372
|
"description": "Format output as json.",
|
|
@@ -4406,11 +4398,39 @@
|
|
|
4406
4398
|
"hasDynamicHelp": false,
|
|
4407
4399
|
"multiple": false,
|
|
4408
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"
|
|
4409
4429
|
}
|
|
4410
4430
|
},
|
|
4411
4431
|
"hasDynamicHelp": false,
|
|
4412
4432
|
"hiddenAliases": [],
|
|
4413
|
-
"id": "
|
|
4433
|
+
"id": "team:edit",
|
|
4414
4434
|
"pluginAlias": "faces-cli",
|
|
4415
4435
|
"pluginName": "faces-cli",
|
|
4416
4436
|
"pluginType": "core",
|
|
@@ -4420,11 +4440,11 @@
|
|
|
4420
4440
|
"relativePath": [
|
|
4421
4441
|
"dist",
|
|
4422
4442
|
"commands",
|
|
4423
|
-
"
|
|
4424
|
-
"
|
|
4443
|
+
"team",
|
|
4444
|
+
"edit.js"
|
|
4425
4445
|
]
|
|
4426
4446
|
},
|
|
4427
|
-
"team:
|
|
4447
|
+
"team:get": {
|
|
4428
4448
|
"aliases": [],
|
|
4429
4449
|
"args": {
|
|
4430
4450
|
"team_id": {
|
|
@@ -4433,11 +4453,7 @@
|
|
|
4433
4453
|
"required": true
|
|
4434
4454
|
}
|
|
4435
4455
|
},
|
|
4436
|
-
"description": "
|
|
4437
|
-
"examples": [
|
|
4438
|
-
"<%= config.bin %> <%= command.id %> TEAM_ID --face alice --face bob",
|
|
4439
|
-
"<%= config.bin %> <%= command.id %> TEAM_ID --face head:socrates"
|
|
4440
|
-
],
|
|
4456
|
+
"description": "Get a team by ID",
|
|
4441
4457
|
"flags": {
|
|
4442
4458
|
"json": {
|
|
4443
4459
|
"description": "Format output as json.",
|
|
@@ -4469,19 +4485,11 @@
|
|
|
4469
4485
|
"hasDynamicHelp": false,
|
|
4470
4486
|
"multiple": false,
|
|
4471
4487
|
"type": "option"
|
|
4472
|
-
},
|
|
4473
|
-
"face": {
|
|
4474
|
-
"description": "Face alias to add (repeatable)",
|
|
4475
|
-
"name": "face",
|
|
4476
|
-
"required": true,
|
|
4477
|
-
"hasDynamicHelp": false,
|
|
4478
|
-
"multiple": true,
|
|
4479
|
-
"type": "option"
|
|
4480
4488
|
}
|
|
4481
4489
|
},
|
|
4482
4490
|
"hasDynamicHelp": false,
|
|
4483
4491
|
"hiddenAliases": [],
|
|
4484
|
-
"id": "team:
|
|
4492
|
+
"id": "team:get",
|
|
4485
4493
|
"pluginAlias": "faces-cli",
|
|
4486
4494
|
"pluginName": "faces-cli",
|
|
4487
4495
|
"pluginType": "core",
|
|
@@ -4492,13 +4500,13 @@
|
|
|
4492
4500
|
"dist",
|
|
4493
4501
|
"commands",
|
|
4494
4502
|
"team",
|
|
4495
|
-
"
|
|
4503
|
+
"get.js"
|
|
4496
4504
|
]
|
|
4497
4505
|
},
|
|
4498
|
-
"team:
|
|
4506
|
+
"team:list": {
|
|
4499
4507
|
"aliases": [],
|
|
4500
4508
|
"args": {},
|
|
4501
|
-
"description": "
|
|
4509
|
+
"description": "List your teams",
|
|
4502
4510
|
"flags": {
|
|
4503
4511
|
"json": {
|
|
4504
4512
|
"description": "Format output as json.",
|
|
@@ -4530,47 +4538,11 @@
|
|
|
4530
4538
|
"hasDynamicHelp": false,
|
|
4531
4539
|
"multiple": false,
|
|
4532
4540
|
"type": "option"
|
|
4533
|
-
},
|
|
4534
|
-
"name": {
|
|
4535
|
-
"description": "Team name",
|
|
4536
|
-
"name": "name",
|
|
4537
|
-
"required": true,
|
|
4538
|
-
"hasDynamicHelp": false,
|
|
4539
|
-
"multiple": false,
|
|
4540
|
-
"type": "option"
|
|
4541
|
-
},
|
|
4542
|
-
"description": {
|
|
4543
|
-
"description": "Plain-text team description (max 1500 chars)",
|
|
4544
|
-
"name": "description",
|
|
4545
|
-
"hasDynamicHelp": false,
|
|
4546
|
-
"multiple": false,
|
|
4547
|
-
"type": "option"
|
|
4548
|
-
},
|
|
4549
|
-
"protocol": {
|
|
4550
|
-
"description": "Protocol content (mermaid diagram or markdown, max 1000 words)",
|
|
4551
|
-
"name": "protocol",
|
|
4552
|
-
"hasDynamicHelp": false,
|
|
4553
|
-
"multiple": false,
|
|
4554
|
-
"type": "option"
|
|
4555
|
-
},
|
|
4556
|
-
"protocol-file": {
|
|
4557
|
-
"description": "Read protocol from file",
|
|
4558
|
-
"name": "protocol-file",
|
|
4559
|
-
"hasDynamicHelp": false,
|
|
4560
|
-
"multiple": false,
|
|
4561
|
-
"type": "option"
|
|
4562
|
-
},
|
|
4563
|
-
"tag": {
|
|
4564
|
-
"description": "Tag label (repeatable, lowercase)",
|
|
4565
|
-
"name": "tag",
|
|
4566
|
-
"hasDynamicHelp": false,
|
|
4567
|
-
"multiple": true,
|
|
4568
|
-
"type": "option"
|
|
4569
4541
|
}
|
|
4570
4542
|
},
|
|
4571
4543
|
"hasDynamicHelp": false,
|
|
4572
4544
|
"hiddenAliases": [],
|
|
4573
|
-
"id": "team:
|
|
4545
|
+
"id": "team:list",
|
|
4574
4546
|
"pluginAlias": "faces-cli",
|
|
4575
4547
|
"pluginName": "faces-cli",
|
|
4576
4548
|
"pluginType": "core",
|
|
@@ -4581,10 +4553,10 @@
|
|
|
4581
4553
|
"dist",
|
|
4582
4554
|
"commands",
|
|
4583
4555
|
"team",
|
|
4584
|
-
"
|
|
4556
|
+
"list.js"
|
|
4585
4557
|
]
|
|
4586
4558
|
},
|
|
4587
|
-
"team:
|
|
4559
|
+
"team:members": {
|
|
4588
4560
|
"aliases": [],
|
|
4589
4561
|
"args": {
|
|
4590
4562
|
"team_id": {
|
|
@@ -4593,7 +4565,11 @@
|
|
|
4593
4565
|
"required": true
|
|
4594
4566
|
}
|
|
4595
4567
|
},
|
|
4596
|
-
"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
|
+
],
|
|
4597
4573
|
"flags": {
|
|
4598
4574
|
"json": {
|
|
4599
4575
|
"description": "Format output as json.",
|
|
@@ -4625,17 +4601,11 @@
|
|
|
4625
4601
|
"hasDynamicHelp": false,
|
|
4626
4602
|
"multiple": false,
|
|
4627
4603
|
"type": "option"
|
|
4628
|
-
},
|
|
4629
|
-
"yes": {
|
|
4630
|
-
"description": "Skip confirmation",
|
|
4631
|
-
"name": "yes",
|
|
4632
|
-
"allowNo": false,
|
|
4633
|
-
"type": "boolean"
|
|
4634
4604
|
}
|
|
4635
4605
|
},
|
|
4636
4606
|
"hasDynamicHelp": false,
|
|
4637
4607
|
"hiddenAliases": [],
|
|
4638
|
-
"id": "team:
|
|
4608
|
+
"id": "team:members",
|
|
4639
4609
|
"pluginAlias": "faces-cli",
|
|
4640
4610
|
"pluginName": "faces-cli",
|
|
4641
4611
|
"pluginType": "core",
|
|
@@ -4646,19 +4616,24 @@
|
|
|
4646
4616
|
"dist",
|
|
4647
4617
|
"commands",
|
|
4648
4618
|
"team",
|
|
4649
|
-
"
|
|
4619
|
+
"members.js"
|
|
4650
4620
|
]
|
|
4651
4621
|
},
|
|
4652
|
-
"team:
|
|
4622
|
+
"team:remove": {
|
|
4653
4623
|
"aliases": [],
|
|
4654
4624
|
"args": {
|
|
4655
4625
|
"team_id": {
|
|
4656
4626
|
"description": "Team ID",
|
|
4657
4627
|
"name": "team_id",
|
|
4658
4628
|
"required": true
|
|
4629
|
+
},
|
|
4630
|
+
"alias": {
|
|
4631
|
+
"description": "Face alias to remove",
|
|
4632
|
+
"name": "alias",
|
|
4633
|
+
"required": true
|
|
4659
4634
|
}
|
|
4660
4635
|
},
|
|
4661
|
-
"description": "
|
|
4636
|
+
"description": "Remove a face from a team",
|
|
4662
4637
|
"flags": {
|
|
4663
4638
|
"json": {
|
|
4664
4639
|
"description": "Format output as json.",
|
|
@@ -4690,39 +4665,11 @@
|
|
|
4690
4665
|
"hasDynamicHelp": false,
|
|
4691
4666
|
"multiple": false,
|
|
4692
4667
|
"type": "option"
|
|
4693
|
-
},
|
|
4694
|
-
"name": {
|
|
4695
|
-
"description": "New team name",
|
|
4696
|
-
"name": "name",
|
|
4697
|
-
"hasDynamicHelp": false,
|
|
4698
|
-
"multiple": false,
|
|
4699
|
-
"type": "option"
|
|
4700
|
-
},
|
|
4701
|
-
"description": {
|
|
4702
|
-
"description": "New description (max 1500 chars)",
|
|
4703
|
-
"name": "description",
|
|
4704
|
-
"hasDynamicHelp": false,
|
|
4705
|
-
"multiple": false,
|
|
4706
|
-
"type": "option"
|
|
4707
|
-
},
|
|
4708
|
-
"protocol": {
|
|
4709
|
-
"description": "New protocol content",
|
|
4710
|
-
"name": "protocol",
|
|
4711
|
-
"hasDynamicHelp": false,
|
|
4712
|
-
"multiple": false,
|
|
4713
|
-
"type": "option"
|
|
4714
|
-
},
|
|
4715
|
-
"protocol-file": {
|
|
4716
|
-
"description": "Read protocol from file",
|
|
4717
|
-
"name": "protocol-file",
|
|
4718
|
-
"hasDynamicHelp": false,
|
|
4719
|
-
"multiple": false,
|
|
4720
|
-
"type": "option"
|
|
4721
4668
|
}
|
|
4722
4669
|
},
|
|
4723
4670
|
"hasDynamicHelp": false,
|
|
4724
4671
|
"hiddenAliases": [],
|
|
4725
|
-
"id": "team:
|
|
4672
|
+
"id": "team:remove",
|
|
4726
4673
|
"pluginAlias": "faces-cli",
|
|
4727
4674
|
"pluginName": "faces-cli",
|
|
4728
4675
|
"pluginType": "core",
|
|
@@ -4733,19 +4680,13 @@
|
|
|
4733
4680
|
"dist",
|
|
4734
4681
|
"commands",
|
|
4735
4682
|
"team",
|
|
4736
|
-
"
|
|
4683
|
+
"remove.js"
|
|
4737
4684
|
]
|
|
4738
4685
|
},
|
|
4739
|
-
"
|
|
4686
|
+
"keys:create": {
|
|
4740
4687
|
"aliases": [],
|
|
4741
|
-
"args": {
|
|
4742
|
-
|
|
4743
|
-
"description": "Team ID",
|
|
4744
|
-
"name": "team_id",
|
|
4745
|
-
"required": true
|
|
4746
|
-
}
|
|
4747
|
-
},
|
|
4748
|
-
"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.",
|
|
4749
4690
|
"flags": {
|
|
4750
4691
|
"json": {
|
|
4751
4692
|
"description": "Format output as json.",
|
|
@@ -4777,11 +4718,53 @@
|
|
|
4777
4718
|
"hasDynamicHelp": false,
|
|
4778
4719
|
"multiple": false,
|
|
4779
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"
|
|
4780
4763
|
}
|
|
4781
4764
|
},
|
|
4782
4765
|
"hasDynamicHelp": false,
|
|
4783
4766
|
"hiddenAliases": [],
|
|
4784
|
-
"id": "
|
|
4767
|
+
"id": "keys:create",
|
|
4785
4768
|
"pluginAlias": "faces-cli",
|
|
4786
4769
|
"pluginName": "faces-cli",
|
|
4787
4770
|
"pluginType": "core",
|
|
@@ -4791,14 +4774,14 @@
|
|
|
4791
4774
|
"relativePath": [
|
|
4792
4775
|
"dist",
|
|
4793
4776
|
"commands",
|
|
4794
|
-
"
|
|
4795
|
-
"
|
|
4777
|
+
"keys",
|
|
4778
|
+
"create.js"
|
|
4796
4779
|
]
|
|
4797
4780
|
},
|
|
4798
|
-
"
|
|
4781
|
+
"keys:list": {
|
|
4799
4782
|
"aliases": [],
|
|
4800
4783
|
"args": {},
|
|
4801
|
-
"description": "List
|
|
4784
|
+
"description": "List all API keys (JWT required)",
|
|
4802
4785
|
"flags": {
|
|
4803
4786
|
"json": {
|
|
4804
4787
|
"description": "Format output as json.",
|
|
@@ -4834,7 +4817,7 @@
|
|
|
4834
4817
|
},
|
|
4835
4818
|
"hasDynamicHelp": false,
|
|
4836
4819
|
"hiddenAliases": [],
|
|
4837
|
-
"id": "
|
|
4820
|
+
"id": "keys:list",
|
|
4838
4821
|
"pluginAlias": "faces-cli",
|
|
4839
4822
|
"pluginName": "faces-cli",
|
|
4840
4823
|
"pluginType": "core",
|
|
@@ -4844,24 +4827,20 @@
|
|
|
4844
4827
|
"relativePath": [
|
|
4845
4828
|
"dist",
|
|
4846
4829
|
"commands",
|
|
4847
|
-
"
|
|
4830
|
+
"keys",
|
|
4848
4831
|
"list.js"
|
|
4849
4832
|
]
|
|
4850
4833
|
},
|
|
4851
|
-
"
|
|
4834
|
+
"keys:revoke": {
|
|
4852
4835
|
"aliases": [],
|
|
4853
4836
|
"args": {
|
|
4854
|
-
"
|
|
4855
|
-
"description": "
|
|
4856
|
-
"name": "
|
|
4837
|
+
"key_id": {
|
|
4838
|
+
"description": "Key ID",
|
|
4839
|
+
"name": "key_id",
|
|
4857
4840
|
"required": true
|
|
4858
4841
|
}
|
|
4859
4842
|
},
|
|
4860
|
-
"description": "
|
|
4861
|
-
"examples": [
|
|
4862
|
-
"<%= config.bin %> <%= command.id %> TEAM_ID",
|
|
4863
|
-
"<%= config.bin %> <%= command.id %> TEAM_ID --json"
|
|
4864
|
-
],
|
|
4843
|
+
"description": "Revoke an API key (JWT required)",
|
|
4865
4844
|
"flags": {
|
|
4866
4845
|
"json": {
|
|
4867
4846
|
"description": "Format output as json.",
|
|
@@ -4893,11 +4872,17 @@
|
|
|
4893
4872
|
"hasDynamicHelp": false,
|
|
4894
4873
|
"multiple": false,
|
|
4895
4874
|
"type": "option"
|
|
4875
|
+
},
|
|
4876
|
+
"yes": {
|
|
4877
|
+
"description": "Skip confirmation",
|
|
4878
|
+
"name": "yes",
|
|
4879
|
+
"allowNo": false,
|
|
4880
|
+
"type": "boolean"
|
|
4896
4881
|
}
|
|
4897
4882
|
},
|
|
4898
4883
|
"hasDynamicHelp": false,
|
|
4899
4884
|
"hiddenAliases": [],
|
|
4900
|
-
"id": "
|
|
4885
|
+
"id": "keys:revoke",
|
|
4901
4886
|
"pluginAlias": "faces-cli",
|
|
4902
4887
|
"pluginName": "faces-cli",
|
|
4903
4888
|
"pluginType": "core",
|
|
@@ -4907,25 +4892,20 @@
|
|
|
4907
4892
|
"relativePath": [
|
|
4908
4893
|
"dist",
|
|
4909
4894
|
"commands",
|
|
4910
|
-
"
|
|
4911
|
-
"
|
|
4895
|
+
"keys",
|
|
4896
|
+
"revoke.js"
|
|
4912
4897
|
]
|
|
4913
4898
|
},
|
|
4914
|
-
"
|
|
4899
|
+
"keys:update": {
|
|
4915
4900
|
"aliases": [],
|
|
4916
4901
|
"args": {
|
|
4917
|
-
"
|
|
4918
|
-
"description": "
|
|
4919
|
-
"name": "
|
|
4920
|
-
"required": true
|
|
4921
|
-
},
|
|
4922
|
-
"alias": {
|
|
4923
|
-
"description": "Face alias to remove",
|
|
4924
|
-
"name": "alias",
|
|
4902
|
+
"key_id": {
|
|
4903
|
+
"description": "Key ID",
|
|
4904
|
+
"name": "key_id",
|
|
4925
4905
|
"required": true
|
|
4926
4906
|
}
|
|
4927
4907
|
},
|
|
4928
|
-
"description": "
|
|
4908
|
+
"description": "Update API key metadata (JWT required)",
|
|
4929
4909
|
"flags": {
|
|
4930
4910
|
"json": {
|
|
4931
4911
|
"description": "Format output as json.",
|
|
@@ -4957,11 +4937,31 @@
|
|
|
4957
4937
|
"hasDynamicHelp": false,
|
|
4958
4938
|
"multiple": false,
|
|
4959
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"
|
|
4960
4960
|
}
|
|
4961
4961
|
},
|
|
4962
4962
|
"hasDynamicHelp": false,
|
|
4963
4963
|
"hiddenAliases": [],
|
|
4964
|
-
"id": "
|
|
4964
|
+
"id": "keys:update",
|
|
4965
4965
|
"pluginAlias": "faces-cli",
|
|
4966
4966
|
"pluginName": "faces-cli",
|
|
4967
4967
|
"pluginType": "core",
|
|
@@ -4971,8 +4971,8 @@
|
|
|
4971
4971
|
"relativePath": [
|
|
4972
4972
|
"dist",
|
|
4973
4973
|
"commands",
|
|
4974
|
-
"
|
|
4975
|
-
"
|
|
4974
|
+
"keys",
|
|
4975
|
+
"update.js"
|
|
4976
4976
|
]
|
|
4977
4977
|
},
|
|
4978
4978
|
"billing:subscription:activate": {
|
|
@@ -5218,7 +5218,7 @@
|
|
|
5218
5218
|
"type": "option"
|
|
5219
5219
|
},
|
|
5220
5220
|
"medium": {
|
|
5221
|
-
"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.",
|
|
5222
5222
|
"name": "medium",
|
|
5223
5223
|
"hasDynamicHelp": false,
|
|
5224
5224
|
"multiple": false,
|
|
@@ -5378,7 +5378,7 @@
|
|
|
5378
5378
|
"type": "option"
|
|
5379
5379
|
},
|
|
5380
5380
|
"medium": {
|
|
5381
|
-
"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.",
|
|
5382
5382
|
"name": "medium",
|
|
5383
5383
|
"hasDynamicHelp": false,
|
|
5384
5384
|
"multiple": false,
|
|
@@ -5537,14 +5537,14 @@
|
|
|
5537
5537
|
"type": "option"
|
|
5538
5538
|
},
|
|
5539
5539
|
"file": {
|
|
5540
|
-
"description": "Read content from file (repeatable
|
|
5540
|
+
"description": "Read content from file (repeatable; each file becomes its own document)",
|
|
5541
5541
|
"name": "file",
|
|
5542
5542
|
"hasDynamicHelp": false,
|
|
5543
5543
|
"multiple": true,
|
|
5544
5544
|
"type": "option"
|
|
5545
5545
|
},
|
|
5546
5546
|
"medium": {
|
|
5547
|
-
"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.",
|
|
5548
5548
|
"name": "medium",
|
|
5549
5549
|
"hasDynamicHelp": false,
|
|
5550
5550
|
"multiple": false,
|
|
@@ -6075,7 +6075,7 @@
|
|
|
6075
6075
|
"type": "option"
|
|
6076
6076
|
},
|
|
6077
6077
|
"medium": {
|
|
6078
|
-
"description": "What this thread should be read as. What sort of writing this is
|
|
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
6079
|
"exclusive": [
|
|
6080
6080
|
"clear-medium"
|
|
6081
6081
|
],
|
|
@@ -7157,5 +7157,5 @@
|
|
|
7157
7157
|
]
|
|
7158
7158
|
}
|
|
7159
7159
|
},
|
|
7160
|
-
"version": "1.8.
|
|
7160
|
+
"version": "1.8.7"
|
|
7161
7161
|
}
|