faces-cli 1.6.17 → 1.6.18
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/client.d.ts +2 -0
- package/dist/client.js +12 -4
- package/dist/commands/auth/connect.d.ts +2 -1
- package/dist/commands/auth/connect.js +162 -194
- package/dist/commands/auth/connections.js +13 -1
- package/oclif.manifest.json +914 -920
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -120,10 +120,23 @@
|
|
|
120
120
|
"state.js"
|
|
121
121
|
]
|
|
122
122
|
},
|
|
123
|
-
"
|
|
123
|
+
"auth:connect": {
|
|
124
124
|
"aliases": [],
|
|
125
|
-
"args": {
|
|
126
|
-
|
|
125
|
+
"args": {
|
|
126
|
+
"provider": {
|
|
127
|
+
"description": "OAuth provider to connect",
|
|
128
|
+
"name": "provider",
|
|
129
|
+
"options": [
|
|
130
|
+
"openai"
|
|
131
|
+
],
|
|
132
|
+
"required": true
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"description": "Connect your ChatGPT account to Faces via device-code authorization (Subscription Connect plan)",
|
|
136
|
+
"examples": [
|
|
137
|
+
"<%= config.bin %> auth connect openai",
|
|
138
|
+
"<%= config.bin %> auth connect openai --json"
|
|
139
|
+
],
|
|
127
140
|
"flags": {
|
|
128
141
|
"json": {
|
|
129
142
|
"description": "Format output as json.",
|
|
@@ -159,7 +172,7 @@
|
|
|
159
172
|
},
|
|
160
173
|
"hasDynamicHelp": false,
|
|
161
174
|
"hiddenAliases": [],
|
|
162
|
-
"id": "
|
|
175
|
+
"id": "auth:connect",
|
|
163
176
|
"pluginAlias": "faces-cli",
|
|
164
177
|
"pluginName": "faces-cli",
|
|
165
178
|
"pluginType": "core",
|
|
@@ -169,14 +182,18 @@
|
|
|
169
182
|
"relativePath": [
|
|
170
183
|
"dist",
|
|
171
184
|
"commands",
|
|
172
|
-
"
|
|
173
|
-
"
|
|
185
|
+
"auth",
|
|
186
|
+
"connect.js"
|
|
174
187
|
]
|
|
175
188
|
},
|
|
176
|
-
"
|
|
189
|
+
"auth:connections": {
|
|
177
190
|
"aliases": [],
|
|
178
191
|
"args": {},
|
|
179
|
-
"description": "
|
|
192
|
+
"description": "List connected OAuth provider accounts",
|
|
193
|
+
"examples": [
|
|
194
|
+
"<%= config.bin %> auth connections",
|
|
195
|
+
"<%= config.bin %> auth connections --json"
|
|
196
|
+
],
|
|
180
197
|
"flags": {
|
|
181
198
|
"json": {
|
|
182
199
|
"description": "Format output as json.",
|
|
@@ -212,7 +229,7 @@
|
|
|
212
229
|
},
|
|
213
230
|
"hasDynamicHelp": false,
|
|
214
231
|
"hiddenAliases": [],
|
|
215
|
-
"id": "
|
|
232
|
+
"id": "auth:connections",
|
|
216
233
|
"pluginAlias": "faces-cli",
|
|
217
234
|
"pluginName": "faces-cli",
|
|
218
235
|
"pluginType": "core",
|
|
@@ -222,14 +239,26 @@
|
|
|
222
239
|
"relativePath": [
|
|
223
240
|
"dist",
|
|
224
241
|
"commands",
|
|
225
|
-
"
|
|
226
|
-
"
|
|
242
|
+
"auth",
|
|
243
|
+
"connections.js"
|
|
227
244
|
]
|
|
228
245
|
},
|
|
229
|
-
"
|
|
246
|
+
"auth:disconnect": {
|
|
230
247
|
"aliases": [],
|
|
231
|
-
"args": {
|
|
232
|
-
|
|
248
|
+
"args": {
|
|
249
|
+
"provider": {
|
|
250
|
+
"description": "OAuth provider to disconnect",
|
|
251
|
+
"name": "provider",
|
|
252
|
+
"options": [
|
|
253
|
+
"openai"
|
|
254
|
+
],
|
|
255
|
+
"required": true
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
"description": "Disconnect a linked OAuth provider account",
|
|
259
|
+
"examples": [
|
|
260
|
+
"<%= config.bin %> auth disconnect openai"
|
|
261
|
+
],
|
|
233
262
|
"flags": {
|
|
234
263
|
"json": {
|
|
235
264
|
"description": "Format output as json.",
|
|
@@ -261,18 +290,11 @@
|
|
|
261
290
|
"hasDynamicHelp": false,
|
|
262
291
|
"multiple": false,
|
|
263
292
|
"type": "option"
|
|
264
|
-
},
|
|
265
|
-
"provider": {
|
|
266
|
-
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
267
|
-
"name": "provider",
|
|
268
|
-
"hasDynamicHelp": false,
|
|
269
|
-
"multiple": false,
|
|
270
|
-
"type": "option"
|
|
271
293
|
}
|
|
272
294
|
},
|
|
273
295
|
"hasDynamicHelp": false,
|
|
274
296
|
"hiddenAliases": [],
|
|
275
|
-
"id": "
|
|
297
|
+
"id": "auth:disconnect",
|
|
276
298
|
"pluginAlias": "faces-cli",
|
|
277
299
|
"pluginName": "faces-cli",
|
|
278
300
|
"pluginType": "core",
|
|
@@ -282,14 +304,14 @@
|
|
|
282
304
|
"relativePath": [
|
|
283
305
|
"dist",
|
|
284
306
|
"commands",
|
|
285
|
-
"
|
|
286
|
-
"
|
|
307
|
+
"auth",
|
|
308
|
+
"disconnect.js"
|
|
287
309
|
]
|
|
288
310
|
},
|
|
289
|
-
"
|
|
311
|
+
"auth:login": {
|
|
290
312
|
"aliases": [],
|
|
291
313
|
"args": {},
|
|
292
|
-
"description": "
|
|
314
|
+
"description": "Login and save JWT credentials",
|
|
293
315
|
"flags": {
|
|
294
316
|
"json": {
|
|
295
317
|
"description": "Format output as json.",
|
|
@@ -321,11 +343,27 @@
|
|
|
321
343
|
"hasDynamicHelp": false,
|
|
322
344
|
"multiple": false,
|
|
323
345
|
"type": "option"
|
|
346
|
+
},
|
|
347
|
+
"email": {
|
|
348
|
+
"description": "Account email",
|
|
349
|
+
"name": "email",
|
|
350
|
+
"required": true,
|
|
351
|
+
"hasDynamicHelp": false,
|
|
352
|
+
"multiple": false,
|
|
353
|
+
"type": "option"
|
|
354
|
+
},
|
|
355
|
+
"password": {
|
|
356
|
+
"description": "Account password",
|
|
357
|
+
"name": "password",
|
|
358
|
+
"required": true,
|
|
359
|
+
"hasDynamicHelp": false,
|
|
360
|
+
"multiple": false,
|
|
361
|
+
"type": "option"
|
|
324
362
|
}
|
|
325
363
|
},
|
|
326
364
|
"hasDynamicHelp": false,
|
|
327
365
|
"hiddenAliases": [],
|
|
328
|
-
"id": "
|
|
366
|
+
"id": "auth:login",
|
|
329
367
|
"pluginAlias": "faces-cli",
|
|
330
368
|
"pluginName": "faces-cli",
|
|
331
369
|
"pluginType": "core",
|
|
@@ -335,14 +373,14 @@
|
|
|
335
373
|
"relativePath": [
|
|
336
374
|
"dist",
|
|
337
375
|
"commands",
|
|
338
|
-
"
|
|
339
|
-
"
|
|
376
|
+
"auth",
|
|
377
|
+
"login.js"
|
|
340
378
|
]
|
|
341
379
|
},
|
|
342
|
-
"
|
|
380
|
+
"auth:logout": {
|
|
343
381
|
"aliases": [],
|
|
344
382
|
"args": {},
|
|
345
|
-
"description": "
|
|
383
|
+
"description": "Clear saved credentials",
|
|
346
384
|
"flags": {
|
|
347
385
|
"json": {
|
|
348
386
|
"description": "Format output as json.",
|
|
@@ -378,7 +416,7 @@
|
|
|
378
416
|
},
|
|
379
417
|
"hasDynamicHelp": false,
|
|
380
418
|
"hiddenAliases": [],
|
|
381
|
-
"id": "
|
|
419
|
+
"id": "auth:logout",
|
|
382
420
|
"pluginAlias": "faces-cli",
|
|
383
421
|
"pluginName": "faces-cli",
|
|
384
422
|
"pluginType": "core",
|
|
@@ -388,14 +426,14 @@
|
|
|
388
426
|
"relativePath": [
|
|
389
427
|
"dist",
|
|
390
428
|
"commands",
|
|
391
|
-
"
|
|
392
|
-
"
|
|
429
|
+
"auth",
|
|
430
|
+
"logout.js"
|
|
393
431
|
]
|
|
394
432
|
},
|
|
395
|
-
"
|
|
433
|
+
"auth:refresh": {
|
|
396
434
|
"aliases": [],
|
|
397
435
|
"args": {},
|
|
398
|
-
"description": "
|
|
436
|
+
"description": "Exchange current JWT for a fresh one",
|
|
399
437
|
"flags": {
|
|
400
438
|
"json": {
|
|
401
439
|
"description": "Format output as json.",
|
|
@@ -427,26 +465,11 @@
|
|
|
427
465
|
"hasDynamicHelp": false,
|
|
428
466
|
"multiple": false,
|
|
429
467
|
"type": "option"
|
|
430
|
-
},
|
|
431
|
-
"amount": {
|
|
432
|
-
"description": "Top-up amount in USD (min $1)",
|
|
433
|
-
"name": "amount",
|
|
434
|
-
"required": true,
|
|
435
|
-
"hasDynamicHelp": false,
|
|
436
|
-
"multiple": false,
|
|
437
|
-
"type": "option"
|
|
438
|
-
},
|
|
439
|
-
"payment-ref": {
|
|
440
|
-
"description": "Payment reference (admin/test path)",
|
|
441
|
-
"name": "payment-ref",
|
|
442
|
-
"hasDynamicHelp": false,
|
|
443
|
-
"multiple": false,
|
|
444
|
-
"type": "option"
|
|
445
468
|
}
|
|
446
469
|
},
|
|
447
470
|
"hasDynamicHelp": false,
|
|
448
471
|
"hiddenAliases": [],
|
|
449
|
-
"id": "
|
|
472
|
+
"id": "auth:refresh",
|
|
450
473
|
"pluginAlias": "faces-cli",
|
|
451
474
|
"pluginName": "faces-cli",
|
|
452
475
|
"pluginType": "core",
|
|
@@ -456,14 +479,14 @@
|
|
|
456
479
|
"relativePath": [
|
|
457
480
|
"dist",
|
|
458
481
|
"commands",
|
|
459
|
-
"
|
|
460
|
-
"
|
|
482
|
+
"auth",
|
|
483
|
+
"refresh.js"
|
|
461
484
|
]
|
|
462
485
|
},
|
|
463
|
-
"
|
|
486
|
+
"auth:register": {
|
|
464
487
|
"aliases": [],
|
|
465
488
|
"args": {},
|
|
466
|
-
"description": "
|
|
489
|
+
"description": "Create a new Faces account",
|
|
467
490
|
"flags": {
|
|
468
491
|
"json": {
|
|
469
492
|
"description": "Format output as json.",
|
|
@@ -496,37 +519,53 @@
|
|
|
496
519
|
"multiple": false,
|
|
497
520
|
"type": "option"
|
|
498
521
|
},
|
|
499
|
-
"
|
|
500
|
-
"description": "
|
|
501
|
-
"name": "
|
|
522
|
+
"email": {
|
|
523
|
+
"description": "Email address",
|
|
524
|
+
"name": "email",
|
|
525
|
+
"required": true,
|
|
502
526
|
"hasDynamicHelp": false,
|
|
503
527
|
"multiple": false,
|
|
504
|
-
"options": [
|
|
505
|
-
"api_key",
|
|
506
|
-
"model",
|
|
507
|
-
"llm",
|
|
508
|
-
"date"
|
|
509
|
-
],
|
|
510
528
|
"type": "option"
|
|
511
529
|
},
|
|
512
|
-
"
|
|
513
|
-
"description": "
|
|
514
|
-
"name": "
|
|
530
|
+
"password": {
|
|
531
|
+
"description": "Password",
|
|
532
|
+
"name": "password",
|
|
533
|
+
"required": true,
|
|
515
534
|
"hasDynamicHelp": false,
|
|
516
535
|
"multiple": false,
|
|
517
536
|
"type": "option"
|
|
518
537
|
},
|
|
519
|
-
"
|
|
520
|
-
"description": "
|
|
521
|
-
"name": "
|
|
538
|
+
"username": {
|
|
539
|
+
"description": "Username (lowercase, dashes, numbers)",
|
|
540
|
+
"name": "username",
|
|
541
|
+
"required": true,
|
|
522
542
|
"hasDynamicHelp": false,
|
|
523
543
|
"multiple": false,
|
|
524
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"
|
|
525
564
|
}
|
|
526
565
|
},
|
|
527
566
|
"hasDynamicHelp": false,
|
|
528
567
|
"hiddenAliases": [],
|
|
529
|
-
"id": "
|
|
568
|
+
"id": "auth:register",
|
|
530
569
|
"pluginAlias": "faces-cli",
|
|
531
570
|
"pluginName": "faces-cli",
|
|
532
571
|
"pluginType": "core",
|
|
@@ -536,27 +575,14 @@
|
|
|
536
575
|
"relativePath": [
|
|
537
576
|
"dist",
|
|
538
577
|
"commands",
|
|
539
|
-
"
|
|
540
|
-
"
|
|
578
|
+
"auth",
|
|
579
|
+
"register.js"
|
|
541
580
|
]
|
|
542
581
|
},
|
|
543
|
-
"auth:
|
|
582
|
+
"auth:whoami": {
|
|
544
583
|
"aliases": [],
|
|
545
|
-
"args": {
|
|
546
|
-
|
|
547
|
-
"description": "OAuth provider to connect",
|
|
548
|
-
"name": "provider",
|
|
549
|
-
"options": [
|
|
550
|
-
"openai"
|
|
551
|
-
],
|
|
552
|
-
"required": true
|
|
553
|
-
}
|
|
554
|
-
},
|
|
555
|
-
"description": "Connect an OAuth provider account to Faces (e.g. ChatGPT Plus/Pro)",
|
|
556
|
-
"examples": [
|
|
557
|
-
"<%= config.bin %> auth connect openai",
|
|
558
|
-
"<%= config.bin %> auth connect openai --manual"
|
|
559
|
-
],
|
|
584
|
+
"args": {},
|
|
585
|
+
"description": "Print current user profile and auth diagnostic",
|
|
560
586
|
"flags": {
|
|
561
587
|
"json": {
|
|
562
588
|
"description": "Format output as json.",
|
|
@@ -588,17 +614,11 @@
|
|
|
588
614
|
"hasDynamicHelp": false,
|
|
589
615
|
"multiple": false,
|
|
590
616
|
"type": "option"
|
|
591
|
-
},
|
|
592
|
-
"manual": {
|
|
593
|
-
"description": "Manual mode for headless environments: prints the authorize URL and prompts you to paste the callback URL after approving in any browser.",
|
|
594
|
-
"name": "manual",
|
|
595
|
-
"allowNo": false,
|
|
596
|
-
"type": "boolean"
|
|
597
617
|
}
|
|
598
618
|
},
|
|
599
619
|
"hasDynamicHelp": false,
|
|
600
620
|
"hiddenAliases": [],
|
|
601
|
-
"id": "auth:
|
|
621
|
+
"id": "auth:whoami",
|
|
602
622
|
"pluginAlias": "faces-cli",
|
|
603
623
|
"pluginName": "faces-cli",
|
|
604
624
|
"pluginType": "core",
|
|
@@ -609,17 +629,13 @@
|
|
|
609
629
|
"dist",
|
|
610
630
|
"commands",
|
|
611
631
|
"auth",
|
|
612
|
-
"
|
|
632
|
+
"whoami.js"
|
|
613
633
|
]
|
|
614
634
|
},
|
|
615
|
-
"
|
|
635
|
+
"catalog:backup": {
|
|
616
636
|
"aliases": [],
|
|
617
637
|
"args": {},
|
|
618
|
-
"description": "
|
|
619
|
-
"examples": [
|
|
620
|
-
"<%= config.bin %> auth connections",
|
|
621
|
-
"<%= config.bin %> auth connections --json"
|
|
622
|
-
],
|
|
638
|
+
"description": "Snapshot all faces, teams, and source material for migration",
|
|
623
639
|
"flags": {
|
|
624
640
|
"json": {
|
|
625
641
|
"description": "Format output as json.",
|
|
@@ -655,7 +671,7 @@
|
|
|
655
671
|
},
|
|
656
672
|
"hasDynamicHelp": false,
|
|
657
673
|
"hiddenAliases": [],
|
|
658
|
-
"id": "
|
|
674
|
+
"id": "catalog:backup",
|
|
659
675
|
"pluginAlias": "faces-cli",
|
|
660
676
|
"pluginName": "faces-cli",
|
|
661
677
|
"pluginType": "core",
|
|
@@ -665,26 +681,14 @@
|
|
|
665
681
|
"relativePath": [
|
|
666
682
|
"dist",
|
|
667
683
|
"commands",
|
|
668
|
-
"
|
|
669
|
-
"
|
|
684
|
+
"catalog",
|
|
685
|
+
"backup.js"
|
|
670
686
|
]
|
|
671
687
|
},
|
|
672
|
-
"
|
|
688
|
+
"catalog:doctor": {
|
|
673
689
|
"aliases": [],
|
|
674
|
-
"args": {
|
|
675
|
-
|
|
676
|
-
"description": "OAuth provider to disconnect",
|
|
677
|
-
"name": "provider",
|
|
678
|
-
"options": [
|
|
679
|
-
"openai"
|
|
680
|
-
],
|
|
681
|
-
"required": true
|
|
682
|
-
}
|
|
683
|
-
},
|
|
684
|
-
"description": "Disconnect a linked OAuth provider account",
|
|
685
|
-
"examples": [
|
|
686
|
-
"<%= config.bin %> auth disconnect openai"
|
|
687
|
-
],
|
|
690
|
+
"args": {},
|
|
691
|
+
"description": "Diagnose and repair the local face and team catalog",
|
|
688
692
|
"flags": {
|
|
689
693
|
"json": {
|
|
690
694
|
"description": "Format output as json.",
|
|
@@ -716,11 +720,23 @@
|
|
|
716
720
|
"hasDynamicHelp": false,
|
|
717
721
|
"multiple": false,
|
|
718
722
|
"type": "option"
|
|
723
|
+
},
|
|
724
|
+
"fix": {
|
|
725
|
+
"description": "Rebuild missing or stale catalog entries from API",
|
|
726
|
+
"name": "fix",
|
|
727
|
+
"allowNo": false,
|
|
728
|
+
"type": "boolean"
|
|
729
|
+
},
|
|
730
|
+
"generate": {
|
|
731
|
+
"description": "Fix + generate missing descriptions via LLM",
|
|
732
|
+
"name": "generate",
|
|
733
|
+
"allowNo": false,
|
|
734
|
+
"type": "boolean"
|
|
719
735
|
}
|
|
720
736
|
},
|
|
721
737
|
"hasDynamicHelp": false,
|
|
722
738
|
"hiddenAliases": [],
|
|
723
|
-
"id": "
|
|
739
|
+
"id": "catalog:doctor",
|
|
724
740
|
"pluginAlias": "faces-cli",
|
|
725
741
|
"pluginName": "faces-cli",
|
|
726
742
|
"pluginType": "core",
|
|
@@ -730,14 +746,14 @@
|
|
|
730
746
|
"relativePath": [
|
|
731
747
|
"dist",
|
|
732
748
|
"commands",
|
|
733
|
-
"
|
|
734
|
-
"
|
|
749
|
+
"catalog",
|
|
750
|
+
"doctor.js"
|
|
735
751
|
]
|
|
736
752
|
},
|
|
737
|
-
"
|
|
753
|
+
"catalog:list": {
|
|
738
754
|
"aliases": [],
|
|
739
755
|
"args": {},
|
|
740
|
-
"description": "
|
|
756
|
+
"description": "List all faces in the local catalog",
|
|
741
757
|
"flags": {
|
|
742
758
|
"json": {
|
|
743
759
|
"description": "Format output as json.",
|
|
@@ -769,27 +785,11 @@
|
|
|
769
785
|
"hasDynamicHelp": false,
|
|
770
786
|
"multiple": false,
|
|
771
787
|
"type": "option"
|
|
772
|
-
},
|
|
773
|
-
"email": {
|
|
774
|
-
"description": "Account email",
|
|
775
|
-
"name": "email",
|
|
776
|
-
"required": true,
|
|
777
|
-
"hasDynamicHelp": false,
|
|
778
|
-
"multiple": false,
|
|
779
|
-
"type": "option"
|
|
780
|
-
},
|
|
781
|
-
"password": {
|
|
782
|
-
"description": "Account password",
|
|
783
|
-
"name": "password",
|
|
784
|
-
"required": true,
|
|
785
|
-
"hasDynamicHelp": false,
|
|
786
|
-
"multiple": false,
|
|
787
|
-
"type": "option"
|
|
788
788
|
}
|
|
789
789
|
},
|
|
790
790
|
"hasDynamicHelp": false,
|
|
791
791
|
"hiddenAliases": [],
|
|
792
|
-
"id": "
|
|
792
|
+
"id": "catalog:list",
|
|
793
793
|
"pluginAlias": "faces-cli",
|
|
794
794
|
"pluginName": "faces-cli",
|
|
795
795
|
"pluginType": "core",
|
|
@@ -799,14 +799,14 @@
|
|
|
799
799
|
"relativePath": [
|
|
800
800
|
"dist",
|
|
801
801
|
"commands",
|
|
802
|
-
"
|
|
803
|
-
"
|
|
802
|
+
"catalog",
|
|
803
|
+
"list.js"
|
|
804
804
|
]
|
|
805
805
|
},
|
|
806
|
-
"
|
|
806
|
+
"catalog:manyfaced": {
|
|
807
807
|
"aliases": [],
|
|
808
808
|
"args": {},
|
|
809
|
-
"description": "
|
|
809
|
+
"description": "Browse and install community manyfaced skills from github.com/facessh/manyfaced",
|
|
810
810
|
"flags": {
|
|
811
811
|
"json": {
|
|
812
812
|
"description": "Format output as json.",
|
|
@@ -838,11 +838,38 @@
|
|
|
838
838
|
"hasDynamicHelp": false,
|
|
839
839
|
"multiple": false,
|
|
840
840
|
"type": "option"
|
|
841
|
+
},
|
|
842
|
+
"skill": {
|
|
843
|
+
"description": "Show details for a specific skill",
|
|
844
|
+
"name": "skill",
|
|
845
|
+
"hasDynamicHelp": false,
|
|
846
|
+
"multiple": false,
|
|
847
|
+
"type": "option"
|
|
848
|
+
},
|
|
849
|
+
"install": {
|
|
850
|
+
"description": "Install a skill by name",
|
|
851
|
+
"name": "install",
|
|
852
|
+
"hasDynamicHelp": false,
|
|
853
|
+
"multiple": false,
|
|
854
|
+
"type": "option"
|
|
855
|
+
},
|
|
856
|
+
"skills-dir": {
|
|
857
|
+
"description": "Directory to install skills into (required for --install)",
|
|
858
|
+
"name": "skills-dir",
|
|
859
|
+
"hasDynamicHelp": false,
|
|
860
|
+
"multiple": false,
|
|
861
|
+
"type": "option"
|
|
862
|
+
},
|
|
863
|
+
"refresh": {
|
|
864
|
+
"description": "Force refresh the skill index (ignore cache)",
|
|
865
|
+
"name": "refresh",
|
|
866
|
+
"allowNo": false,
|
|
867
|
+
"type": "boolean"
|
|
841
868
|
}
|
|
842
869
|
},
|
|
843
870
|
"hasDynamicHelp": false,
|
|
844
871
|
"hiddenAliases": [],
|
|
845
|
-
"id": "
|
|
872
|
+
"id": "catalog:manyfaced",
|
|
846
873
|
"pluginAlias": "faces-cli",
|
|
847
874
|
"pluginName": "faces-cli",
|
|
848
875
|
"pluginType": "core",
|
|
@@ -852,14 +879,19 @@
|
|
|
852
879
|
"relativePath": [
|
|
853
880
|
"dist",
|
|
854
881
|
"commands",
|
|
855
|
-
"
|
|
856
|
-
"
|
|
882
|
+
"catalog",
|
|
883
|
+
"manyfaced.js"
|
|
857
884
|
]
|
|
858
885
|
},
|
|
859
|
-
"
|
|
886
|
+
"catalog:restore": {
|
|
860
887
|
"aliases": [],
|
|
861
|
-
"args": {
|
|
862
|
-
|
|
888
|
+
"args": {
|
|
889
|
+
"file": {
|
|
890
|
+
"description": "Backup file path (default: most recent in ~/.faces/backups/)",
|
|
891
|
+
"name": "file"
|
|
892
|
+
}
|
|
893
|
+
},
|
|
894
|
+
"description": "Restore faces, teams, and source material from a backup snapshot",
|
|
863
895
|
"flags": {
|
|
864
896
|
"json": {
|
|
865
897
|
"description": "Format output as json.",
|
|
@@ -891,11 +923,17 @@
|
|
|
891
923
|
"hasDynamicHelp": false,
|
|
892
924
|
"multiple": false,
|
|
893
925
|
"type": "option"
|
|
926
|
+
},
|
|
927
|
+
"compile": {
|
|
928
|
+
"description": "Run compile:all after restoring",
|
|
929
|
+
"name": "compile",
|
|
930
|
+
"allowNo": false,
|
|
931
|
+
"type": "boolean"
|
|
894
932
|
}
|
|
895
933
|
},
|
|
896
934
|
"hasDynamicHelp": false,
|
|
897
935
|
"hiddenAliases": [],
|
|
898
|
-
"id": "
|
|
936
|
+
"id": "catalog:restore",
|
|
899
937
|
"pluginAlias": "faces-cli",
|
|
900
938
|
"pluginName": "faces-cli",
|
|
901
939
|
"pluginType": "core",
|
|
@@ -905,14 +943,14 @@
|
|
|
905
943
|
"relativePath": [
|
|
906
944
|
"dist",
|
|
907
945
|
"commands",
|
|
908
|
-
"
|
|
909
|
-
"
|
|
946
|
+
"catalog",
|
|
947
|
+
"restore.js"
|
|
910
948
|
]
|
|
911
949
|
},
|
|
912
|
-
"
|
|
950
|
+
"billing:balance": {
|
|
913
951
|
"aliases": [],
|
|
914
952
|
"args": {},
|
|
915
|
-
"description": "
|
|
953
|
+
"description": "Show credit balance and payment method status",
|
|
916
954
|
"flags": {
|
|
917
955
|
"json": {
|
|
918
956
|
"description": "Format output as json.",
|
|
@@ -944,54 +982,11 @@
|
|
|
944
982
|
"hasDynamicHelp": false,
|
|
945
983
|
"multiple": false,
|
|
946
984
|
"type": "option"
|
|
947
|
-
},
|
|
948
|
-
"email": {
|
|
949
|
-
"description": "Email address",
|
|
950
|
-
"name": "email",
|
|
951
|
-
"required": true,
|
|
952
|
-
"hasDynamicHelp": false,
|
|
953
|
-
"multiple": false,
|
|
954
|
-
"type": "option"
|
|
955
|
-
},
|
|
956
|
-
"password": {
|
|
957
|
-
"description": "Password",
|
|
958
|
-
"name": "password",
|
|
959
|
-
"required": true,
|
|
960
|
-
"hasDynamicHelp": false,
|
|
961
|
-
"multiple": false,
|
|
962
|
-
"type": "option"
|
|
963
|
-
},
|
|
964
|
-
"username": {
|
|
965
|
-
"description": "Username (lowercase, dashes, numbers)",
|
|
966
|
-
"name": "username",
|
|
967
|
-
"required": true,
|
|
968
|
-
"hasDynamicHelp": false,
|
|
969
|
-
"multiple": false,
|
|
970
|
-
"type": "option"
|
|
971
|
-
},
|
|
972
|
-
"invite-key": {
|
|
973
|
-
"description": "Invite key (if required)",
|
|
974
|
-
"name": "invite-key",
|
|
975
|
-
"hasDynamicHelp": false,
|
|
976
|
-
"multiple": false,
|
|
977
|
-
"type": "option"
|
|
978
|
-
},
|
|
979
|
-
"plan": {
|
|
980
|
-
"description": "Plan to subscribe to: \"free\" ($5 activation) or \"connect\" ($17/mo, no activation fee)",
|
|
981
|
-
"name": "plan",
|
|
982
|
-
"default": "free",
|
|
983
|
-
"hasDynamicHelp": false,
|
|
984
|
-
"multiple": false,
|
|
985
|
-
"options": [
|
|
986
|
-
"free",
|
|
987
|
-
"connect"
|
|
988
|
-
],
|
|
989
|
-
"type": "option"
|
|
990
985
|
}
|
|
991
986
|
},
|
|
992
987
|
"hasDynamicHelp": false,
|
|
993
988
|
"hiddenAliases": [],
|
|
994
|
-
"id": "
|
|
989
|
+
"id": "billing:balance",
|
|
995
990
|
"pluginAlias": "faces-cli",
|
|
996
991
|
"pluginName": "faces-cli",
|
|
997
992
|
"pluginType": "core",
|
|
@@ -1001,14 +996,14 @@
|
|
|
1001
996
|
"relativePath": [
|
|
1002
997
|
"dist",
|
|
1003
998
|
"commands",
|
|
1004
|
-
"
|
|
1005
|
-
"
|
|
999
|
+
"billing",
|
|
1000
|
+
"balance.js"
|
|
1006
1001
|
]
|
|
1007
1002
|
},
|
|
1008
|
-
"
|
|
1003
|
+
"billing:card-setup": {
|
|
1009
1004
|
"aliases": [],
|
|
1010
1005
|
"args": {},
|
|
1011
|
-
"description": "
|
|
1006
|
+
"description": "Get a Stripe card setup URL to save a payment method",
|
|
1012
1007
|
"flags": {
|
|
1013
1008
|
"json": {
|
|
1014
1009
|
"description": "Format output as json.",
|
|
@@ -1044,7 +1039,7 @@
|
|
|
1044
1039
|
},
|
|
1045
1040
|
"hasDynamicHelp": false,
|
|
1046
1041
|
"hiddenAliases": [],
|
|
1047
|
-
"id": "
|
|
1042
|
+
"id": "billing:card-setup",
|
|
1048
1043
|
"pluginAlias": "faces-cli",
|
|
1049
1044
|
"pluginName": "faces-cli",
|
|
1050
1045
|
"pluginType": "core",
|
|
@@ -1054,14 +1049,14 @@
|
|
|
1054
1049
|
"relativePath": [
|
|
1055
1050
|
"dist",
|
|
1056
1051
|
"commands",
|
|
1057
|
-
"
|
|
1058
|
-
"
|
|
1052
|
+
"billing",
|
|
1053
|
+
"card-setup.js"
|
|
1059
1054
|
]
|
|
1060
1055
|
},
|
|
1061
|
-
"
|
|
1056
|
+
"billing:llm-costs": {
|
|
1062
1057
|
"aliases": [],
|
|
1063
1058
|
"args": {},
|
|
1064
|
-
"description": "
|
|
1059
|
+
"description": "List available LLMs and their per-token costs",
|
|
1065
1060
|
"flags": {
|
|
1066
1061
|
"json": {
|
|
1067
1062
|
"description": "Format output as json.",
|
|
@@ -1093,11 +1088,18 @@
|
|
|
1093
1088
|
"hasDynamicHelp": false,
|
|
1094
1089
|
"multiple": false,
|
|
1095
1090
|
"type": "option"
|
|
1091
|
+
},
|
|
1092
|
+
"provider": {
|
|
1093
|
+
"description": "Filter by provider (e.g. openai, anthropic)",
|
|
1094
|
+
"name": "provider",
|
|
1095
|
+
"hasDynamicHelp": false,
|
|
1096
|
+
"multiple": false,
|
|
1097
|
+
"type": "option"
|
|
1096
1098
|
}
|
|
1097
1099
|
},
|
|
1098
1100
|
"hasDynamicHelp": false,
|
|
1099
1101
|
"hiddenAliases": [],
|
|
1100
|
-
"id": "
|
|
1102
|
+
"id": "billing:llm-costs",
|
|
1101
1103
|
"pluginAlias": "faces-cli",
|
|
1102
1104
|
"pluginName": "faces-cli",
|
|
1103
1105
|
"pluginType": "core",
|
|
@@ -1107,14 +1109,14 @@
|
|
|
1107
1109
|
"relativePath": [
|
|
1108
1110
|
"dist",
|
|
1109
1111
|
"commands",
|
|
1110
|
-
"
|
|
1111
|
-
"
|
|
1112
|
+
"billing",
|
|
1113
|
+
"llm-costs.js"
|
|
1112
1114
|
]
|
|
1113
1115
|
},
|
|
1114
|
-
"
|
|
1116
|
+
"billing:quota": {
|
|
1115
1117
|
"aliases": [],
|
|
1116
1118
|
"args": {},
|
|
1117
|
-
"description": "
|
|
1119
|
+
"description": "Show compilation stats per face (deprecated — use compile:stats)",
|
|
1118
1120
|
"flags": {
|
|
1119
1121
|
"json": {
|
|
1120
1122
|
"description": "Format output as json.",
|
|
@@ -1146,23 +1148,11 @@
|
|
|
1146
1148
|
"hasDynamicHelp": false,
|
|
1147
1149
|
"multiple": false,
|
|
1148
1150
|
"type": "option"
|
|
1149
|
-
},
|
|
1150
|
-
"fix": {
|
|
1151
|
-
"description": "Rebuild missing or stale catalog entries from API",
|
|
1152
|
-
"name": "fix",
|
|
1153
|
-
"allowNo": false,
|
|
1154
|
-
"type": "boolean"
|
|
1155
|
-
},
|
|
1156
|
-
"generate": {
|
|
1157
|
-
"description": "Fix + generate missing descriptions via LLM",
|
|
1158
|
-
"name": "generate",
|
|
1159
|
-
"allowNo": false,
|
|
1160
|
-
"type": "boolean"
|
|
1161
1151
|
}
|
|
1162
1152
|
},
|
|
1163
1153
|
"hasDynamicHelp": false,
|
|
1164
1154
|
"hiddenAliases": [],
|
|
1165
|
-
"id": "
|
|
1155
|
+
"id": "billing:quota",
|
|
1166
1156
|
"pluginAlias": "faces-cli",
|
|
1167
1157
|
"pluginName": "faces-cli",
|
|
1168
1158
|
"pluginType": "core",
|
|
@@ -1172,14 +1162,14 @@
|
|
|
1172
1162
|
"relativePath": [
|
|
1173
1163
|
"dist",
|
|
1174
1164
|
"commands",
|
|
1175
|
-
"
|
|
1176
|
-
"
|
|
1165
|
+
"billing",
|
|
1166
|
+
"quota.js"
|
|
1177
1167
|
]
|
|
1178
1168
|
},
|
|
1179
|
-
"
|
|
1169
|
+
"billing:subscription": {
|
|
1180
1170
|
"aliases": [],
|
|
1181
1171
|
"args": {},
|
|
1182
|
-
"description": "
|
|
1172
|
+
"description": "Show current plan, face count, and renewal date",
|
|
1183
1173
|
"flags": {
|
|
1184
1174
|
"json": {
|
|
1185
1175
|
"description": "Format output as json.",
|
|
@@ -1215,7 +1205,7 @@
|
|
|
1215
1205
|
},
|
|
1216
1206
|
"hasDynamicHelp": false,
|
|
1217
1207
|
"hiddenAliases": [],
|
|
1218
|
-
"id": "
|
|
1208
|
+
"id": "billing:subscription",
|
|
1219
1209
|
"pluginAlias": "faces-cli",
|
|
1220
1210
|
"pluginName": "faces-cli",
|
|
1221
1211
|
"pluginType": "core",
|
|
@@ -1225,14 +1215,14 @@
|
|
|
1225
1215
|
"relativePath": [
|
|
1226
1216
|
"dist",
|
|
1227
1217
|
"commands",
|
|
1228
|
-
"
|
|
1229
|
-
"
|
|
1218
|
+
"billing",
|
|
1219
|
+
"subscription.js"
|
|
1230
1220
|
]
|
|
1231
1221
|
},
|
|
1232
|
-
"
|
|
1222
|
+
"billing:topup": {
|
|
1233
1223
|
"aliases": [],
|
|
1234
1224
|
"args": {},
|
|
1235
|
-
"description": "
|
|
1225
|
+
"description": "Top up credit balance using saved payment method",
|
|
1236
1226
|
"flags": {
|
|
1237
1227
|
"json": {
|
|
1238
1228
|
"description": "Format output as json.",
|
|
@@ -1265,37 +1255,25 @@
|
|
|
1265
1255
|
"multiple": false,
|
|
1266
1256
|
"type": "option"
|
|
1267
1257
|
},
|
|
1268
|
-
"
|
|
1269
|
-
"description": "
|
|
1270
|
-
"name": "
|
|
1271
|
-
"
|
|
1272
|
-
"multiple": false,
|
|
1273
|
-
"type": "option"
|
|
1274
|
-
},
|
|
1275
|
-
"install": {
|
|
1276
|
-
"description": "Install a skill by name",
|
|
1277
|
-
"name": "install",
|
|
1258
|
+
"amount": {
|
|
1259
|
+
"description": "Top-up amount in USD (min $1)",
|
|
1260
|
+
"name": "amount",
|
|
1261
|
+
"required": true,
|
|
1278
1262
|
"hasDynamicHelp": false,
|
|
1279
1263
|
"multiple": false,
|
|
1280
1264
|
"type": "option"
|
|
1281
1265
|
},
|
|
1282
|
-
"
|
|
1283
|
-
"description": "
|
|
1284
|
-
"name": "
|
|
1266
|
+
"payment-ref": {
|
|
1267
|
+
"description": "Payment reference (admin/test path)",
|
|
1268
|
+
"name": "payment-ref",
|
|
1285
1269
|
"hasDynamicHelp": false,
|
|
1286
1270
|
"multiple": false,
|
|
1287
1271
|
"type": "option"
|
|
1288
|
-
},
|
|
1289
|
-
"refresh": {
|
|
1290
|
-
"description": "Force refresh the skill index (ignore cache)",
|
|
1291
|
-
"name": "refresh",
|
|
1292
|
-
"allowNo": false,
|
|
1293
|
-
"type": "boolean"
|
|
1294
1272
|
}
|
|
1295
1273
|
},
|
|
1296
1274
|
"hasDynamicHelp": false,
|
|
1297
1275
|
"hiddenAliases": [],
|
|
1298
|
-
"id": "
|
|
1276
|
+
"id": "billing:topup",
|
|
1299
1277
|
"pluginAlias": "faces-cli",
|
|
1300
1278
|
"pluginName": "faces-cli",
|
|
1301
1279
|
"pluginType": "core",
|
|
@@ -1305,19 +1283,14 @@
|
|
|
1305
1283
|
"relativePath": [
|
|
1306
1284
|
"dist",
|
|
1307
1285
|
"commands",
|
|
1308
|
-
"
|
|
1309
|
-
"
|
|
1286
|
+
"billing",
|
|
1287
|
+
"topup.js"
|
|
1310
1288
|
]
|
|
1311
1289
|
},
|
|
1312
|
-
"
|
|
1290
|
+
"billing:usage": {
|
|
1313
1291
|
"aliases": [],
|
|
1314
|
-
"args": {
|
|
1315
|
-
|
|
1316
|
-
"description": "Backup file path (default: most recent in ~/.faces/backups/)",
|
|
1317
|
-
"name": "file"
|
|
1318
|
-
}
|
|
1319
|
-
},
|
|
1320
|
-
"description": "Restore faces, teams, and source material from a backup snapshot",
|
|
1292
|
+
"args": {},
|
|
1293
|
+
"description": "Aggregated usage analytics",
|
|
1321
1294
|
"flags": {
|
|
1322
1295
|
"json": {
|
|
1323
1296
|
"description": "Format output as json.",
|
|
@@ -1350,16 +1323,37 @@
|
|
|
1350
1323
|
"multiple": false,
|
|
1351
1324
|
"type": "option"
|
|
1352
1325
|
},
|
|
1353
|
-
"
|
|
1354
|
-
"description": "
|
|
1355
|
-
"name": "
|
|
1356
|
-
"
|
|
1357
|
-
"
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1326
|
+
"group-by": {
|
|
1327
|
+
"description": "Group results",
|
|
1328
|
+
"name": "group-by",
|
|
1329
|
+
"hasDynamicHelp": false,
|
|
1330
|
+
"multiple": false,
|
|
1331
|
+
"options": [
|
|
1332
|
+
"api_key",
|
|
1333
|
+
"model",
|
|
1334
|
+
"llm",
|
|
1335
|
+
"date"
|
|
1336
|
+
],
|
|
1337
|
+
"type": "option"
|
|
1338
|
+
},
|
|
1339
|
+
"from": {
|
|
1340
|
+
"description": "Start date (YYYY-MM-DD)",
|
|
1341
|
+
"name": "from",
|
|
1342
|
+
"hasDynamicHelp": false,
|
|
1343
|
+
"multiple": false,
|
|
1344
|
+
"type": "option"
|
|
1345
|
+
},
|
|
1346
|
+
"to": {
|
|
1347
|
+
"description": "End date (YYYY-MM-DD)",
|
|
1348
|
+
"name": "to",
|
|
1349
|
+
"hasDynamicHelp": false,
|
|
1350
|
+
"multiple": false,
|
|
1351
|
+
"type": "option"
|
|
1352
|
+
}
|
|
1353
|
+
},
|
|
1354
|
+
"hasDynamicHelp": false,
|
|
1361
1355
|
"hiddenAliases": [],
|
|
1362
|
-
"id": "
|
|
1356
|
+
"id": "billing:usage",
|
|
1363
1357
|
"pluginAlias": "faces-cli",
|
|
1364
1358
|
"pluginName": "faces-cli",
|
|
1365
1359
|
"pluginType": "core",
|
|
@@ -1369,8 +1363,8 @@
|
|
|
1369
1363
|
"relativePath": [
|
|
1370
1364
|
"dist",
|
|
1371
1365
|
"commands",
|
|
1372
|
-
"
|
|
1373
|
-
"
|
|
1366
|
+
"billing",
|
|
1367
|
+
"usage.js"
|
|
1374
1368
|
]
|
|
1375
1369
|
},
|
|
1376
1370
|
"chat:chat": {
|
|
@@ -1822,6 +1816,182 @@
|
|
|
1822
1816
|
"thread.js"
|
|
1823
1817
|
]
|
|
1824
1818
|
},
|
|
1819
|
+
"config:clear": {
|
|
1820
|
+
"aliases": [],
|
|
1821
|
+
"args": {},
|
|
1822
|
+
"description": "Delete all saved credentials and config",
|
|
1823
|
+
"flags": {
|
|
1824
|
+
"json": {
|
|
1825
|
+
"description": "Format output as json.",
|
|
1826
|
+
"helpGroup": "GLOBAL",
|
|
1827
|
+
"name": "json",
|
|
1828
|
+
"allowNo": false,
|
|
1829
|
+
"type": "boolean"
|
|
1830
|
+
},
|
|
1831
|
+
"base-url": {
|
|
1832
|
+
"description": "API base URL",
|
|
1833
|
+
"env": "FACES_BASE_URL",
|
|
1834
|
+
"name": "base-url",
|
|
1835
|
+
"hasDynamicHelp": false,
|
|
1836
|
+
"multiple": false,
|
|
1837
|
+
"type": "option"
|
|
1838
|
+
},
|
|
1839
|
+
"token": {
|
|
1840
|
+
"description": "JWT bearer token",
|
|
1841
|
+
"env": "FACES_TOKEN",
|
|
1842
|
+
"name": "token",
|
|
1843
|
+
"hasDynamicHelp": false,
|
|
1844
|
+
"multiple": false,
|
|
1845
|
+
"type": "option"
|
|
1846
|
+
},
|
|
1847
|
+
"api-key": {
|
|
1848
|
+
"description": "API key",
|
|
1849
|
+
"env": "FACES_API_KEY",
|
|
1850
|
+
"name": "api-key",
|
|
1851
|
+
"hasDynamicHelp": false,
|
|
1852
|
+
"multiple": false,
|
|
1853
|
+
"type": "option"
|
|
1854
|
+
},
|
|
1855
|
+
"yes": {
|
|
1856
|
+
"description": "Skip confirmation",
|
|
1857
|
+
"name": "yes",
|
|
1858
|
+
"allowNo": false,
|
|
1859
|
+
"type": "boolean"
|
|
1860
|
+
}
|
|
1861
|
+
},
|
|
1862
|
+
"hasDynamicHelp": false,
|
|
1863
|
+
"hiddenAliases": [],
|
|
1864
|
+
"id": "config:clear",
|
|
1865
|
+
"pluginAlias": "faces-cli",
|
|
1866
|
+
"pluginName": "faces-cli",
|
|
1867
|
+
"pluginType": "core",
|
|
1868
|
+
"strict": true,
|
|
1869
|
+
"enableJsonFlag": true,
|
|
1870
|
+
"isESM": true,
|
|
1871
|
+
"relativePath": [
|
|
1872
|
+
"dist",
|
|
1873
|
+
"commands",
|
|
1874
|
+
"config",
|
|
1875
|
+
"clear.js"
|
|
1876
|
+
]
|
|
1877
|
+
},
|
|
1878
|
+
"config:set": {
|
|
1879
|
+
"aliases": [],
|
|
1880
|
+
"args": {
|
|
1881
|
+
"key": {
|
|
1882
|
+
"description": "Config key",
|
|
1883
|
+
"name": "key",
|
|
1884
|
+
"required": true
|
|
1885
|
+
},
|
|
1886
|
+
"value": {
|
|
1887
|
+
"description": "Config value",
|
|
1888
|
+
"name": "value",
|
|
1889
|
+
"required": true
|
|
1890
|
+
}
|
|
1891
|
+
},
|
|
1892
|
+
"description": "Set a config value (e.g. base_url, api_key, token)",
|
|
1893
|
+
"flags": {
|
|
1894
|
+
"json": {
|
|
1895
|
+
"description": "Format output as json.",
|
|
1896
|
+
"helpGroup": "GLOBAL",
|
|
1897
|
+
"name": "json",
|
|
1898
|
+
"allowNo": false,
|
|
1899
|
+
"type": "boolean"
|
|
1900
|
+
},
|
|
1901
|
+
"base-url": {
|
|
1902
|
+
"description": "API base URL",
|
|
1903
|
+
"env": "FACES_BASE_URL",
|
|
1904
|
+
"name": "base-url",
|
|
1905
|
+
"hasDynamicHelp": false,
|
|
1906
|
+
"multiple": false,
|
|
1907
|
+
"type": "option"
|
|
1908
|
+
},
|
|
1909
|
+
"token": {
|
|
1910
|
+
"description": "JWT bearer token",
|
|
1911
|
+
"env": "FACES_TOKEN",
|
|
1912
|
+
"name": "token",
|
|
1913
|
+
"hasDynamicHelp": false,
|
|
1914
|
+
"multiple": false,
|
|
1915
|
+
"type": "option"
|
|
1916
|
+
},
|
|
1917
|
+
"api-key": {
|
|
1918
|
+
"description": "API key",
|
|
1919
|
+
"env": "FACES_API_KEY",
|
|
1920
|
+
"name": "api-key",
|
|
1921
|
+
"hasDynamicHelp": false,
|
|
1922
|
+
"multiple": false,
|
|
1923
|
+
"type": "option"
|
|
1924
|
+
}
|
|
1925
|
+
},
|
|
1926
|
+
"hasDynamicHelp": false,
|
|
1927
|
+
"hiddenAliases": [],
|
|
1928
|
+
"id": "config:set",
|
|
1929
|
+
"pluginAlias": "faces-cli",
|
|
1930
|
+
"pluginName": "faces-cli",
|
|
1931
|
+
"pluginType": "core",
|
|
1932
|
+
"strict": true,
|
|
1933
|
+
"enableJsonFlag": true,
|
|
1934
|
+
"isESM": true,
|
|
1935
|
+
"relativePath": [
|
|
1936
|
+
"dist",
|
|
1937
|
+
"commands",
|
|
1938
|
+
"config",
|
|
1939
|
+
"set.js"
|
|
1940
|
+
]
|
|
1941
|
+
},
|
|
1942
|
+
"config:show": {
|
|
1943
|
+
"aliases": [],
|
|
1944
|
+
"args": {},
|
|
1945
|
+
"description": "Print current config (credentials are masked)",
|
|
1946
|
+
"flags": {
|
|
1947
|
+
"json": {
|
|
1948
|
+
"description": "Format output as json.",
|
|
1949
|
+
"helpGroup": "GLOBAL",
|
|
1950
|
+
"name": "json",
|
|
1951
|
+
"allowNo": false,
|
|
1952
|
+
"type": "boolean"
|
|
1953
|
+
},
|
|
1954
|
+
"base-url": {
|
|
1955
|
+
"description": "API base URL",
|
|
1956
|
+
"env": "FACES_BASE_URL",
|
|
1957
|
+
"name": "base-url",
|
|
1958
|
+
"hasDynamicHelp": false,
|
|
1959
|
+
"multiple": false,
|
|
1960
|
+
"type": "option"
|
|
1961
|
+
},
|
|
1962
|
+
"token": {
|
|
1963
|
+
"description": "JWT bearer token",
|
|
1964
|
+
"env": "FACES_TOKEN",
|
|
1965
|
+
"name": "token",
|
|
1966
|
+
"hasDynamicHelp": false,
|
|
1967
|
+
"multiple": false,
|
|
1968
|
+
"type": "option"
|
|
1969
|
+
},
|
|
1970
|
+
"api-key": {
|
|
1971
|
+
"description": "API key",
|
|
1972
|
+
"env": "FACES_API_KEY",
|
|
1973
|
+
"name": "api-key",
|
|
1974
|
+
"hasDynamicHelp": false,
|
|
1975
|
+
"multiple": false,
|
|
1976
|
+
"type": "option"
|
|
1977
|
+
}
|
|
1978
|
+
},
|
|
1979
|
+
"hasDynamicHelp": false,
|
|
1980
|
+
"hiddenAliases": [],
|
|
1981
|
+
"id": "config:show",
|
|
1982
|
+
"pluginAlias": "faces-cli",
|
|
1983
|
+
"pluginName": "faces-cli",
|
|
1984
|
+
"pluginType": "core",
|
|
1985
|
+
"strict": true,
|
|
1986
|
+
"enableJsonFlag": true,
|
|
1987
|
+
"isESM": true,
|
|
1988
|
+
"relativePath": [
|
|
1989
|
+
"dist",
|
|
1990
|
+
"commands",
|
|
1991
|
+
"config",
|
|
1992
|
+
"show.js"
|
|
1993
|
+
]
|
|
1994
|
+
},
|
|
1825
1995
|
"compile:all": {
|
|
1826
1996
|
"aliases": [],
|
|
1827
1997
|
"args": {},
|
|
@@ -2144,10 +2314,10 @@
|
|
|
2144
2314
|
"upload.js"
|
|
2145
2315
|
]
|
|
2146
2316
|
},
|
|
2147
|
-
"
|
|
2317
|
+
"keys:create": {
|
|
2148
2318
|
"aliases": [],
|
|
2149
2319
|
"args": {},
|
|
2150
|
-
"description": "
|
|
2320
|
+
"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.",
|
|
2151
2321
|
"flags": {
|
|
2152
2322
|
"json": {
|
|
2153
2323
|
"description": "Format output as json.",
|
|
@@ -2180,189 +2350,13 @@
|
|
|
2180
2350
|
"multiple": false,
|
|
2181
2351
|
"type": "option"
|
|
2182
2352
|
},
|
|
2183
|
-
"
|
|
2184
|
-
"description": "
|
|
2185
|
-
"name": "
|
|
2186
|
-
"
|
|
2187
|
-
"
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
"hasDynamicHelp": false,
|
|
2191
|
-
"hiddenAliases": [],
|
|
2192
|
-
"id": "config:clear",
|
|
2193
|
-
"pluginAlias": "faces-cli",
|
|
2194
|
-
"pluginName": "faces-cli",
|
|
2195
|
-
"pluginType": "core",
|
|
2196
|
-
"strict": true,
|
|
2197
|
-
"enableJsonFlag": true,
|
|
2198
|
-
"isESM": true,
|
|
2199
|
-
"relativePath": [
|
|
2200
|
-
"dist",
|
|
2201
|
-
"commands",
|
|
2202
|
-
"config",
|
|
2203
|
-
"clear.js"
|
|
2204
|
-
]
|
|
2205
|
-
},
|
|
2206
|
-
"config:set": {
|
|
2207
|
-
"aliases": [],
|
|
2208
|
-
"args": {
|
|
2209
|
-
"key": {
|
|
2210
|
-
"description": "Config key",
|
|
2211
|
-
"name": "key",
|
|
2212
|
-
"required": true
|
|
2213
|
-
},
|
|
2214
|
-
"value": {
|
|
2215
|
-
"description": "Config value",
|
|
2216
|
-
"name": "value",
|
|
2217
|
-
"required": true
|
|
2218
|
-
}
|
|
2219
|
-
},
|
|
2220
|
-
"description": "Set a config value (e.g. base_url, api_key, token)",
|
|
2221
|
-
"flags": {
|
|
2222
|
-
"json": {
|
|
2223
|
-
"description": "Format output as json.",
|
|
2224
|
-
"helpGroup": "GLOBAL",
|
|
2225
|
-
"name": "json",
|
|
2226
|
-
"allowNo": false,
|
|
2227
|
-
"type": "boolean"
|
|
2228
|
-
},
|
|
2229
|
-
"base-url": {
|
|
2230
|
-
"description": "API base URL",
|
|
2231
|
-
"env": "FACES_BASE_URL",
|
|
2232
|
-
"name": "base-url",
|
|
2233
|
-
"hasDynamicHelp": false,
|
|
2234
|
-
"multiple": false,
|
|
2235
|
-
"type": "option"
|
|
2236
|
-
},
|
|
2237
|
-
"token": {
|
|
2238
|
-
"description": "JWT bearer token",
|
|
2239
|
-
"env": "FACES_TOKEN",
|
|
2240
|
-
"name": "token",
|
|
2241
|
-
"hasDynamicHelp": false,
|
|
2242
|
-
"multiple": false,
|
|
2243
|
-
"type": "option"
|
|
2244
|
-
},
|
|
2245
|
-
"api-key": {
|
|
2246
|
-
"description": "API key",
|
|
2247
|
-
"env": "FACES_API_KEY",
|
|
2248
|
-
"name": "api-key",
|
|
2249
|
-
"hasDynamicHelp": false,
|
|
2250
|
-
"multiple": false,
|
|
2251
|
-
"type": "option"
|
|
2252
|
-
}
|
|
2253
|
-
},
|
|
2254
|
-
"hasDynamicHelp": false,
|
|
2255
|
-
"hiddenAliases": [],
|
|
2256
|
-
"id": "config:set",
|
|
2257
|
-
"pluginAlias": "faces-cli",
|
|
2258
|
-
"pluginName": "faces-cli",
|
|
2259
|
-
"pluginType": "core",
|
|
2260
|
-
"strict": true,
|
|
2261
|
-
"enableJsonFlag": true,
|
|
2262
|
-
"isESM": true,
|
|
2263
|
-
"relativePath": [
|
|
2264
|
-
"dist",
|
|
2265
|
-
"commands",
|
|
2266
|
-
"config",
|
|
2267
|
-
"set.js"
|
|
2268
|
-
]
|
|
2269
|
-
},
|
|
2270
|
-
"config:show": {
|
|
2271
|
-
"aliases": [],
|
|
2272
|
-
"args": {},
|
|
2273
|
-
"description": "Print current config (credentials are masked)",
|
|
2274
|
-
"flags": {
|
|
2275
|
-
"json": {
|
|
2276
|
-
"description": "Format output as json.",
|
|
2277
|
-
"helpGroup": "GLOBAL",
|
|
2278
|
-
"name": "json",
|
|
2279
|
-
"allowNo": false,
|
|
2280
|
-
"type": "boolean"
|
|
2281
|
-
},
|
|
2282
|
-
"base-url": {
|
|
2283
|
-
"description": "API base URL",
|
|
2284
|
-
"env": "FACES_BASE_URL",
|
|
2285
|
-
"name": "base-url",
|
|
2286
|
-
"hasDynamicHelp": false,
|
|
2287
|
-
"multiple": false,
|
|
2288
|
-
"type": "option"
|
|
2289
|
-
},
|
|
2290
|
-
"token": {
|
|
2291
|
-
"description": "JWT bearer token",
|
|
2292
|
-
"env": "FACES_TOKEN",
|
|
2293
|
-
"name": "token",
|
|
2294
|
-
"hasDynamicHelp": false,
|
|
2295
|
-
"multiple": false,
|
|
2296
|
-
"type": "option"
|
|
2297
|
-
},
|
|
2298
|
-
"api-key": {
|
|
2299
|
-
"description": "API key",
|
|
2300
|
-
"env": "FACES_API_KEY",
|
|
2301
|
-
"name": "api-key",
|
|
2302
|
-
"hasDynamicHelp": false,
|
|
2303
|
-
"multiple": false,
|
|
2304
|
-
"type": "option"
|
|
2305
|
-
}
|
|
2306
|
-
},
|
|
2307
|
-
"hasDynamicHelp": false,
|
|
2308
|
-
"hiddenAliases": [],
|
|
2309
|
-
"id": "config:show",
|
|
2310
|
-
"pluginAlias": "faces-cli",
|
|
2311
|
-
"pluginName": "faces-cli",
|
|
2312
|
-
"pluginType": "core",
|
|
2313
|
-
"strict": true,
|
|
2314
|
-
"enableJsonFlag": true,
|
|
2315
|
-
"isESM": true,
|
|
2316
|
-
"relativePath": [
|
|
2317
|
-
"dist",
|
|
2318
|
-
"commands",
|
|
2319
|
-
"config",
|
|
2320
|
-
"show.js"
|
|
2321
|
-
]
|
|
2322
|
-
},
|
|
2323
|
-
"keys:create": {
|
|
2324
|
-
"aliases": [],
|
|
2325
|
-
"args": {},
|
|
2326
|
-
"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.",
|
|
2327
|
-
"flags": {
|
|
2328
|
-
"json": {
|
|
2329
|
-
"description": "Format output as json.",
|
|
2330
|
-
"helpGroup": "GLOBAL",
|
|
2331
|
-
"name": "json",
|
|
2332
|
-
"allowNo": false,
|
|
2333
|
-
"type": "boolean"
|
|
2334
|
-
},
|
|
2335
|
-
"base-url": {
|
|
2336
|
-
"description": "API base URL",
|
|
2337
|
-
"env": "FACES_BASE_URL",
|
|
2338
|
-
"name": "base-url",
|
|
2339
|
-
"hasDynamicHelp": false,
|
|
2340
|
-
"multiple": false,
|
|
2341
|
-
"type": "option"
|
|
2342
|
-
},
|
|
2343
|
-
"token": {
|
|
2344
|
-
"description": "JWT bearer token",
|
|
2345
|
-
"env": "FACES_TOKEN",
|
|
2346
|
-
"name": "token",
|
|
2347
|
-
"hasDynamicHelp": false,
|
|
2348
|
-
"multiple": false,
|
|
2349
|
-
"type": "option"
|
|
2350
|
-
},
|
|
2351
|
-
"api-key": {
|
|
2352
|
-
"description": "API key",
|
|
2353
|
-
"env": "FACES_API_KEY",
|
|
2354
|
-
"name": "api-key",
|
|
2355
|
-
"hasDynamicHelp": false,
|
|
2356
|
-
"multiple": false,
|
|
2357
|
-
"type": "option"
|
|
2358
|
-
},
|
|
2359
|
-
"name": {
|
|
2360
|
-
"description": "Key name/label",
|
|
2361
|
-
"name": "name",
|
|
2362
|
-
"required": true,
|
|
2363
|
-
"hasDynamicHelp": false,
|
|
2364
|
-
"multiple": false,
|
|
2365
|
-
"type": "option"
|
|
2353
|
+
"name": {
|
|
2354
|
+
"description": "Key name/label",
|
|
2355
|
+
"name": "name",
|
|
2356
|
+
"required": true,
|
|
2357
|
+
"hasDynamicHelp": false,
|
|
2358
|
+
"multiple": false,
|
|
2359
|
+
"type": "option"
|
|
2366
2360
|
},
|
|
2367
2361
|
"expires-days": {
|
|
2368
2362
|
"description": "Expiry in days (omit for no expiry)",
|
|
@@ -2612,10 +2606,16 @@
|
|
|
2612
2606
|
"update.js"
|
|
2613
2607
|
]
|
|
2614
2608
|
},
|
|
2615
|
-
"
|
|
2609
|
+
"team:add": {
|
|
2616
2610
|
"aliases": [],
|
|
2617
|
-
"args": {
|
|
2618
|
-
|
|
2611
|
+
"args": {
|
|
2612
|
+
"team_id": {
|
|
2613
|
+
"description": "Team ID",
|
|
2614
|
+
"name": "team_id",
|
|
2615
|
+
"required": true
|
|
2616
|
+
}
|
|
2617
|
+
},
|
|
2618
|
+
"description": "Add face(s) to a team",
|
|
2619
2619
|
"flags": {
|
|
2620
2620
|
"json": {
|
|
2621
2621
|
"description": "Format output as json.",
|
|
@@ -2647,11 +2647,19 @@
|
|
|
2647
2647
|
"hasDynamicHelp": false,
|
|
2648
2648
|
"multiple": false,
|
|
2649
2649
|
"type": "option"
|
|
2650
|
+
},
|
|
2651
|
+
"face": {
|
|
2652
|
+
"description": "Face alias to add (repeatable)",
|
|
2653
|
+
"name": "face",
|
|
2654
|
+
"required": true,
|
|
2655
|
+
"hasDynamicHelp": false,
|
|
2656
|
+
"multiple": true,
|
|
2657
|
+
"type": "option"
|
|
2650
2658
|
}
|
|
2651
2659
|
},
|
|
2652
2660
|
"hasDynamicHelp": false,
|
|
2653
2661
|
"hiddenAliases": [],
|
|
2654
|
-
"id": "
|
|
2662
|
+
"id": "team:add",
|
|
2655
2663
|
"pluginAlias": "faces-cli",
|
|
2656
2664
|
"pluginName": "faces-cli",
|
|
2657
2665
|
"pluginType": "core",
|
|
@@ -2661,14 +2669,14 @@
|
|
|
2661
2669
|
"relativePath": [
|
|
2662
2670
|
"dist",
|
|
2663
2671
|
"commands",
|
|
2664
|
-
"
|
|
2665
|
-
"
|
|
2672
|
+
"team",
|
|
2673
|
+
"add.js"
|
|
2666
2674
|
]
|
|
2667
2675
|
},
|
|
2668
|
-
"
|
|
2676
|
+
"team:create": {
|
|
2669
2677
|
"aliases": [],
|
|
2670
2678
|
"args": {},
|
|
2671
|
-
"description": "Create a new
|
|
2679
|
+
"description": "Create a new team",
|
|
2672
2680
|
"flags": {
|
|
2673
2681
|
"json": {
|
|
2674
2682
|
"description": "Format output as json.",
|
|
@@ -2702,59 +2710,37 @@
|
|
|
2702
2710
|
"type": "option"
|
|
2703
2711
|
},
|
|
2704
2712
|
"name": {
|
|
2705
|
-
"description": "
|
|
2713
|
+
"description": "Team name",
|
|
2706
2714
|
"name": "name",
|
|
2707
2715
|
"required": true,
|
|
2708
2716
|
"hasDynamicHelp": false,
|
|
2709
2717
|
"multiple": false,
|
|
2710
2718
|
"type": "option"
|
|
2711
2719
|
},
|
|
2712
|
-
"alias": {
|
|
2713
|
-
"description": "Unique alias slug",
|
|
2714
|
-
"name": "alias",
|
|
2715
|
-
"required": true,
|
|
2716
|
-
"hasDynamicHelp": false,
|
|
2717
|
-
"multiple": false,
|
|
2718
|
-
"type": "option"
|
|
2719
|
-
},
|
|
2720
2720
|
"description": {
|
|
2721
|
-
"description": "Plain-text description
|
|
2721
|
+
"description": "Plain-text team description (max 1500 chars)",
|
|
2722
2722
|
"name": "description",
|
|
2723
2723
|
"hasDynamicHelp": false,
|
|
2724
2724
|
"multiple": false,
|
|
2725
2725
|
"type": "option"
|
|
2726
2726
|
},
|
|
2727
|
-
"
|
|
2728
|
-
"description": "
|
|
2729
|
-
"name": "
|
|
2730
|
-
"hasDynamicHelp": false,
|
|
2731
|
-
"multiple": true,
|
|
2732
|
-
"type": "option"
|
|
2733
|
-
},
|
|
2734
|
-
"default-model": {
|
|
2735
|
-
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
2736
|
-
"name": "default-model",
|
|
2727
|
+
"protocol": {
|
|
2728
|
+
"description": "Protocol content (mermaid diagram or markdown, max 1000 words)",
|
|
2729
|
+
"name": "protocol",
|
|
2737
2730
|
"hasDynamicHelp": false,
|
|
2738
2731
|
"multiple": false,
|
|
2739
2732
|
"type": "option"
|
|
2740
2733
|
},
|
|
2741
|
-
"
|
|
2742
|
-
"description": "
|
|
2743
|
-
"name": "
|
|
2734
|
+
"protocol-file": {
|
|
2735
|
+
"description": "Read protocol from file",
|
|
2736
|
+
"name": "protocol-file",
|
|
2744
2737
|
"hasDynamicHelp": false,
|
|
2745
2738
|
"multiple": false,
|
|
2746
2739
|
"type": "option"
|
|
2747
2740
|
},
|
|
2748
|
-
"
|
|
2749
|
-
"description": "
|
|
2750
|
-
"name": "
|
|
2751
|
-
"hasDynamicHelp": false,
|
|
2752
|
-
"multiple": true,
|
|
2753
|
-
"type": "option"
|
|
2754
|
-
},
|
|
2755
|
-
"tool": {
|
|
2756
|
-
"description": "Tool name to enable (repeatable)",
|
|
2757
|
-
"name": "tool",
|
|
2741
|
+
"tag": {
|
|
2742
|
+
"description": "Tag label (repeatable, lowercase)",
|
|
2743
|
+
"name": "tag",
|
|
2758
2744
|
"hasDynamicHelp": false,
|
|
2759
2745
|
"multiple": true,
|
|
2760
2746
|
"type": "option"
|
|
@@ -2762,7 +2748,7 @@
|
|
|
2762
2748
|
},
|
|
2763
2749
|
"hasDynamicHelp": false,
|
|
2764
2750
|
"hiddenAliases": [],
|
|
2765
|
-
"id": "
|
|
2751
|
+
"id": "team:create",
|
|
2766
2752
|
"pluginAlias": "faces-cli",
|
|
2767
2753
|
"pluginName": "faces-cli",
|
|
2768
2754
|
"pluginType": "core",
|
|
@@ -2772,20 +2758,20 @@
|
|
|
2772
2758
|
"relativePath": [
|
|
2773
2759
|
"dist",
|
|
2774
2760
|
"commands",
|
|
2775
|
-
"
|
|
2761
|
+
"team",
|
|
2776
2762
|
"create.js"
|
|
2777
2763
|
]
|
|
2778
2764
|
},
|
|
2779
|
-
"
|
|
2765
|
+
"team:delete": {
|
|
2780
2766
|
"aliases": [],
|
|
2781
2767
|
"args": {
|
|
2782
|
-
"
|
|
2783
|
-
"description": "
|
|
2784
|
-
"name": "
|
|
2768
|
+
"team_id": {
|
|
2769
|
+
"description": "Team ID",
|
|
2770
|
+
"name": "team_id",
|
|
2785
2771
|
"required": true
|
|
2786
2772
|
}
|
|
2787
2773
|
},
|
|
2788
|
-
"description": "Delete a
|
|
2774
|
+
"description": "Delete a team",
|
|
2789
2775
|
"flags": {
|
|
2790
2776
|
"json": {
|
|
2791
2777
|
"description": "Format output as json.",
|
|
@@ -2827,7 +2813,7 @@
|
|
|
2827
2813
|
},
|
|
2828
2814
|
"hasDynamicHelp": false,
|
|
2829
2815
|
"hiddenAliases": [],
|
|
2830
|
-
"id": "
|
|
2816
|
+
"id": "team:delete",
|
|
2831
2817
|
"pluginAlias": "faces-cli",
|
|
2832
2818
|
"pluginName": "faces-cli",
|
|
2833
2819
|
"pluginType": "core",
|
|
@@ -2837,14 +2823,20 @@
|
|
|
2837
2823
|
"relativePath": [
|
|
2838
2824
|
"dist",
|
|
2839
2825
|
"commands",
|
|
2840
|
-
"
|
|
2826
|
+
"team",
|
|
2841
2827
|
"delete.js"
|
|
2842
2828
|
]
|
|
2843
2829
|
},
|
|
2844
|
-
"
|
|
2830
|
+
"team:edit": {
|
|
2845
2831
|
"aliases": [],
|
|
2846
|
-
"args": {
|
|
2847
|
-
|
|
2832
|
+
"args": {
|
|
2833
|
+
"team_id": {
|
|
2834
|
+
"description": "Team ID",
|
|
2835
|
+
"name": "team_id",
|
|
2836
|
+
"required": true
|
|
2837
|
+
}
|
|
2838
|
+
},
|
|
2839
|
+
"description": "Edit a team",
|
|
2848
2840
|
"flags": {
|
|
2849
2841
|
"json": {
|
|
2850
2842
|
"description": "Format output as json.",
|
|
@@ -2877,18 +2869,38 @@
|
|
|
2877
2869
|
"multiple": false,
|
|
2878
2870
|
"type": "option"
|
|
2879
2871
|
},
|
|
2880
|
-
"
|
|
2881
|
-
"description": "
|
|
2882
|
-
"name": "
|
|
2883
|
-
"required": true,
|
|
2872
|
+
"name": {
|
|
2873
|
+
"description": "New team name",
|
|
2874
|
+
"name": "name",
|
|
2884
2875
|
"hasDynamicHelp": false,
|
|
2885
|
-
"multiple":
|
|
2876
|
+
"multiple": false,
|
|
2877
|
+
"type": "option"
|
|
2878
|
+
},
|
|
2879
|
+
"description": {
|
|
2880
|
+
"description": "New description (max 1500 chars)",
|
|
2881
|
+
"name": "description",
|
|
2882
|
+
"hasDynamicHelp": false,
|
|
2883
|
+
"multiple": false,
|
|
2884
|
+
"type": "option"
|
|
2885
|
+
},
|
|
2886
|
+
"protocol": {
|
|
2887
|
+
"description": "New protocol content",
|
|
2888
|
+
"name": "protocol",
|
|
2889
|
+
"hasDynamicHelp": false,
|
|
2890
|
+
"multiple": false,
|
|
2891
|
+
"type": "option"
|
|
2892
|
+
},
|
|
2893
|
+
"protocol-file": {
|
|
2894
|
+
"description": "Read protocol from file",
|
|
2895
|
+
"name": "protocol-file",
|
|
2896
|
+
"hasDynamicHelp": false,
|
|
2897
|
+
"multiple": false,
|
|
2886
2898
|
"type": "option"
|
|
2887
2899
|
}
|
|
2888
2900
|
},
|
|
2889
2901
|
"hasDynamicHelp": false,
|
|
2890
2902
|
"hiddenAliases": [],
|
|
2891
|
-
"id": "
|
|
2903
|
+
"id": "team:edit",
|
|
2892
2904
|
"pluginAlias": "faces-cli",
|
|
2893
2905
|
"pluginName": "faces-cli",
|
|
2894
2906
|
"pluginType": "core",
|
|
@@ -2898,20 +2910,20 @@
|
|
|
2898
2910
|
"relativePath": [
|
|
2899
2911
|
"dist",
|
|
2900
2912
|
"commands",
|
|
2901
|
-
"
|
|
2902
|
-
"
|
|
2913
|
+
"team",
|
|
2914
|
+
"edit.js"
|
|
2903
2915
|
]
|
|
2904
2916
|
},
|
|
2905
|
-
"
|
|
2917
|
+
"team:get": {
|
|
2906
2918
|
"aliases": [],
|
|
2907
2919
|
"args": {
|
|
2908
|
-
"
|
|
2909
|
-
"description": "
|
|
2910
|
-
"name": "
|
|
2920
|
+
"team_id": {
|
|
2921
|
+
"description": "Team ID",
|
|
2922
|
+
"name": "team_id",
|
|
2911
2923
|
"required": true
|
|
2912
2924
|
}
|
|
2913
2925
|
},
|
|
2914
|
-
"description": "
|
|
2926
|
+
"description": "Get a team by ID",
|
|
2915
2927
|
"flags": {
|
|
2916
2928
|
"json": {
|
|
2917
2929
|
"description": "Format output as json.",
|
|
@@ -2943,60 +2955,11 @@
|
|
|
2943
2955
|
"hasDynamicHelp": false,
|
|
2944
2956
|
"multiple": false,
|
|
2945
2957
|
"type": "option"
|
|
2946
|
-
},
|
|
2947
|
-
"name": {
|
|
2948
|
-
"description": "New display name",
|
|
2949
|
-
"name": "name",
|
|
2950
|
-
"hasDynamicHelp": false,
|
|
2951
|
-
"multiple": false,
|
|
2952
|
-
"type": "option"
|
|
2953
|
-
},
|
|
2954
|
-
"description": {
|
|
2955
|
-
"description": "Plain-text description / bio (max 1500 chars)",
|
|
2956
|
-
"name": "description",
|
|
2957
|
-
"hasDynamicHelp": false,
|
|
2958
|
-
"multiple": false,
|
|
2959
|
-
"type": "option"
|
|
2960
|
-
},
|
|
2961
|
-
"tag": {
|
|
2962
|
-
"description": "Replace all tags (repeatable, lowercase)",
|
|
2963
|
-
"name": "tag",
|
|
2964
|
-
"hasDynamicHelp": false,
|
|
2965
|
-
"multiple": true,
|
|
2966
|
-
"type": "option"
|
|
2967
|
-
},
|
|
2968
|
-
"default-model": {
|
|
2969
|
-
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
2970
|
-
"name": "default-model",
|
|
2971
|
-
"hasDynamicHelp": false,
|
|
2972
|
-
"multiple": false,
|
|
2973
|
-
"type": "option"
|
|
2974
|
-
},
|
|
2975
|
-
"formula": {
|
|
2976
|
-
"description": "New boolean formula (synthetic faces only)",
|
|
2977
|
-
"name": "formula",
|
|
2978
|
-
"hasDynamicHelp": false,
|
|
2979
|
-
"multiple": false,
|
|
2980
|
-
"type": "option"
|
|
2981
|
-
},
|
|
2982
|
-
"attr": {
|
|
2983
|
-
"description": "Update attribute KEY=VALUE (repeatable)",
|
|
2984
|
-
"name": "attr",
|
|
2985
|
-
"hasDynamicHelp": false,
|
|
2986
|
-
"multiple": true,
|
|
2987
|
-
"type": "option"
|
|
2988
|
-
},
|
|
2989
|
-
"tool": {
|
|
2990
|
-
"description": "Tool names to set (replaces list, repeatable)",
|
|
2991
|
-
"name": "tool",
|
|
2992
|
-
"hasDynamicHelp": false,
|
|
2993
|
-
"multiple": true,
|
|
2994
|
-
"type": "option"
|
|
2995
2958
|
}
|
|
2996
2959
|
},
|
|
2997
2960
|
"hasDynamicHelp": false,
|
|
2998
2961
|
"hiddenAliases": [],
|
|
2999
|
-
"id": "
|
|
2962
|
+
"id": "team:get",
|
|
3000
2963
|
"pluginAlias": "faces-cli",
|
|
3001
2964
|
"pluginName": "faces-cli",
|
|
3002
2965
|
"pluginType": "core",
|
|
@@ -3006,20 +2969,14 @@
|
|
|
3006
2969
|
"relativePath": [
|
|
3007
2970
|
"dist",
|
|
3008
2971
|
"commands",
|
|
3009
|
-
"
|
|
3010
|
-
"
|
|
2972
|
+
"team",
|
|
2973
|
+
"get.js"
|
|
3011
2974
|
]
|
|
3012
2975
|
},
|
|
3013
|
-
"
|
|
2976
|
+
"team:list": {
|
|
3014
2977
|
"aliases": [],
|
|
3015
|
-
"args": {
|
|
3016
|
-
|
|
3017
|
-
"description": "Face alias",
|
|
3018
|
-
"name": "face_id",
|
|
3019
|
-
"required": true
|
|
3020
|
-
}
|
|
3021
|
-
},
|
|
3022
|
-
"description": "Get details for a face by alias",
|
|
2978
|
+
"args": {},
|
|
2979
|
+
"description": "List your teams",
|
|
3023
2980
|
"flags": {
|
|
3024
2981
|
"json": {
|
|
3025
2982
|
"description": "Format output as json.",
|
|
@@ -3051,18 +3008,11 @@
|
|
|
3051
3008
|
"hasDynamicHelp": false,
|
|
3052
3009
|
"multiple": false,
|
|
3053
3010
|
"type": "option"
|
|
3054
|
-
},
|
|
3055
|
-
"include": {
|
|
3056
|
-
"description": "Include extra fields: tags, teams (comma-separated)",
|
|
3057
|
-
"name": "include",
|
|
3058
|
-
"hasDynamicHelp": false,
|
|
3059
|
-
"multiple": false,
|
|
3060
|
-
"type": "option"
|
|
3061
3011
|
}
|
|
3062
3012
|
},
|
|
3063
3013
|
"hasDynamicHelp": false,
|
|
3064
3014
|
"hiddenAliases": [],
|
|
3065
|
-
"id": "
|
|
3015
|
+
"id": "team:list",
|
|
3066
3016
|
"pluginAlias": "faces-cli",
|
|
3067
3017
|
"pluginName": "faces-cli",
|
|
3068
3018
|
"pluginType": "core",
|
|
@@ -3072,14 +3022,20 @@
|
|
|
3072
3022
|
"relativePath": [
|
|
3073
3023
|
"dist",
|
|
3074
3024
|
"commands",
|
|
3075
|
-
"
|
|
3076
|
-
"
|
|
3025
|
+
"team",
|
|
3026
|
+
"list.js"
|
|
3077
3027
|
]
|
|
3078
3028
|
},
|
|
3079
|
-
"
|
|
3029
|
+
"team:members": {
|
|
3080
3030
|
"aliases": [],
|
|
3081
|
-
"args": {
|
|
3082
|
-
|
|
3031
|
+
"args": {
|
|
3032
|
+
"team_id": {
|
|
3033
|
+
"description": "Team ID",
|
|
3034
|
+
"name": "team_id",
|
|
3035
|
+
"required": true
|
|
3036
|
+
}
|
|
3037
|
+
},
|
|
3038
|
+
"description": "List members of a team",
|
|
3083
3039
|
"flags": {
|
|
3084
3040
|
"json": {
|
|
3085
3041
|
"description": "Format output as json.",
|
|
@@ -3111,32 +3067,11 @@
|
|
|
3111
3067
|
"hasDynamicHelp": false,
|
|
3112
3068
|
"multiple": false,
|
|
3113
3069
|
"type": "option"
|
|
3114
|
-
},
|
|
3115
|
-
"tag": {
|
|
3116
|
-
"description": "Filter by tag (repeatable, AND logic)",
|
|
3117
|
-
"name": "tag",
|
|
3118
|
-
"hasDynamicHelp": false,
|
|
3119
|
-
"multiple": true,
|
|
3120
|
-
"type": "option"
|
|
3121
|
-
},
|
|
3122
|
-
"team": {
|
|
3123
|
-
"description": "Filter by team ID (repeatable, OR logic)",
|
|
3124
|
-
"name": "team",
|
|
3125
|
-
"hasDynamicHelp": false,
|
|
3126
|
-
"multiple": true,
|
|
3127
|
-
"type": "option"
|
|
3128
|
-
},
|
|
3129
|
-
"include": {
|
|
3130
|
-
"description": "Include extra fields: tags, teams (comma-separated)",
|
|
3131
|
-
"name": "include",
|
|
3132
|
-
"hasDynamicHelp": false,
|
|
3133
|
-
"multiple": false,
|
|
3134
|
-
"type": "option"
|
|
3135
3070
|
}
|
|
3136
3071
|
},
|
|
3137
3072
|
"hasDynamicHelp": false,
|
|
3138
3073
|
"hiddenAliases": [],
|
|
3139
|
-
"id": "
|
|
3074
|
+
"id": "team:members",
|
|
3140
3075
|
"pluginAlias": "faces-cli",
|
|
3141
3076
|
"pluginName": "faces-cli",
|
|
3142
3077
|
"pluginType": "core",
|
|
@@ -3146,20 +3081,25 @@
|
|
|
3146
3081
|
"relativePath": [
|
|
3147
3082
|
"dist",
|
|
3148
3083
|
"commands",
|
|
3149
|
-
"
|
|
3150
|
-
"
|
|
3084
|
+
"team",
|
|
3085
|
+
"members.js"
|
|
3151
3086
|
]
|
|
3152
3087
|
},
|
|
3153
|
-
"
|
|
3088
|
+
"team:remove": {
|
|
3154
3089
|
"aliases": [],
|
|
3155
3090
|
"args": {
|
|
3156
|
-
"
|
|
3157
|
-
"description": "
|
|
3158
|
-
"name": "
|
|
3091
|
+
"team_id": {
|
|
3092
|
+
"description": "Team ID",
|
|
3093
|
+
"name": "team_id",
|
|
3094
|
+
"required": true
|
|
3095
|
+
},
|
|
3096
|
+
"alias": {
|
|
3097
|
+
"description": "Face alias to remove",
|
|
3098
|
+
"name": "alias",
|
|
3159
3099
|
"required": true
|
|
3160
3100
|
}
|
|
3161
3101
|
},
|
|
3162
|
-
"description": "
|
|
3102
|
+
"description": "Remove a face from a team",
|
|
3163
3103
|
"flags": {
|
|
3164
3104
|
"json": {
|
|
3165
3105
|
"description": "Format output as json.",
|
|
@@ -3191,45 +3131,11 @@
|
|
|
3191
3131
|
"hasDynamicHelp": false,
|
|
3192
3132
|
"multiple": false,
|
|
3193
3133
|
"type": "option"
|
|
3194
|
-
},
|
|
3195
|
-
"k": {
|
|
3196
|
-
"description": "Number of results (1–20)",
|
|
3197
|
-
"name": "k",
|
|
3198
|
-
"default": 5,
|
|
3199
|
-
"hasDynamicHelp": false,
|
|
3200
|
-
"multiple": false,
|
|
3201
|
-
"type": "option"
|
|
3202
|
-
},
|
|
3203
|
-
"component": {
|
|
3204
|
-
"description": "Centroid component to rank on (beta, delta, epsilon are the principal components of a face; face is their composite)",
|
|
3205
|
-
"name": "component",
|
|
3206
|
-
"default": "face",
|
|
3207
|
-
"hasDynamicHelp": false,
|
|
3208
|
-
"multiple": false,
|
|
3209
|
-
"options": [
|
|
3210
|
-
"face",
|
|
3211
|
-
"beta",
|
|
3212
|
-
"delta",
|
|
3213
|
-
"epsilon"
|
|
3214
|
-
],
|
|
3215
|
-
"type": "option"
|
|
3216
|
-
},
|
|
3217
|
-
"direction": {
|
|
3218
|
-
"description": "nearest (most similar) or furthest (most dissimilar)",
|
|
3219
|
-
"name": "direction",
|
|
3220
|
-
"default": "nearest",
|
|
3221
|
-
"hasDynamicHelp": false,
|
|
3222
|
-
"multiple": false,
|
|
3223
|
-
"options": [
|
|
3224
|
-
"nearest",
|
|
3225
|
-
"furthest"
|
|
3226
|
-
],
|
|
3227
|
-
"type": "option"
|
|
3228
3134
|
}
|
|
3229
3135
|
},
|
|
3230
3136
|
"hasDynamicHelp": false,
|
|
3231
3137
|
"hiddenAliases": [],
|
|
3232
|
-
"id": "
|
|
3138
|
+
"id": "team:remove",
|
|
3233
3139
|
"pluginAlias": "faces-cli",
|
|
3234
3140
|
"pluginName": "faces-cli",
|
|
3235
3141
|
"pluginType": "core",
|
|
@@ -3239,14 +3145,14 @@
|
|
|
3239
3145
|
"relativePath": [
|
|
3240
3146
|
"dist",
|
|
3241
3147
|
"commands",
|
|
3242
|
-
"
|
|
3243
|
-
"
|
|
3148
|
+
"team",
|
|
3149
|
+
"remove.js"
|
|
3244
3150
|
]
|
|
3245
3151
|
},
|
|
3246
|
-
"face:
|
|
3152
|
+
"face:attributes": {
|
|
3247
3153
|
"aliases": [],
|
|
3248
3154
|
"args": {},
|
|
3249
|
-
"description": "
|
|
3155
|
+
"description": "List all supported attribute keys",
|
|
3250
3156
|
"flags": {
|
|
3251
3157
|
"json": {
|
|
3252
3158
|
"description": "Format output as json.",
|
|
@@ -3282,7 +3188,7 @@
|
|
|
3282
3188
|
},
|
|
3283
3189
|
"hasDynamicHelp": false,
|
|
3284
3190
|
"hiddenAliases": [],
|
|
3285
|
-
"id": "face:
|
|
3191
|
+
"id": "face:attributes",
|
|
3286
3192
|
"pluginAlias": "faces-cli",
|
|
3287
3193
|
"pluginName": "faces-cli",
|
|
3288
3194
|
"pluginType": "core",
|
|
@@ -3293,19 +3199,13 @@
|
|
|
3293
3199
|
"dist",
|
|
3294
3200
|
"commands",
|
|
3295
3201
|
"face",
|
|
3296
|
-
"
|
|
3202
|
+
"attributes.js"
|
|
3297
3203
|
]
|
|
3298
3204
|
},
|
|
3299
|
-
"face:
|
|
3205
|
+
"face:create": {
|
|
3300
3206
|
"aliases": [],
|
|
3301
|
-
"args": {
|
|
3302
|
-
|
|
3303
|
-
"description": "Face alias",
|
|
3304
|
-
"name": "alias",
|
|
3305
|
-
"required": true
|
|
3306
|
-
}
|
|
3307
|
-
},
|
|
3308
|
-
"description": "Set a face's team memberships (replaces all)",
|
|
3207
|
+
"args": {},
|
|
3208
|
+
"description": "Create a new face",
|
|
3309
3209
|
"flags": {
|
|
3310
3210
|
"json": {
|
|
3311
3211
|
"description": "Format output as json.",
|
|
@@ -3338,18 +3238,68 @@
|
|
|
3338
3238
|
"multiple": false,
|
|
3339
3239
|
"type": "option"
|
|
3340
3240
|
},
|
|
3341
|
-
"
|
|
3342
|
-
"description": "
|
|
3343
|
-
"name": "
|
|
3241
|
+
"name": {
|
|
3242
|
+
"description": "Display name",
|
|
3243
|
+
"name": "name",
|
|
3244
|
+
"required": true,
|
|
3245
|
+
"hasDynamicHelp": false,
|
|
3246
|
+
"multiple": false,
|
|
3247
|
+
"type": "option"
|
|
3248
|
+
},
|
|
3249
|
+
"alias": {
|
|
3250
|
+
"description": "Unique alias slug",
|
|
3251
|
+
"name": "alias",
|
|
3344
3252
|
"required": true,
|
|
3345
3253
|
"hasDynamicHelp": false,
|
|
3254
|
+
"multiple": false,
|
|
3255
|
+
"type": "option"
|
|
3256
|
+
},
|
|
3257
|
+
"description": {
|
|
3258
|
+
"description": "Plain-text description / bio (max 1500 chars)",
|
|
3259
|
+
"name": "description",
|
|
3260
|
+
"hasDynamicHelp": false,
|
|
3261
|
+
"multiple": false,
|
|
3262
|
+
"type": "option"
|
|
3263
|
+
},
|
|
3264
|
+
"tag": {
|
|
3265
|
+
"description": "Tag label (repeatable, lowercase)",
|
|
3266
|
+
"name": "tag",
|
|
3267
|
+
"hasDynamicHelp": false,
|
|
3268
|
+
"multiple": true,
|
|
3269
|
+
"type": "option"
|
|
3270
|
+
},
|
|
3271
|
+
"default-model": {
|
|
3272
|
+
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
3273
|
+
"name": "default-model",
|
|
3274
|
+
"hasDynamicHelp": false,
|
|
3275
|
+
"multiple": false,
|
|
3276
|
+
"type": "option"
|
|
3277
|
+
},
|
|
3278
|
+
"formula": {
|
|
3279
|
+
"description": "Boolean formula over owned concrete face aliases (e.g. \"a | b\", \"(a | b) - c\"). Creates a composite face.",
|
|
3280
|
+
"name": "formula",
|
|
3281
|
+
"hasDynamicHelp": false,
|
|
3282
|
+
"multiple": false,
|
|
3283
|
+
"type": "option"
|
|
3284
|
+
},
|
|
3285
|
+
"attr": {
|
|
3286
|
+
"description": "Attribute KEY=VALUE (repeatable)",
|
|
3287
|
+
"name": "attr",
|
|
3288
|
+
"hasDynamicHelp": false,
|
|
3289
|
+
"multiple": true,
|
|
3290
|
+
"type": "option"
|
|
3291
|
+
},
|
|
3292
|
+
"tool": {
|
|
3293
|
+
"description": "Tool name to enable (repeatable)",
|
|
3294
|
+
"name": "tool",
|
|
3295
|
+
"hasDynamicHelp": false,
|
|
3346
3296
|
"multiple": true,
|
|
3347
3297
|
"type": "option"
|
|
3348
3298
|
}
|
|
3349
3299
|
},
|
|
3350
3300
|
"hasDynamicHelp": false,
|
|
3351
3301
|
"hiddenAliases": [],
|
|
3352
|
-
"id": "face:
|
|
3302
|
+
"id": "face:create",
|
|
3353
3303
|
"pluginAlias": "faces-cli",
|
|
3354
3304
|
"pluginName": "faces-cli",
|
|
3355
3305
|
"pluginType": "core",
|
|
@@ -3360,10 +3310,10 @@
|
|
|
3360
3310
|
"dist",
|
|
3361
3311
|
"commands",
|
|
3362
3312
|
"face",
|
|
3363
|
-
"
|
|
3313
|
+
"create.js"
|
|
3364
3314
|
]
|
|
3365
3315
|
},
|
|
3366
|
-
"face:
|
|
3316
|
+
"face:delete": {
|
|
3367
3317
|
"aliases": [],
|
|
3368
3318
|
"args": {
|
|
3369
3319
|
"face_id": {
|
|
@@ -3372,7 +3322,7 @@
|
|
|
3372
3322
|
"required": true
|
|
3373
3323
|
}
|
|
3374
3324
|
},
|
|
3375
|
-
"description": "
|
|
3325
|
+
"description": "Delete a face permanently",
|
|
3376
3326
|
"flags": {
|
|
3377
3327
|
"json": {
|
|
3378
3328
|
"description": "Format output as json.",
|
|
@@ -3405,49 +3355,16 @@
|
|
|
3405
3355
|
"multiple": false,
|
|
3406
3356
|
"type": "option"
|
|
3407
3357
|
},
|
|
3408
|
-
"
|
|
3409
|
-
"description": "
|
|
3410
|
-
"name": "
|
|
3411
|
-
"
|
|
3412
|
-
"
|
|
3413
|
-
"multiple": false,
|
|
3414
|
-
"type": "option"
|
|
3415
|
-
},
|
|
3416
|
-
"kind": {
|
|
3417
|
-
"description": "Upload kind: document or thread",
|
|
3418
|
-
"name": "kind",
|
|
3419
|
-
"default": "document",
|
|
3420
|
-
"hasDynamicHelp": false,
|
|
3421
|
-
"multiple": false,
|
|
3422
|
-
"options": [
|
|
3423
|
-
"document",
|
|
3424
|
-
"thread"
|
|
3425
|
-
],
|
|
3426
|
-
"type": "option"
|
|
3427
|
-
},
|
|
3428
|
-
"perspective": {
|
|
3429
|
-
"description": "Perspective (document only)",
|
|
3430
|
-
"name": "perspective",
|
|
3431
|
-
"default": "third-person",
|
|
3432
|
-
"hasDynamicHelp": false,
|
|
3433
|
-
"multiple": false,
|
|
3434
|
-
"options": [
|
|
3435
|
-
"first-person",
|
|
3436
|
-
"third-person"
|
|
3437
|
-
],
|
|
3438
|
-
"type": "option"
|
|
3439
|
-
},
|
|
3440
|
-
"face-speaker": {
|
|
3441
|
-
"description": "Speaker name to map to the face (thread only). If omitted, first speaker is used.",
|
|
3442
|
-
"name": "face-speaker",
|
|
3443
|
-
"hasDynamicHelp": false,
|
|
3444
|
-
"multiple": false,
|
|
3445
|
-
"type": "option"
|
|
3358
|
+
"yes": {
|
|
3359
|
+
"description": "Skip confirmation",
|
|
3360
|
+
"name": "yes",
|
|
3361
|
+
"allowNo": false,
|
|
3362
|
+
"type": "boolean"
|
|
3446
3363
|
}
|
|
3447
3364
|
},
|
|
3448
3365
|
"hasDynamicHelp": false,
|
|
3449
3366
|
"hiddenAliases": [],
|
|
3450
|
-
"id": "face:
|
|
3367
|
+
"id": "face:delete",
|
|
3451
3368
|
"pluginAlias": "faces-cli",
|
|
3452
3369
|
"pluginName": "faces-cli",
|
|
3453
3370
|
"pluginType": "core",
|
|
@@ -3458,19 +3375,13 @@
|
|
|
3458
3375
|
"dist",
|
|
3459
3376
|
"commands",
|
|
3460
3377
|
"face",
|
|
3461
|
-
"
|
|
3378
|
+
"delete.js"
|
|
3462
3379
|
]
|
|
3463
3380
|
},
|
|
3464
|
-
"
|
|
3381
|
+
"face:diff": {
|
|
3465
3382
|
"aliases": [],
|
|
3466
|
-
"args": {
|
|
3467
|
-
|
|
3468
|
-
"description": "Team ID",
|
|
3469
|
-
"name": "team_id",
|
|
3470
|
-
"required": true
|
|
3471
|
-
}
|
|
3472
|
-
},
|
|
3473
|
-
"description": "Add face(s) to a team",
|
|
3383
|
+
"args": {},
|
|
3384
|
+
"description": "Compare owned faces pairwise across all centroid components",
|
|
3474
3385
|
"flags": {
|
|
3475
3386
|
"json": {
|
|
3476
3387
|
"description": "Format output as json.",
|
|
@@ -3504,7 +3415,7 @@
|
|
|
3504
3415
|
"type": "option"
|
|
3505
3416
|
},
|
|
3506
3417
|
"face": {
|
|
3507
|
-
"description": "Face alias to
|
|
3418
|
+
"description": "Face alias to include (repeatable, min 2)",
|
|
3508
3419
|
"name": "face",
|
|
3509
3420
|
"required": true,
|
|
3510
3421
|
"hasDynamicHelp": false,
|
|
@@ -3514,7 +3425,7 @@
|
|
|
3514
3425
|
},
|
|
3515
3426
|
"hasDynamicHelp": false,
|
|
3516
3427
|
"hiddenAliases": [],
|
|
3517
|
-
"id": "
|
|
3428
|
+
"id": "face:diff",
|
|
3518
3429
|
"pluginAlias": "faces-cli",
|
|
3519
3430
|
"pluginName": "faces-cli",
|
|
3520
3431
|
"pluginType": "core",
|
|
@@ -3524,14 +3435,20 @@
|
|
|
3524
3435
|
"relativePath": [
|
|
3525
3436
|
"dist",
|
|
3526
3437
|
"commands",
|
|
3527
|
-
"
|
|
3528
|
-
"
|
|
3438
|
+
"face",
|
|
3439
|
+
"diff.js"
|
|
3529
3440
|
]
|
|
3530
3441
|
},
|
|
3531
|
-
"
|
|
3442
|
+
"face:edit": {
|
|
3532
3443
|
"aliases": [],
|
|
3533
|
-
"args": {
|
|
3534
|
-
|
|
3444
|
+
"args": {
|
|
3445
|
+
"face_id": {
|
|
3446
|
+
"description": "Face alias",
|
|
3447
|
+
"name": "face_id",
|
|
3448
|
+
"required": true
|
|
3449
|
+
}
|
|
3450
|
+
},
|
|
3451
|
+
"description": "Edit a face's metadata",
|
|
3535
3452
|
"flags": {
|
|
3536
3453
|
"json": {
|
|
3537
3454
|
"description": "Format output as json.",
|
|
@@ -3565,37 +3482,50 @@
|
|
|
3565
3482
|
"type": "option"
|
|
3566
3483
|
},
|
|
3567
3484
|
"name": {
|
|
3568
|
-
"description": "
|
|
3485
|
+
"description": "New display name",
|
|
3569
3486
|
"name": "name",
|
|
3570
|
-
"required": true,
|
|
3571
3487
|
"hasDynamicHelp": false,
|
|
3572
3488
|
"multiple": false,
|
|
3573
3489
|
"type": "option"
|
|
3574
3490
|
},
|
|
3575
3491
|
"description": {
|
|
3576
|
-
"description": "Plain-text
|
|
3492
|
+
"description": "Plain-text description / bio (max 1500 chars)",
|
|
3577
3493
|
"name": "description",
|
|
3578
3494
|
"hasDynamicHelp": false,
|
|
3579
3495
|
"multiple": false,
|
|
3580
3496
|
"type": "option"
|
|
3581
3497
|
},
|
|
3582
|
-
"
|
|
3583
|
-
"description": "
|
|
3584
|
-
"name": "
|
|
3498
|
+
"tag": {
|
|
3499
|
+
"description": "Replace all tags (repeatable, lowercase)",
|
|
3500
|
+
"name": "tag",
|
|
3501
|
+
"hasDynamicHelp": false,
|
|
3502
|
+
"multiple": true,
|
|
3503
|
+
"type": "option"
|
|
3504
|
+
},
|
|
3505
|
+
"default-model": {
|
|
3506
|
+
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
3507
|
+
"name": "default-model",
|
|
3585
3508
|
"hasDynamicHelp": false,
|
|
3586
3509
|
"multiple": false,
|
|
3587
3510
|
"type": "option"
|
|
3588
3511
|
},
|
|
3589
|
-
"
|
|
3590
|
-
"description": "
|
|
3591
|
-
"name": "
|
|
3512
|
+
"formula": {
|
|
3513
|
+
"description": "New boolean formula (synthetic faces only)",
|
|
3514
|
+
"name": "formula",
|
|
3592
3515
|
"hasDynamicHelp": false,
|
|
3593
3516
|
"multiple": false,
|
|
3594
3517
|
"type": "option"
|
|
3595
3518
|
},
|
|
3596
|
-
"
|
|
3597
|
-
"description": "
|
|
3598
|
-
"name": "
|
|
3519
|
+
"attr": {
|
|
3520
|
+
"description": "Update attribute KEY=VALUE (repeatable)",
|
|
3521
|
+
"name": "attr",
|
|
3522
|
+
"hasDynamicHelp": false,
|
|
3523
|
+
"multiple": true,
|
|
3524
|
+
"type": "option"
|
|
3525
|
+
},
|
|
3526
|
+
"tool": {
|
|
3527
|
+
"description": "Tool names to set (replaces list, repeatable)",
|
|
3528
|
+
"name": "tool",
|
|
3599
3529
|
"hasDynamicHelp": false,
|
|
3600
3530
|
"multiple": true,
|
|
3601
3531
|
"type": "option"
|
|
@@ -3603,7 +3533,7 @@
|
|
|
3603
3533
|
},
|
|
3604
3534
|
"hasDynamicHelp": false,
|
|
3605
3535
|
"hiddenAliases": [],
|
|
3606
|
-
"id": "
|
|
3536
|
+
"id": "face:edit",
|
|
3607
3537
|
"pluginAlias": "faces-cli",
|
|
3608
3538
|
"pluginName": "faces-cli",
|
|
3609
3539
|
"pluginType": "core",
|
|
@@ -3613,20 +3543,20 @@
|
|
|
3613
3543
|
"relativePath": [
|
|
3614
3544
|
"dist",
|
|
3615
3545
|
"commands",
|
|
3616
|
-
"
|
|
3617
|
-
"
|
|
3546
|
+
"face",
|
|
3547
|
+
"edit.js"
|
|
3618
3548
|
]
|
|
3619
3549
|
},
|
|
3620
|
-
"
|
|
3550
|
+
"face:get": {
|
|
3621
3551
|
"aliases": [],
|
|
3622
3552
|
"args": {
|
|
3623
|
-
"
|
|
3624
|
-
"description": "
|
|
3625
|
-
"name": "
|
|
3553
|
+
"face_id": {
|
|
3554
|
+
"description": "Face alias",
|
|
3555
|
+
"name": "face_id",
|
|
3626
3556
|
"required": true
|
|
3627
3557
|
}
|
|
3628
3558
|
},
|
|
3629
|
-
"description": "
|
|
3559
|
+
"description": "Get details for a face by alias",
|
|
3630
3560
|
"flags": {
|
|
3631
3561
|
"json": {
|
|
3632
3562
|
"description": "Format output as json.",
|
|
@@ -3659,16 +3589,17 @@
|
|
|
3659
3589
|
"multiple": false,
|
|
3660
3590
|
"type": "option"
|
|
3661
3591
|
},
|
|
3662
|
-
"
|
|
3663
|
-
"description": "
|
|
3664
|
-
"name": "
|
|
3665
|
-
"
|
|
3666
|
-
"
|
|
3592
|
+
"include": {
|
|
3593
|
+
"description": "Include extra fields: tags, teams (comma-separated)",
|
|
3594
|
+
"name": "include",
|
|
3595
|
+
"hasDynamicHelp": false,
|
|
3596
|
+
"multiple": false,
|
|
3597
|
+
"type": "option"
|
|
3667
3598
|
}
|
|
3668
3599
|
},
|
|
3669
3600
|
"hasDynamicHelp": false,
|
|
3670
3601
|
"hiddenAliases": [],
|
|
3671
|
-
"id": "
|
|
3602
|
+
"id": "face:get",
|
|
3672
3603
|
"pluginAlias": "faces-cli",
|
|
3673
3604
|
"pluginName": "faces-cli",
|
|
3674
3605
|
"pluginType": "core",
|
|
@@ -3678,20 +3609,14 @@
|
|
|
3678
3609
|
"relativePath": [
|
|
3679
3610
|
"dist",
|
|
3680
3611
|
"commands",
|
|
3681
|
-
"
|
|
3682
|
-
"
|
|
3612
|
+
"face",
|
|
3613
|
+
"get.js"
|
|
3683
3614
|
]
|
|
3684
3615
|
},
|
|
3685
|
-
"
|
|
3616
|
+
"face:list": {
|
|
3686
3617
|
"aliases": [],
|
|
3687
|
-
"args": {
|
|
3688
|
-
|
|
3689
|
-
"description": "Team ID",
|
|
3690
|
-
"name": "team_id",
|
|
3691
|
-
"required": true
|
|
3692
|
-
}
|
|
3693
|
-
},
|
|
3694
|
-
"description": "Edit a team",
|
|
3618
|
+
"args": {},
|
|
3619
|
+
"description": "List all owned faces",
|
|
3695
3620
|
"flags": {
|
|
3696
3621
|
"json": {
|
|
3697
3622
|
"description": "Format output as json.",
|
|
@@ -3724,30 +3649,23 @@
|
|
|
3724
3649
|
"multiple": false,
|
|
3725
3650
|
"type": "option"
|
|
3726
3651
|
},
|
|
3727
|
-
"
|
|
3728
|
-
"description": "
|
|
3729
|
-
"name": "
|
|
3730
|
-
"hasDynamicHelp": false,
|
|
3731
|
-
"multiple": false,
|
|
3732
|
-
"type": "option"
|
|
3733
|
-
},
|
|
3734
|
-
"description": {
|
|
3735
|
-
"description": "New description (max 1500 chars)",
|
|
3736
|
-
"name": "description",
|
|
3652
|
+
"tag": {
|
|
3653
|
+
"description": "Filter by tag (repeatable, AND logic)",
|
|
3654
|
+
"name": "tag",
|
|
3737
3655
|
"hasDynamicHelp": false,
|
|
3738
|
-
"multiple":
|
|
3656
|
+
"multiple": true,
|
|
3739
3657
|
"type": "option"
|
|
3740
3658
|
},
|
|
3741
|
-
"
|
|
3742
|
-
"description": "
|
|
3743
|
-
"name": "
|
|
3659
|
+
"team": {
|
|
3660
|
+
"description": "Filter by team ID (repeatable, OR logic)",
|
|
3661
|
+
"name": "team",
|
|
3744
3662
|
"hasDynamicHelp": false,
|
|
3745
|
-
"multiple":
|
|
3663
|
+
"multiple": true,
|
|
3746
3664
|
"type": "option"
|
|
3747
3665
|
},
|
|
3748
|
-
"
|
|
3749
|
-
"description": "
|
|
3750
|
-
"name": "
|
|
3666
|
+
"include": {
|
|
3667
|
+
"description": "Include extra fields: tags, teams (comma-separated)",
|
|
3668
|
+
"name": "include",
|
|
3751
3669
|
"hasDynamicHelp": false,
|
|
3752
3670
|
"multiple": false,
|
|
3753
3671
|
"type": "option"
|
|
@@ -3755,7 +3673,7 @@
|
|
|
3755
3673
|
},
|
|
3756
3674
|
"hasDynamicHelp": false,
|
|
3757
3675
|
"hiddenAliases": [],
|
|
3758
|
-
"id": "
|
|
3676
|
+
"id": "face:list",
|
|
3759
3677
|
"pluginAlias": "faces-cli",
|
|
3760
3678
|
"pluginName": "faces-cli",
|
|
3761
3679
|
"pluginType": "core",
|
|
@@ -3765,20 +3683,20 @@
|
|
|
3765
3683
|
"relativePath": [
|
|
3766
3684
|
"dist",
|
|
3767
3685
|
"commands",
|
|
3768
|
-
"
|
|
3769
|
-
"
|
|
3686
|
+
"face",
|
|
3687
|
+
"list.js"
|
|
3770
3688
|
]
|
|
3771
3689
|
},
|
|
3772
|
-
"
|
|
3690
|
+
"face:neighbors": {
|
|
3773
3691
|
"aliases": [],
|
|
3774
3692
|
"args": {
|
|
3775
|
-
"
|
|
3776
|
-
"description": "
|
|
3777
|
-
"name": "
|
|
3693
|
+
"face_id": {
|
|
3694
|
+
"description": "Face alias",
|
|
3695
|
+
"name": "face_id",
|
|
3778
3696
|
"required": true
|
|
3779
3697
|
}
|
|
3780
3698
|
},
|
|
3781
|
-
"description": "
|
|
3699
|
+
"description": "Find the most similar or dissimilar owned faces to a given face",
|
|
3782
3700
|
"flags": {
|
|
3783
3701
|
"json": {
|
|
3784
3702
|
"description": "Format output as json.",
|
|
@@ -3810,11 +3728,45 @@
|
|
|
3810
3728
|
"hasDynamicHelp": false,
|
|
3811
3729
|
"multiple": false,
|
|
3812
3730
|
"type": "option"
|
|
3731
|
+
},
|
|
3732
|
+
"k": {
|
|
3733
|
+
"description": "Number of results (1–20)",
|
|
3734
|
+
"name": "k",
|
|
3735
|
+
"default": 5,
|
|
3736
|
+
"hasDynamicHelp": false,
|
|
3737
|
+
"multiple": false,
|
|
3738
|
+
"type": "option"
|
|
3739
|
+
},
|
|
3740
|
+
"component": {
|
|
3741
|
+
"description": "Centroid component to rank on (beta, delta, epsilon are the principal components of a face; face is their composite)",
|
|
3742
|
+
"name": "component",
|
|
3743
|
+
"default": "face",
|
|
3744
|
+
"hasDynamicHelp": false,
|
|
3745
|
+
"multiple": false,
|
|
3746
|
+
"options": [
|
|
3747
|
+
"face",
|
|
3748
|
+
"beta",
|
|
3749
|
+
"delta",
|
|
3750
|
+
"epsilon"
|
|
3751
|
+
],
|
|
3752
|
+
"type": "option"
|
|
3753
|
+
},
|
|
3754
|
+
"direction": {
|
|
3755
|
+
"description": "nearest (most similar) or furthest (most dissimilar)",
|
|
3756
|
+
"name": "direction",
|
|
3757
|
+
"default": "nearest",
|
|
3758
|
+
"hasDynamicHelp": false,
|
|
3759
|
+
"multiple": false,
|
|
3760
|
+
"options": [
|
|
3761
|
+
"nearest",
|
|
3762
|
+
"furthest"
|
|
3763
|
+
],
|
|
3764
|
+
"type": "option"
|
|
3813
3765
|
}
|
|
3814
3766
|
},
|
|
3815
3767
|
"hasDynamicHelp": false,
|
|
3816
3768
|
"hiddenAliases": [],
|
|
3817
|
-
"id": "
|
|
3769
|
+
"id": "face:neighbors",
|
|
3818
3770
|
"pluginAlias": "faces-cli",
|
|
3819
3771
|
"pluginName": "faces-cli",
|
|
3820
3772
|
"pluginType": "core",
|
|
@@ -3824,14 +3776,14 @@
|
|
|
3824
3776
|
"relativePath": [
|
|
3825
3777
|
"dist",
|
|
3826
3778
|
"commands",
|
|
3827
|
-
"
|
|
3828
|
-
"
|
|
3779
|
+
"face",
|
|
3780
|
+
"neighbors.js"
|
|
3829
3781
|
]
|
|
3830
3782
|
},
|
|
3831
|
-
"
|
|
3783
|
+
"face:stats": {
|
|
3832
3784
|
"aliases": [],
|
|
3833
3785
|
"args": {},
|
|
3834
|
-
"description": "
|
|
3786
|
+
"description": "Compile and chat stats for all owned faces",
|
|
3835
3787
|
"flags": {
|
|
3836
3788
|
"json": {
|
|
3837
3789
|
"description": "Format output as json.",
|
|
@@ -3867,7 +3819,7 @@
|
|
|
3867
3819
|
},
|
|
3868
3820
|
"hasDynamicHelp": false,
|
|
3869
3821
|
"hiddenAliases": [],
|
|
3870
|
-
"id": "
|
|
3822
|
+
"id": "face:stats",
|
|
3871
3823
|
"pluginAlias": "faces-cli",
|
|
3872
3824
|
"pluginName": "faces-cli",
|
|
3873
3825
|
"pluginType": "core",
|
|
@@ -3877,20 +3829,20 @@
|
|
|
3877
3829
|
"relativePath": [
|
|
3878
3830
|
"dist",
|
|
3879
3831
|
"commands",
|
|
3880
|
-
"
|
|
3881
|
-
"
|
|
3832
|
+
"face",
|
|
3833
|
+
"stats.js"
|
|
3882
3834
|
]
|
|
3883
3835
|
},
|
|
3884
|
-
"
|
|
3836
|
+
"face:teams": {
|
|
3885
3837
|
"aliases": [],
|
|
3886
3838
|
"args": {
|
|
3887
|
-
"
|
|
3888
|
-
"description": "
|
|
3889
|
-
"name": "
|
|
3839
|
+
"alias": {
|
|
3840
|
+
"description": "Face alias",
|
|
3841
|
+
"name": "alias",
|
|
3890
3842
|
"required": true
|
|
3891
3843
|
}
|
|
3892
3844
|
},
|
|
3893
|
-
"description": "
|
|
3845
|
+
"description": "Set a face's team memberships (replaces all)",
|
|
3894
3846
|
"flags": {
|
|
3895
3847
|
"json": {
|
|
3896
3848
|
"description": "Format output as json.",
|
|
@@ -3922,11 +3874,19 @@
|
|
|
3922
3874
|
"hasDynamicHelp": false,
|
|
3923
3875
|
"multiple": false,
|
|
3924
3876
|
"type": "option"
|
|
3877
|
+
},
|
|
3878
|
+
"team": {
|
|
3879
|
+
"description": "Team ID (repeatable, replaces all memberships)",
|
|
3880
|
+
"name": "team",
|
|
3881
|
+
"required": true,
|
|
3882
|
+
"hasDynamicHelp": false,
|
|
3883
|
+
"multiple": true,
|
|
3884
|
+
"type": "option"
|
|
3925
3885
|
}
|
|
3926
3886
|
},
|
|
3927
3887
|
"hasDynamicHelp": false,
|
|
3928
3888
|
"hiddenAliases": [],
|
|
3929
|
-
"id": "
|
|
3889
|
+
"id": "face:teams",
|
|
3930
3890
|
"pluginAlias": "faces-cli",
|
|
3931
3891
|
"pluginName": "faces-cli",
|
|
3932
3892
|
"pluginType": "core",
|
|
@@ -3936,25 +3896,20 @@
|
|
|
3936
3896
|
"relativePath": [
|
|
3937
3897
|
"dist",
|
|
3938
3898
|
"commands",
|
|
3939
|
-
"
|
|
3940
|
-
"
|
|
3899
|
+
"face",
|
|
3900
|
+
"teams.js"
|
|
3941
3901
|
]
|
|
3942
3902
|
},
|
|
3943
|
-
"
|
|
3903
|
+
"face:upload": {
|
|
3944
3904
|
"aliases": [],
|
|
3945
3905
|
"args": {
|
|
3946
|
-
"
|
|
3947
|
-
"description": "
|
|
3948
|
-
"name": "
|
|
3949
|
-
"required": true
|
|
3950
|
-
},
|
|
3951
|
-
"alias": {
|
|
3952
|
-
"description": "Face alias to remove",
|
|
3953
|
-
"name": "alias",
|
|
3906
|
+
"face_id": {
|
|
3907
|
+
"description": "Face alias",
|
|
3908
|
+
"name": "face_id",
|
|
3954
3909
|
"required": true
|
|
3955
3910
|
}
|
|
3956
3911
|
},
|
|
3957
|
-
"description": "
|
|
3912
|
+
"description": "Upload a file (text/PDF/audio/video) to a face",
|
|
3958
3913
|
"flags": {
|
|
3959
3914
|
"json": {
|
|
3960
3915
|
"description": "Format output as json.",
|
|
@@ -3986,11 +3941,50 @@
|
|
|
3986
3941
|
"hasDynamicHelp": false,
|
|
3987
3942
|
"multiple": false,
|
|
3988
3943
|
"type": "option"
|
|
3944
|
+
},
|
|
3945
|
+
"file": {
|
|
3946
|
+
"description": "File to upload",
|
|
3947
|
+
"name": "file",
|
|
3948
|
+
"required": true,
|
|
3949
|
+
"hasDynamicHelp": false,
|
|
3950
|
+
"multiple": false,
|
|
3951
|
+
"type": "option"
|
|
3952
|
+
},
|
|
3953
|
+
"kind": {
|
|
3954
|
+
"description": "Upload kind: document or thread",
|
|
3955
|
+
"name": "kind",
|
|
3956
|
+
"default": "document",
|
|
3957
|
+
"hasDynamicHelp": false,
|
|
3958
|
+
"multiple": false,
|
|
3959
|
+
"options": [
|
|
3960
|
+
"document",
|
|
3961
|
+
"thread"
|
|
3962
|
+
],
|
|
3963
|
+
"type": "option"
|
|
3964
|
+
},
|
|
3965
|
+
"perspective": {
|
|
3966
|
+
"description": "Perspective (document only)",
|
|
3967
|
+
"name": "perspective",
|
|
3968
|
+
"default": "third-person",
|
|
3969
|
+
"hasDynamicHelp": false,
|
|
3970
|
+
"multiple": false,
|
|
3971
|
+
"options": [
|
|
3972
|
+
"first-person",
|
|
3973
|
+
"third-person"
|
|
3974
|
+
],
|
|
3975
|
+
"type": "option"
|
|
3976
|
+
},
|
|
3977
|
+
"face-speaker": {
|
|
3978
|
+
"description": "Speaker name to map to the face (thread only). If omitted, first speaker is used.",
|
|
3979
|
+
"name": "face-speaker",
|
|
3980
|
+
"hasDynamicHelp": false,
|
|
3981
|
+
"multiple": false,
|
|
3982
|
+
"type": "option"
|
|
3989
3983
|
}
|
|
3990
3984
|
},
|
|
3991
3985
|
"hasDynamicHelp": false,
|
|
3992
3986
|
"hiddenAliases": [],
|
|
3993
|
-
"id": "
|
|
3987
|
+
"id": "face:upload",
|
|
3994
3988
|
"pluginAlias": "faces-cli",
|
|
3995
3989
|
"pluginName": "faces-cli",
|
|
3996
3990
|
"pluginType": "core",
|
|
@@ -4000,8 +3994,8 @@
|
|
|
4000
3994
|
"relativePath": [
|
|
4001
3995
|
"dist",
|
|
4002
3996
|
"commands",
|
|
4003
|
-
"
|
|
4004
|
-
"
|
|
3997
|
+
"face",
|
|
3998
|
+
"upload.js"
|
|
4005
3999
|
]
|
|
4006
4000
|
},
|
|
4007
4001
|
"billing:subscription:activate": {
|
|
@@ -5469,16 +5463,16 @@
|
|
|
5469
5463
|
"sync.js"
|
|
5470
5464
|
]
|
|
5471
5465
|
},
|
|
5472
|
-
"
|
|
5466
|
+
"team:tag:add": {
|
|
5473
5467
|
"aliases": [],
|
|
5474
5468
|
"args": {
|
|
5475
|
-
"
|
|
5476
|
-
"description": "
|
|
5477
|
-
"name": "
|
|
5469
|
+
"team_id": {
|
|
5470
|
+
"description": "Team ID",
|
|
5471
|
+
"name": "team_id",
|
|
5478
5472
|
"required": true
|
|
5479
5473
|
}
|
|
5480
5474
|
},
|
|
5481
|
-
"description": "Add tags to a
|
|
5475
|
+
"description": "Add tags to a team (appends, idempotent)",
|
|
5482
5476
|
"flags": {
|
|
5483
5477
|
"json": {
|
|
5484
5478
|
"description": "Format output as json.",
|
|
@@ -5522,7 +5516,7 @@
|
|
|
5522
5516
|
},
|
|
5523
5517
|
"hasDynamicHelp": false,
|
|
5524
5518
|
"hiddenAliases": [],
|
|
5525
|
-
"id": "
|
|
5519
|
+
"id": "team:tag:add",
|
|
5526
5520
|
"pluginAlias": "faces-cli",
|
|
5527
5521
|
"pluginName": "faces-cli",
|
|
5528
5522
|
"pluginType": "core",
|
|
@@ -5532,15 +5526,21 @@
|
|
|
5532
5526
|
"relativePath": [
|
|
5533
5527
|
"dist",
|
|
5534
5528
|
"commands",
|
|
5535
|
-
"
|
|
5529
|
+
"team",
|
|
5536
5530
|
"tag",
|
|
5537
5531
|
"add.js"
|
|
5538
5532
|
]
|
|
5539
5533
|
},
|
|
5540
|
-
"
|
|
5534
|
+
"team:tag:list": {
|
|
5541
5535
|
"aliases": [],
|
|
5542
|
-
"args": {
|
|
5543
|
-
|
|
5536
|
+
"args": {
|
|
5537
|
+
"team_id": {
|
|
5538
|
+
"description": "Team ID",
|
|
5539
|
+
"name": "team_id",
|
|
5540
|
+
"required": true
|
|
5541
|
+
}
|
|
5542
|
+
},
|
|
5543
|
+
"description": "List tags on a team",
|
|
5544
5544
|
"flags": {
|
|
5545
5545
|
"json": {
|
|
5546
5546
|
"description": "Format output as json.",
|
|
@@ -5576,7 +5576,7 @@
|
|
|
5576
5576
|
},
|
|
5577
5577
|
"hasDynamicHelp": false,
|
|
5578
5578
|
"hiddenAliases": [],
|
|
5579
|
-
"id": "
|
|
5579
|
+
"id": "team:tag:list",
|
|
5580
5580
|
"pluginAlias": "faces-cli",
|
|
5581
5581
|
"pluginName": "faces-cli",
|
|
5582
5582
|
"pluginType": "core",
|
|
@@ -5586,21 +5586,26 @@
|
|
|
5586
5586
|
"relativePath": [
|
|
5587
5587
|
"dist",
|
|
5588
5588
|
"commands",
|
|
5589
|
-
"
|
|
5589
|
+
"team",
|
|
5590
5590
|
"tag",
|
|
5591
|
-
"
|
|
5591
|
+
"list.js"
|
|
5592
5592
|
]
|
|
5593
5593
|
},
|
|
5594
|
-
"
|
|
5594
|
+
"team:tag:remove": {
|
|
5595
5595
|
"aliases": [],
|
|
5596
5596
|
"args": {
|
|
5597
|
-
"
|
|
5598
|
-
"description": "
|
|
5599
|
-
"name": "
|
|
5597
|
+
"team_id": {
|
|
5598
|
+
"description": "Team ID",
|
|
5599
|
+
"name": "team_id",
|
|
5600
|
+
"required": true
|
|
5601
|
+
},
|
|
5602
|
+
"tag": {
|
|
5603
|
+
"description": "Tag to remove",
|
|
5604
|
+
"name": "tag",
|
|
5600
5605
|
"required": true
|
|
5601
5606
|
}
|
|
5602
5607
|
},
|
|
5603
|
-
"description": "
|
|
5608
|
+
"description": "Remove a tag from a team",
|
|
5604
5609
|
"flags": {
|
|
5605
5610
|
"json": {
|
|
5606
5611
|
"description": "Format output as json.",
|
|
@@ -5636,7 +5641,7 @@
|
|
|
5636
5641
|
},
|
|
5637
5642
|
"hasDynamicHelp": false,
|
|
5638
5643
|
"hiddenAliases": [],
|
|
5639
|
-
"id": "
|
|
5644
|
+
"id": "team:tag:remove",
|
|
5640
5645
|
"pluginAlias": "faces-cli",
|
|
5641
5646
|
"pluginName": "faces-cli",
|
|
5642
5647
|
"pluginType": "core",
|
|
@@ -5646,26 +5651,21 @@
|
|
|
5646
5651
|
"relativePath": [
|
|
5647
5652
|
"dist",
|
|
5648
5653
|
"commands",
|
|
5649
|
-
"
|
|
5654
|
+
"team",
|
|
5650
5655
|
"tag",
|
|
5651
|
-
"
|
|
5656
|
+
"remove.js"
|
|
5652
5657
|
]
|
|
5653
5658
|
},
|
|
5654
|
-
"
|
|
5659
|
+
"team:tag:set": {
|
|
5655
5660
|
"aliases": [],
|
|
5656
5661
|
"args": {
|
|
5657
|
-
"
|
|
5658
|
-
"description": "
|
|
5659
|
-
"name": "
|
|
5660
|
-
"required": true
|
|
5661
|
-
},
|
|
5662
|
-
"tag": {
|
|
5663
|
-
"description": "Tag to remove",
|
|
5664
|
-
"name": "tag",
|
|
5662
|
+
"team_id": {
|
|
5663
|
+
"description": "Team ID",
|
|
5664
|
+
"name": "team_id",
|
|
5665
5665
|
"required": true
|
|
5666
5666
|
}
|
|
5667
5667
|
},
|
|
5668
|
-
"description": "
|
|
5668
|
+
"description": "Replace all tags on a team",
|
|
5669
5669
|
"flags": {
|
|
5670
5670
|
"json": {
|
|
5671
5671
|
"description": "Format output as json.",
|
|
@@ -5697,11 +5697,19 @@
|
|
|
5697
5697
|
"hasDynamicHelp": false,
|
|
5698
5698
|
"multiple": false,
|
|
5699
5699
|
"type": "option"
|
|
5700
|
+
},
|
|
5701
|
+
"tag": {
|
|
5702
|
+
"description": "Tag to set (repeatable, replaces all)",
|
|
5703
|
+
"name": "tag",
|
|
5704
|
+
"required": true,
|
|
5705
|
+
"hasDynamicHelp": false,
|
|
5706
|
+
"multiple": true,
|
|
5707
|
+
"type": "option"
|
|
5700
5708
|
}
|
|
5701
5709
|
},
|
|
5702
5710
|
"hasDynamicHelp": false,
|
|
5703
5711
|
"hiddenAliases": [],
|
|
5704
|
-
"id": "
|
|
5712
|
+
"id": "team:tag:set",
|
|
5705
5713
|
"pluginAlias": "faces-cli",
|
|
5706
5714
|
"pluginName": "faces-cli",
|
|
5707
5715
|
"pluginType": "core",
|
|
@@ -5711,12 +5719,12 @@
|
|
|
5711
5719
|
"relativePath": [
|
|
5712
5720
|
"dist",
|
|
5713
5721
|
"commands",
|
|
5714
|
-
"
|
|
5722
|
+
"team",
|
|
5715
5723
|
"tag",
|
|
5716
|
-
"
|
|
5724
|
+
"set.js"
|
|
5717
5725
|
]
|
|
5718
5726
|
},
|
|
5719
|
-
"face:tag:
|
|
5727
|
+
"face:tag:add": {
|
|
5720
5728
|
"aliases": [],
|
|
5721
5729
|
"args": {
|
|
5722
5730
|
"alias": {
|
|
@@ -5725,7 +5733,7 @@
|
|
|
5725
5733
|
"required": true
|
|
5726
5734
|
}
|
|
5727
5735
|
},
|
|
5728
|
-
"description": "
|
|
5736
|
+
"description": "Add tags to a face (appends, idempotent)",
|
|
5729
5737
|
"flags": {
|
|
5730
5738
|
"json": {
|
|
5731
5739
|
"description": "Format output as json.",
|
|
@@ -5759,7 +5767,7 @@
|
|
|
5759
5767
|
"type": "option"
|
|
5760
5768
|
},
|
|
5761
5769
|
"tag": {
|
|
5762
|
-
"description": "Tag to
|
|
5770
|
+
"description": "Tag to add (repeatable)",
|
|
5763
5771
|
"name": "tag",
|
|
5764
5772
|
"required": true,
|
|
5765
5773
|
"hasDynamicHelp": false,
|
|
@@ -5769,7 +5777,7 @@
|
|
|
5769
5777
|
},
|
|
5770
5778
|
"hasDynamicHelp": false,
|
|
5771
5779
|
"hiddenAliases": [],
|
|
5772
|
-
"id": "face:tag:
|
|
5780
|
+
"id": "face:tag:add",
|
|
5773
5781
|
"pluginAlias": "faces-cli",
|
|
5774
5782
|
"pluginName": "faces-cli",
|
|
5775
5783
|
"pluginType": "core",
|
|
@@ -5781,19 +5789,13 @@
|
|
|
5781
5789
|
"commands",
|
|
5782
5790
|
"face",
|
|
5783
5791
|
"tag",
|
|
5784
|
-
"
|
|
5792
|
+
"add.js"
|
|
5785
5793
|
]
|
|
5786
5794
|
},
|
|
5787
|
-
"
|
|
5795
|
+
"face:tag:all": {
|
|
5788
5796
|
"aliases": [],
|
|
5789
|
-
"args": {
|
|
5790
|
-
|
|
5791
|
-
"description": "Team ID",
|
|
5792
|
-
"name": "team_id",
|
|
5793
|
-
"required": true
|
|
5794
|
-
}
|
|
5795
|
-
},
|
|
5796
|
-
"description": "Add tags to a team (appends, idempotent)",
|
|
5797
|
+
"args": {},
|
|
5798
|
+
"description": "List all tags across all your faces",
|
|
5797
5799
|
"flags": {
|
|
5798
5800
|
"json": {
|
|
5799
5801
|
"description": "Format output as json.",
|
|
@@ -5825,19 +5827,11 @@
|
|
|
5825
5827
|
"hasDynamicHelp": false,
|
|
5826
5828
|
"multiple": false,
|
|
5827
5829
|
"type": "option"
|
|
5828
|
-
},
|
|
5829
|
-
"tag": {
|
|
5830
|
-
"description": "Tag to add (repeatable)",
|
|
5831
|
-
"name": "tag",
|
|
5832
|
-
"required": true,
|
|
5833
|
-
"hasDynamicHelp": false,
|
|
5834
|
-
"multiple": true,
|
|
5835
|
-
"type": "option"
|
|
5836
5830
|
}
|
|
5837
5831
|
},
|
|
5838
5832
|
"hasDynamicHelp": false,
|
|
5839
5833
|
"hiddenAliases": [],
|
|
5840
|
-
"id": "
|
|
5834
|
+
"id": "face:tag:all",
|
|
5841
5835
|
"pluginAlias": "faces-cli",
|
|
5842
5836
|
"pluginName": "faces-cli",
|
|
5843
5837
|
"pluginType": "core",
|
|
@@ -5847,21 +5841,21 @@
|
|
|
5847
5841
|
"relativePath": [
|
|
5848
5842
|
"dist",
|
|
5849
5843
|
"commands",
|
|
5850
|
-
"
|
|
5844
|
+
"face",
|
|
5851
5845
|
"tag",
|
|
5852
|
-
"
|
|
5846
|
+
"all.js"
|
|
5853
5847
|
]
|
|
5854
5848
|
},
|
|
5855
|
-
"
|
|
5849
|
+
"face:tag:list": {
|
|
5856
5850
|
"aliases": [],
|
|
5857
5851
|
"args": {
|
|
5858
|
-
"
|
|
5859
|
-
"description": "
|
|
5860
|
-
"name": "
|
|
5852
|
+
"alias": {
|
|
5853
|
+
"description": "Face alias",
|
|
5854
|
+
"name": "alias",
|
|
5861
5855
|
"required": true
|
|
5862
5856
|
}
|
|
5863
5857
|
},
|
|
5864
|
-
"description": "List tags on a
|
|
5858
|
+
"description": "List tags on a face",
|
|
5865
5859
|
"flags": {
|
|
5866
5860
|
"json": {
|
|
5867
5861
|
"description": "Format output as json.",
|
|
@@ -5897,7 +5891,7 @@
|
|
|
5897
5891
|
},
|
|
5898
5892
|
"hasDynamicHelp": false,
|
|
5899
5893
|
"hiddenAliases": [],
|
|
5900
|
-
"id": "
|
|
5894
|
+
"id": "face:tag:list",
|
|
5901
5895
|
"pluginAlias": "faces-cli",
|
|
5902
5896
|
"pluginName": "faces-cli",
|
|
5903
5897
|
"pluginType": "core",
|
|
@@ -5907,17 +5901,17 @@
|
|
|
5907
5901
|
"relativePath": [
|
|
5908
5902
|
"dist",
|
|
5909
5903
|
"commands",
|
|
5910
|
-
"
|
|
5904
|
+
"face",
|
|
5911
5905
|
"tag",
|
|
5912
5906
|
"list.js"
|
|
5913
5907
|
]
|
|
5914
5908
|
},
|
|
5915
|
-
"
|
|
5909
|
+
"face:tag:remove": {
|
|
5916
5910
|
"aliases": [],
|
|
5917
5911
|
"args": {
|
|
5918
|
-
"
|
|
5919
|
-
"description": "
|
|
5920
|
-
"name": "
|
|
5912
|
+
"alias": {
|
|
5913
|
+
"description": "Face alias",
|
|
5914
|
+
"name": "alias",
|
|
5921
5915
|
"required": true
|
|
5922
5916
|
},
|
|
5923
5917
|
"tag": {
|
|
@@ -5926,7 +5920,7 @@
|
|
|
5926
5920
|
"required": true
|
|
5927
5921
|
}
|
|
5928
5922
|
},
|
|
5929
|
-
"description": "Remove a tag from a
|
|
5923
|
+
"description": "Remove a tag from a face",
|
|
5930
5924
|
"flags": {
|
|
5931
5925
|
"json": {
|
|
5932
5926
|
"description": "Format output as json.",
|
|
@@ -5962,7 +5956,7 @@
|
|
|
5962
5956
|
},
|
|
5963
5957
|
"hasDynamicHelp": false,
|
|
5964
5958
|
"hiddenAliases": [],
|
|
5965
|
-
"id": "
|
|
5959
|
+
"id": "face:tag:remove",
|
|
5966
5960
|
"pluginAlias": "faces-cli",
|
|
5967
5961
|
"pluginName": "faces-cli",
|
|
5968
5962
|
"pluginType": "core",
|
|
@@ -5972,21 +5966,21 @@
|
|
|
5972
5966
|
"relativePath": [
|
|
5973
5967
|
"dist",
|
|
5974
5968
|
"commands",
|
|
5975
|
-
"
|
|
5969
|
+
"face",
|
|
5976
5970
|
"tag",
|
|
5977
5971
|
"remove.js"
|
|
5978
5972
|
]
|
|
5979
5973
|
},
|
|
5980
|
-
"
|
|
5974
|
+
"face:tag:set": {
|
|
5981
5975
|
"aliases": [],
|
|
5982
5976
|
"args": {
|
|
5983
|
-
"
|
|
5984
|
-
"description": "
|
|
5985
|
-
"name": "
|
|
5977
|
+
"alias": {
|
|
5978
|
+
"description": "Face alias",
|
|
5979
|
+
"name": "alias",
|
|
5986
5980
|
"required": true
|
|
5987
5981
|
}
|
|
5988
5982
|
},
|
|
5989
|
-
"description": "Replace all tags on a
|
|
5983
|
+
"description": "Replace all tags on a face",
|
|
5990
5984
|
"flags": {
|
|
5991
5985
|
"json": {
|
|
5992
5986
|
"description": "Format output as json.",
|
|
@@ -6030,7 +6024,7 @@
|
|
|
6030
6024
|
},
|
|
6031
6025
|
"hasDynamicHelp": false,
|
|
6032
6026
|
"hiddenAliases": [],
|
|
6033
|
-
"id": "
|
|
6027
|
+
"id": "face:tag:set",
|
|
6034
6028
|
"pluginAlias": "faces-cli",
|
|
6035
6029
|
"pluginName": "faces-cli",
|
|
6036
6030
|
"pluginType": "core",
|
|
@@ -6040,11 +6034,11 @@
|
|
|
6040
6034
|
"relativePath": [
|
|
6041
6035
|
"dist",
|
|
6042
6036
|
"commands",
|
|
6043
|
-
"
|
|
6037
|
+
"face",
|
|
6044
6038
|
"tag",
|
|
6045
6039
|
"set.js"
|
|
6046
6040
|
]
|
|
6047
6041
|
}
|
|
6048
6042
|
},
|
|
6049
|
-
"version": "1.6.
|
|
6043
|
+
"version": "1.6.18"
|
|
6050
6044
|
}
|