faces-cli 1.6.17 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/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/dist/commands/catalog/doctor.js +17 -2
- package/dist/commands/chat/chat.d.ts +3 -1
- package/dist/commands/chat/chat.js +60 -118
- package/dist/commands/chat/thread.d.ts +4 -3
- package/dist/commands/chat/thread.js +62 -37
- package/dist/routing.d.ts +19 -0
- package/dist/routing.js +116 -0
- package/oclif.manifest.json +988 -994
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -120,10 +120,10 @@
|
|
|
120
120
|
"state.js"
|
|
121
121
|
]
|
|
122
122
|
},
|
|
123
|
-
"
|
|
123
|
+
"catalog:backup": {
|
|
124
124
|
"aliases": [],
|
|
125
125
|
"args": {},
|
|
126
|
-
"description": "
|
|
126
|
+
"description": "Snapshot all faces, teams, and source material for migration",
|
|
127
127
|
"flags": {
|
|
128
128
|
"json": {
|
|
129
129
|
"description": "Format output as json.",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
},
|
|
160
160
|
"hasDynamicHelp": false,
|
|
161
161
|
"hiddenAliases": [],
|
|
162
|
-
"id": "
|
|
162
|
+
"id": "catalog:backup",
|
|
163
163
|
"pluginAlias": "faces-cli",
|
|
164
164
|
"pluginName": "faces-cli",
|
|
165
165
|
"pluginType": "core",
|
|
@@ -169,14 +169,14 @@
|
|
|
169
169
|
"relativePath": [
|
|
170
170
|
"dist",
|
|
171
171
|
"commands",
|
|
172
|
-
"
|
|
173
|
-
"
|
|
172
|
+
"catalog",
|
|
173
|
+
"backup.js"
|
|
174
174
|
]
|
|
175
175
|
},
|
|
176
|
-
"
|
|
176
|
+
"catalog:doctor": {
|
|
177
177
|
"aliases": [],
|
|
178
178
|
"args": {},
|
|
179
|
-
"description": "
|
|
179
|
+
"description": "Diagnose and repair the local face and team catalog",
|
|
180
180
|
"flags": {
|
|
181
181
|
"json": {
|
|
182
182
|
"description": "Format output as json.",
|
|
@@ -208,71 +208,23 @@
|
|
|
208
208
|
"hasDynamicHelp": false,
|
|
209
209
|
"multiple": false,
|
|
210
210
|
"type": "option"
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
"id": "billing:card-setup",
|
|
216
|
-
"pluginAlias": "faces-cli",
|
|
217
|
-
"pluginName": "faces-cli",
|
|
218
|
-
"pluginType": "core",
|
|
219
|
-
"strict": true,
|
|
220
|
-
"enableJsonFlag": true,
|
|
221
|
-
"isESM": true,
|
|
222
|
-
"relativePath": [
|
|
223
|
-
"dist",
|
|
224
|
-
"commands",
|
|
225
|
-
"billing",
|
|
226
|
-
"card-setup.js"
|
|
227
|
-
]
|
|
228
|
-
},
|
|
229
|
-
"billing:llm-costs": {
|
|
230
|
-
"aliases": [],
|
|
231
|
-
"args": {},
|
|
232
|
-
"description": "List available LLMs and their per-token costs",
|
|
233
|
-
"flags": {
|
|
234
|
-
"json": {
|
|
235
|
-
"description": "Format output as json.",
|
|
236
|
-
"helpGroup": "GLOBAL",
|
|
237
|
-
"name": "json",
|
|
211
|
+
},
|
|
212
|
+
"fix": {
|
|
213
|
+
"description": "Rebuild missing or stale catalog entries from API",
|
|
214
|
+
"name": "fix",
|
|
238
215
|
"allowNo": false,
|
|
239
216
|
"type": "boolean"
|
|
240
217
|
},
|
|
241
|
-
"
|
|
242
|
-
"description": "
|
|
243
|
-
"
|
|
244
|
-
"
|
|
245
|
-
"
|
|
246
|
-
"multiple": false,
|
|
247
|
-
"type": "option"
|
|
248
|
-
},
|
|
249
|
-
"token": {
|
|
250
|
-
"description": "JWT bearer token",
|
|
251
|
-
"env": "FACES_TOKEN",
|
|
252
|
-
"name": "token",
|
|
253
|
-
"hasDynamicHelp": false,
|
|
254
|
-
"multiple": false,
|
|
255
|
-
"type": "option"
|
|
256
|
-
},
|
|
257
|
-
"api-key": {
|
|
258
|
-
"description": "API key",
|
|
259
|
-
"env": "FACES_API_KEY",
|
|
260
|
-
"name": "api-key",
|
|
261
|
-
"hasDynamicHelp": false,
|
|
262
|
-
"multiple": false,
|
|
263
|
-
"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"
|
|
218
|
+
"generate": {
|
|
219
|
+
"description": "Fix + generate missing descriptions via LLM",
|
|
220
|
+
"name": "generate",
|
|
221
|
+
"allowNo": false,
|
|
222
|
+
"type": "boolean"
|
|
271
223
|
}
|
|
272
224
|
},
|
|
273
225
|
"hasDynamicHelp": false,
|
|
274
226
|
"hiddenAliases": [],
|
|
275
|
-
"id": "
|
|
227
|
+
"id": "catalog:doctor",
|
|
276
228
|
"pluginAlias": "faces-cli",
|
|
277
229
|
"pluginName": "faces-cli",
|
|
278
230
|
"pluginType": "core",
|
|
@@ -282,14 +234,14 @@
|
|
|
282
234
|
"relativePath": [
|
|
283
235
|
"dist",
|
|
284
236
|
"commands",
|
|
285
|
-
"
|
|
286
|
-
"
|
|
237
|
+
"catalog",
|
|
238
|
+
"doctor.js"
|
|
287
239
|
]
|
|
288
240
|
},
|
|
289
|
-
"
|
|
241
|
+
"catalog:list": {
|
|
290
242
|
"aliases": [],
|
|
291
243
|
"args": {},
|
|
292
|
-
"description": "
|
|
244
|
+
"description": "List all faces in the local catalog",
|
|
293
245
|
"flags": {
|
|
294
246
|
"json": {
|
|
295
247
|
"description": "Format output as json.",
|
|
@@ -325,7 +277,7 @@
|
|
|
325
277
|
},
|
|
326
278
|
"hasDynamicHelp": false,
|
|
327
279
|
"hiddenAliases": [],
|
|
328
|
-
"id": "
|
|
280
|
+
"id": "catalog:list",
|
|
329
281
|
"pluginAlias": "faces-cli",
|
|
330
282
|
"pluginName": "faces-cli",
|
|
331
283
|
"pluginType": "core",
|
|
@@ -335,14 +287,14 @@
|
|
|
335
287
|
"relativePath": [
|
|
336
288
|
"dist",
|
|
337
289
|
"commands",
|
|
338
|
-
"
|
|
339
|
-
"
|
|
290
|
+
"catalog",
|
|
291
|
+
"list.js"
|
|
340
292
|
]
|
|
341
293
|
},
|
|
342
|
-
"
|
|
294
|
+
"catalog:manyfaced": {
|
|
343
295
|
"aliases": [],
|
|
344
296
|
"args": {},
|
|
345
|
-
"description": "
|
|
297
|
+
"description": "Browse and install community manyfaced skills from github.com/facessh/manyfaced",
|
|
346
298
|
"flags": {
|
|
347
299
|
"json": {
|
|
348
300
|
"description": "Format output as json.",
|
|
@@ -374,79 +326,38 @@
|
|
|
374
326
|
"hasDynamicHelp": false,
|
|
375
327
|
"multiple": false,
|
|
376
328
|
"type": "option"
|
|
377
|
-
}
|
|
378
|
-
},
|
|
379
|
-
"hasDynamicHelp": false,
|
|
380
|
-
"hiddenAliases": [],
|
|
381
|
-
"id": "billing:subscription",
|
|
382
|
-
"pluginAlias": "faces-cli",
|
|
383
|
-
"pluginName": "faces-cli",
|
|
384
|
-
"pluginType": "core",
|
|
385
|
-
"strict": true,
|
|
386
|
-
"enableJsonFlag": true,
|
|
387
|
-
"isESM": true,
|
|
388
|
-
"relativePath": [
|
|
389
|
-
"dist",
|
|
390
|
-
"commands",
|
|
391
|
-
"billing",
|
|
392
|
-
"subscription.js"
|
|
393
|
-
]
|
|
394
|
-
},
|
|
395
|
-
"billing:topup": {
|
|
396
|
-
"aliases": [],
|
|
397
|
-
"args": {},
|
|
398
|
-
"description": "Top up credit balance using saved payment method",
|
|
399
|
-
"flags": {
|
|
400
|
-
"json": {
|
|
401
|
-
"description": "Format output as json.",
|
|
402
|
-
"helpGroup": "GLOBAL",
|
|
403
|
-
"name": "json",
|
|
404
|
-
"allowNo": false,
|
|
405
|
-
"type": "boolean"
|
|
406
|
-
},
|
|
407
|
-
"base-url": {
|
|
408
|
-
"description": "API base URL",
|
|
409
|
-
"env": "FACES_BASE_URL",
|
|
410
|
-
"name": "base-url",
|
|
411
|
-
"hasDynamicHelp": false,
|
|
412
|
-
"multiple": false,
|
|
413
|
-
"type": "option"
|
|
414
329
|
},
|
|
415
|
-
"
|
|
416
|
-
"description": "
|
|
417
|
-
"
|
|
418
|
-
"name": "token",
|
|
330
|
+
"skill": {
|
|
331
|
+
"description": "Show details for a specific skill",
|
|
332
|
+
"name": "skill",
|
|
419
333
|
"hasDynamicHelp": false,
|
|
420
334
|
"multiple": false,
|
|
421
335
|
"type": "option"
|
|
422
336
|
},
|
|
423
|
-
"
|
|
424
|
-
"description": "
|
|
425
|
-
"
|
|
426
|
-
"name": "api-key",
|
|
337
|
+
"install": {
|
|
338
|
+
"description": "Install a skill by name",
|
|
339
|
+
"name": "install",
|
|
427
340
|
"hasDynamicHelp": false,
|
|
428
341
|
"multiple": false,
|
|
429
342
|
"type": "option"
|
|
430
343
|
},
|
|
431
|
-
"
|
|
432
|
-
"description": "
|
|
433
|
-
"name": "
|
|
434
|
-
"required": true,
|
|
344
|
+
"skills-dir": {
|
|
345
|
+
"description": "Directory to install skills into (required for --install)",
|
|
346
|
+
"name": "skills-dir",
|
|
435
347
|
"hasDynamicHelp": false,
|
|
436
348
|
"multiple": false,
|
|
437
349
|
"type": "option"
|
|
438
350
|
},
|
|
439
|
-
"
|
|
440
|
-
"description": "
|
|
441
|
-
"name": "
|
|
442
|
-
"
|
|
443
|
-
"
|
|
444
|
-
"type": "option"
|
|
351
|
+
"refresh": {
|
|
352
|
+
"description": "Force refresh the skill index (ignore cache)",
|
|
353
|
+
"name": "refresh",
|
|
354
|
+
"allowNo": false,
|
|
355
|
+
"type": "boolean"
|
|
445
356
|
}
|
|
446
357
|
},
|
|
447
358
|
"hasDynamicHelp": false,
|
|
448
359
|
"hiddenAliases": [],
|
|
449
|
-
"id": "
|
|
360
|
+
"id": "catalog:manyfaced",
|
|
450
361
|
"pluginAlias": "faces-cli",
|
|
451
362
|
"pluginName": "faces-cli",
|
|
452
363
|
"pluginType": "core",
|
|
@@ -456,14 +367,19 @@
|
|
|
456
367
|
"relativePath": [
|
|
457
368
|
"dist",
|
|
458
369
|
"commands",
|
|
459
|
-
"
|
|
460
|
-
"
|
|
370
|
+
"catalog",
|
|
371
|
+
"manyfaced.js"
|
|
461
372
|
]
|
|
462
373
|
},
|
|
463
|
-
"
|
|
374
|
+
"catalog:restore": {
|
|
464
375
|
"aliases": [],
|
|
465
|
-
"args": {
|
|
466
|
-
|
|
376
|
+
"args": {
|
|
377
|
+
"file": {
|
|
378
|
+
"description": "Backup file path (default: most recent in ~/.faces/backups/)",
|
|
379
|
+
"name": "file"
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
"description": "Restore faces, teams, and source material from a backup snapshot",
|
|
467
383
|
"flags": {
|
|
468
384
|
"json": {
|
|
469
385
|
"description": "Format output as json.",
|
|
@@ -496,37 +412,16 @@
|
|
|
496
412
|
"multiple": false,
|
|
497
413
|
"type": "option"
|
|
498
414
|
},
|
|
499
|
-
"
|
|
500
|
-
"description": "
|
|
501
|
-
"name": "
|
|
502
|
-
"
|
|
503
|
-
"
|
|
504
|
-
"options": [
|
|
505
|
-
"api_key",
|
|
506
|
-
"model",
|
|
507
|
-
"llm",
|
|
508
|
-
"date"
|
|
509
|
-
],
|
|
510
|
-
"type": "option"
|
|
511
|
-
},
|
|
512
|
-
"from": {
|
|
513
|
-
"description": "Start date (YYYY-MM-DD)",
|
|
514
|
-
"name": "from",
|
|
515
|
-
"hasDynamicHelp": false,
|
|
516
|
-
"multiple": false,
|
|
517
|
-
"type": "option"
|
|
518
|
-
},
|
|
519
|
-
"to": {
|
|
520
|
-
"description": "End date (YYYY-MM-DD)",
|
|
521
|
-
"name": "to",
|
|
522
|
-
"hasDynamicHelp": false,
|
|
523
|
-
"multiple": false,
|
|
524
|
-
"type": "option"
|
|
415
|
+
"compile": {
|
|
416
|
+
"description": "Run compile:all after restoring",
|
|
417
|
+
"name": "compile",
|
|
418
|
+
"allowNo": false,
|
|
419
|
+
"type": "boolean"
|
|
525
420
|
}
|
|
526
421
|
},
|
|
527
422
|
"hasDynamicHelp": false,
|
|
528
423
|
"hiddenAliases": [],
|
|
529
|
-
"id": "
|
|
424
|
+
"id": "catalog:restore",
|
|
530
425
|
"pluginAlias": "faces-cli",
|
|
531
426
|
"pluginName": "faces-cli",
|
|
532
427
|
"pluginType": "core",
|
|
@@ -536,8 +431,8 @@
|
|
|
536
431
|
"relativePath": [
|
|
537
432
|
"dist",
|
|
538
433
|
"commands",
|
|
539
|
-
"
|
|
540
|
-
"
|
|
434
|
+
"catalog",
|
|
435
|
+
"restore.js"
|
|
541
436
|
]
|
|
542
437
|
},
|
|
543
438
|
"auth:connect": {
|
|
@@ -552,10 +447,10 @@
|
|
|
552
447
|
"required": true
|
|
553
448
|
}
|
|
554
449
|
},
|
|
555
|
-
"description": "Connect
|
|
450
|
+
"description": "Connect your ChatGPT account to Faces via device-code authorization (Subscription Connect plan)",
|
|
556
451
|
"examples": [
|
|
557
452
|
"<%= config.bin %> auth connect openai",
|
|
558
|
-
"<%= config.bin %> auth connect openai --
|
|
453
|
+
"<%= config.bin %> auth connect openai --json"
|
|
559
454
|
],
|
|
560
455
|
"flags": {
|
|
561
456
|
"json": {
|
|
@@ -588,12 +483,6 @@
|
|
|
588
483
|
"hasDynamicHelp": false,
|
|
589
484
|
"multiple": false,
|
|
590
485
|
"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
486
|
}
|
|
598
487
|
},
|
|
599
488
|
"hasDynamicHelp": false,
|
|
@@ -1058,10 +947,10 @@
|
|
|
1058
947
|
"whoami.js"
|
|
1059
948
|
]
|
|
1060
949
|
},
|
|
1061
|
-
"
|
|
950
|
+
"billing:balance": {
|
|
1062
951
|
"aliases": [],
|
|
1063
952
|
"args": {},
|
|
1064
|
-
"description": "
|
|
953
|
+
"description": "Show credit balance and payment method status",
|
|
1065
954
|
"flags": {
|
|
1066
955
|
"json": {
|
|
1067
956
|
"description": "Format output as json.",
|
|
@@ -1097,7 +986,7 @@
|
|
|
1097
986
|
},
|
|
1098
987
|
"hasDynamicHelp": false,
|
|
1099
988
|
"hiddenAliases": [],
|
|
1100
|
-
"id": "
|
|
989
|
+
"id": "billing:balance",
|
|
1101
990
|
"pluginAlias": "faces-cli",
|
|
1102
991
|
"pluginName": "faces-cli",
|
|
1103
992
|
"pluginType": "core",
|
|
@@ -1107,14 +996,14 @@
|
|
|
1107
996
|
"relativePath": [
|
|
1108
997
|
"dist",
|
|
1109
998
|
"commands",
|
|
1110
|
-
"
|
|
1111
|
-
"
|
|
999
|
+
"billing",
|
|
1000
|
+
"balance.js"
|
|
1112
1001
|
]
|
|
1113
1002
|
},
|
|
1114
|
-
"
|
|
1003
|
+
"billing:card-setup": {
|
|
1115
1004
|
"aliases": [],
|
|
1116
1005
|
"args": {},
|
|
1117
|
-
"description": "
|
|
1006
|
+
"description": "Get a Stripe card setup URL to save a payment method",
|
|
1118
1007
|
"flags": {
|
|
1119
1008
|
"json": {
|
|
1120
1009
|
"description": "Format output as json.",
|
|
@@ -1146,23 +1035,11 @@
|
|
|
1146
1035
|
"hasDynamicHelp": false,
|
|
1147
1036
|
"multiple": false,
|
|
1148
1037
|
"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
1038
|
}
|
|
1162
1039
|
},
|
|
1163
1040
|
"hasDynamicHelp": false,
|
|
1164
1041
|
"hiddenAliases": [],
|
|
1165
|
-
"id": "
|
|
1042
|
+
"id": "billing:card-setup",
|
|
1166
1043
|
"pluginAlias": "faces-cli",
|
|
1167
1044
|
"pluginName": "faces-cli",
|
|
1168
1045
|
"pluginType": "core",
|
|
@@ -1172,14 +1049,14 @@
|
|
|
1172
1049
|
"relativePath": [
|
|
1173
1050
|
"dist",
|
|
1174
1051
|
"commands",
|
|
1175
|
-
"
|
|
1176
|
-
"
|
|
1052
|
+
"billing",
|
|
1053
|
+
"card-setup.js"
|
|
1177
1054
|
]
|
|
1178
1055
|
},
|
|
1179
|
-
"
|
|
1056
|
+
"billing:llm-costs": {
|
|
1180
1057
|
"aliases": [],
|
|
1181
1058
|
"args": {},
|
|
1182
|
-
"description": "List
|
|
1059
|
+
"description": "List available LLMs and their per-token costs",
|
|
1183
1060
|
"flags": {
|
|
1184
1061
|
"json": {
|
|
1185
1062
|
"description": "Format output as json.",
|
|
@@ -1211,11 +1088,18 @@
|
|
|
1211
1088
|
"hasDynamicHelp": false,
|
|
1212
1089
|
"multiple": false,
|
|
1213
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"
|
|
1214
1098
|
}
|
|
1215
1099
|
},
|
|
1216
1100
|
"hasDynamicHelp": false,
|
|
1217
1101
|
"hiddenAliases": [],
|
|
1218
|
-
"id": "
|
|
1102
|
+
"id": "billing:llm-costs",
|
|
1219
1103
|
"pluginAlias": "faces-cli",
|
|
1220
1104
|
"pluginName": "faces-cli",
|
|
1221
1105
|
"pluginType": "core",
|
|
@@ -1225,14 +1109,14 @@
|
|
|
1225
1109
|
"relativePath": [
|
|
1226
1110
|
"dist",
|
|
1227
1111
|
"commands",
|
|
1228
|
-
"
|
|
1229
|
-
"
|
|
1112
|
+
"billing",
|
|
1113
|
+
"llm-costs.js"
|
|
1230
1114
|
]
|
|
1231
1115
|
},
|
|
1232
|
-
"
|
|
1116
|
+
"billing:quota": {
|
|
1233
1117
|
"aliases": [],
|
|
1234
1118
|
"args": {},
|
|
1235
|
-
"description": "
|
|
1119
|
+
"description": "Show compilation stats per face (deprecated — use compile:stats)",
|
|
1236
1120
|
"flags": {
|
|
1237
1121
|
"json": {
|
|
1238
1122
|
"description": "Format output as json.",
|
|
@@ -1264,38 +1148,11 @@
|
|
|
1264
1148
|
"hasDynamicHelp": false,
|
|
1265
1149
|
"multiple": false,
|
|
1266
1150
|
"type": "option"
|
|
1267
|
-
},
|
|
1268
|
-
"skill": {
|
|
1269
|
-
"description": "Show details for a specific skill",
|
|
1270
|
-
"name": "skill",
|
|
1271
|
-
"hasDynamicHelp": false,
|
|
1272
|
-
"multiple": false,
|
|
1273
|
-
"type": "option"
|
|
1274
|
-
},
|
|
1275
|
-
"install": {
|
|
1276
|
-
"description": "Install a skill by name",
|
|
1277
|
-
"name": "install",
|
|
1278
|
-
"hasDynamicHelp": false,
|
|
1279
|
-
"multiple": false,
|
|
1280
|
-
"type": "option"
|
|
1281
|
-
},
|
|
1282
|
-
"skills-dir": {
|
|
1283
|
-
"description": "Directory to install skills into (required for --install)",
|
|
1284
|
-
"name": "skills-dir",
|
|
1285
|
-
"hasDynamicHelp": false,
|
|
1286
|
-
"multiple": false,
|
|
1287
|
-
"type": "option"
|
|
1288
|
-
},
|
|
1289
|
-
"refresh": {
|
|
1290
|
-
"description": "Force refresh the skill index (ignore cache)",
|
|
1291
|
-
"name": "refresh",
|
|
1292
|
-
"allowNo": false,
|
|
1293
|
-
"type": "boolean"
|
|
1294
1151
|
}
|
|
1295
1152
|
},
|
|
1296
1153
|
"hasDynamicHelp": false,
|
|
1297
1154
|
"hiddenAliases": [],
|
|
1298
|
-
"id": "
|
|
1155
|
+
"id": "billing:quota",
|
|
1299
1156
|
"pluginAlias": "faces-cli",
|
|
1300
1157
|
"pluginName": "faces-cli",
|
|
1301
1158
|
"pluginType": "core",
|
|
@@ -1305,19 +1162,14 @@
|
|
|
1305
1162
|
"relativePath": [
|
|
1306
1163
|
"dist",
|
|
1307
1164
|
"commands",
|
|
1308
|
-
"
|
|
1309
|
-
"
|
|
1165
|
+
"billing",
|
|
1166
|
+
"quota.js"
|
|
1310
1167
|
]
|
|
1311
1168
|
},
|
|
1312
|
-
"
|
|
1169
|
+
"billing:subscription": {
|
|
1313
1170
|
"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",
|
|
1171
|
+
"args": {},
|
|
1172
|
+
"description": "Show current plan, face count, and renewal date",
|
|
1321
1173
|
"flags": {
|
|
1322
1174
|
"json": {
|
|
1323
1175
|
"description": "Format output as json.",
|
|
@@ -1349,17 +1201,11 @@
|
|
|
1349
1201
|
"hasDynamicHelp": false,
|
|
1350
1202
|
"multiple": false,
|
|
1351
1203
|
"type": "option"
|
|
1352
|
-
},
|
|
1353
|
-
"compile": {
|
|
1354
|
-
"description": "Run compile:all after restoring",
|
|
1355
|
-
"name": "compile",
|
|
1356
|
-
"allowNo": false,
|
|
1357
|
-
"type": "boolean"
|
|
1358
1204
|
}
|
|
1359
1205
|
},
|
|
1360
1206
|
"hasDynamicHelp": false,
|
|
1361
1207
|
"hiddenAliases": [],
|
|
1362
|
-
"id": "
|
|
1208
|
+
"id": "billing:subscription",
|
|
1363
1209
|
"pluginAlias": "faces-cli",
|
|
1364
1210
|
"pluginName": "faces-cli",
|
|
1365
1211
|
"pluginType": "core",
|
|
@@ -1369,20 +1215,14 @@
|
|
|
1369
1215
|
"relativePath": [
|
|
1370
1216
|
"dist",
|
|
1371
1217
|
"commands",
|
|
1372
|
-
"
|
|
1373
|
-
"
|
|
1218
|
+
"billing",
|
|
1219
|
+
"subscription.js"
|
|
1374
1220
|
]
|
|
1375
1221
|
},
|
|
1376
|
-
"
|
|
1222
|
+
"billing:topup": {
|
|
1377
1223
|
"aliases": [],
|
|
1378
|
-
"args": {
|
|
1379
|
-
|
|
1380
|
-
"description": "Face alias (or alias@model)",
|
|
1381
|
-
"name": "face_username",
|
|
1382
|
-
"required": true
|
|
1383
|
-
}
|
|
1384
|
-
},
|
|
1385
|
-
"description": "Chat via a face. Auto-routes to the correct API endpoint based on model provider.",
|
|
1224
|
+
"args": {},
|
|
1225
|
+
"description": "Top up credit balance using saved payment method",
|
|
1386
1226
|
"flags": {
|
|
1387
1227
|
"json": {
|
|
1388
1228
|
"description": "Format output as json.",
|
|
@@ -1415,72 +1255,25 @@
|
|
|
1415
1255
|
"multiple": false,
|
|
1416
1256
|
"type": "option"
|
|
1417
1257
|
},
|
|
1418
|
-
"
|
|
1419
|
-
"
|
|
1420
|
-
"
|
|
1421
|
-
"
|
|
1422
|
-
"required": false,
|
|
1423
|
-
"hasDynamicHelp": false,
|
|
1424
|
-
"multiple": true,
|
|
1425
|
-
"type": "option"
|
|
1426
|
-
},
|
|
1427
|
-
"llm": {
|
|
1428
|
-
"description": "LLM override (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
1429
|
-
"name": "llm",
|
|
1430
|
-
"hasDynamicHelp": false,
|
|
1431
|
-
"multiple": false,
|
|
1432
|
-
"type": "option"
|
|
1433
|
-
},
|
|
1434
|
-
"system": {
|
|
1435
|
-
"description": "System prompt / instructions",
|
|
1436
|
-
"name": "system",
|
|
1437
|
-
"hasDynamicHelp": false,
|
|
1438
|
-
"multiple": false,
|
|
1439
|
-
"type": "option"
|
|
1440
|
-
},
|
|
1441
|
-
"stream": {
|
|
1442
|
-
"description": "Stream the response",
|
|
1443
|
-
"name": "stream",
|
|
1444
|
-
"allowNo": false,
|
|
1445
|
-
"type": "boolean"
|
|
1446
|
-
},
|
|
1447
|
-
"max-tokens": {
|
|
1448
|
-
"description": "Max tokens",
|
|
1449
|
-
"name": "max-tokens",
|
|
1450
|
-
"hasDynamicHelp": false,
|
|
1451
|
-
"multiple": false,
|
|
1452
|
-
"type": "option"
|
|
1453
|
-
},
|
|
1454
|
-
"temperature": {
|
|
1455
|
-
"description": "Temperature (0.0-2.0)",
|
|
1456
|
-
"name": "temperature",
|
|
1258
|
+
"amount": {
|
|
1259
|
+
"description": "Top-up amount in USD (min $1)",
|
|
1260
|
+
"name": "amount",
|
|
1261
|
+
"required": true,
|
|
1457
1262
|
"hasDynamicHelp": false,
|
|
1458
1263
|
"multiple": false,
|
|
1459
1264
|
"type": "option"
|
|
1460
1265
|
},
|
|
1461
|
-
"
|
|
1462
|
-
"description": "
|
|
1463
|
-
"name": "
|
|
1266
|
+
"payment-ref": {
|
|
1267
|
+
"description": "Payment reference (admin/test path)",
|
|
1268
|
+
"name": "payment-ref",
|
|
1464
1269
|
"hasDynamicHelp": false,
|
|
1465
1270
|
"multiple": false,
|
|
1466
1271
|
"type": "option"
|
|
1467
|
-
},
|
|
1468
|
-
"responses": {
|
|
1469
|
-
"description": "Use OpenAI Responses API instead of Chat Completions",
|
|
1470
|
-
"name": "responses",
|
|
1471
|
-
"allowNo": false,
|
|
1472
|
-
"type": "boolean"
|
|
1473
|
-
},
|
|
1474
|
-
"oauth-only": {
|
|
1475
|
-
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
1476
|
-
"name": "oauth-only",
|
|
1477
|
-
"allowNo": false,
|
|
1478
|
-
"type": "boolean"
|
|
1479
1272
|
}
|
|
1480
1273
|
},
|
|
1481
1274
|
"hasDynamicHelp": false,
|
|
1482
1275
|
"hiddenAliases": [],
|
|
1483
|
-
"id": "
|
|
1276
|
+
"id": "billing:topup",
|
|
1484
1277
|
"pluginAlias": "faces-cli",
|
|
1485
1278
|
"pluginName": "faces-cli",
|
|
1486
1279
|
"pluginType": "core",
|
|
@@ -1490,20 +1283,14 @@
|
|
|
1490
1283
|
"relativePath": [
|
|
1491
1284
|
"dist",
|
|
1492
1285
|
"commands",
|
|
1493
|
-
"
|
|
1494
|
-
"
|
|
1286
|
+
"billing",
|
|
1287
|
+
"topup.js"
|
|
1495
1288
|
]
|
|
1496
1289
|
},
|
|
1497
|
-
"
|
|
1290
|
+
"billing:usage": {
|
|
1498
1291
|
"aliases": [],
|
|
1499
|
-
"args": {
|
|
1500
|
-
|
|
1501
|
-
"description": "Face model (e.g. myface or myface@claude-sonnet-4-6)",
|
|
1502
|
-
"name": "face_model",
|
|
1503
|
-
"required": true
|
|
1504
|
-
}
|
|
1505
|
-
},
|
|
1506
|
-
"description": "Anthropic Messages API proxy via a face (alias: chat:chat auto-routes Anthropic models here)",
|
|
1292
|
+
"args": {},
|
|
1293
|
+
"description": "Aggregated usage analytics",
|
|
1507
1294
|
"flags": {
|
|
1508
1295
|
"json": {
|
|
1509
1296
|
"description": "Format output as json.",
|
|
@@ -1536,46 +1323,37 @@
|
|
|
1536
1323
|
"multiple": false,
|
|
1537
1324
|
"type": "option"
|
|
1538
1325
|
},
|
|
1539
|
-
"
|
|
1540
|
-
"
|
|
1541
|
-
"
|
|
1542
|
-
"name": "message",
|
|
1543
|
-
"required": true,
|
|
1326
|
+
"group-by": {
|
|
1327
|
+
"description": "Group results",
|
|
1328
|
+
"name": "group-by",
|
|
1544
1329
|
"hasDynamicHelp": false,
|
|
1545
|
-
"multiple":
|
|
1330
|
+
"multiple": false,
|
|
1331
|
+
"options": [
|
|
1332
|
+
"api_key",
|
|
1333
|
+
"model",
|
|
1334
|
+
"llm",
|
|
1335
|
+
"date"
|
|
1336
|
+
],
|
|
1546
1337
|
"type": "option"
|
|
1547
1338
|
},
|
|
1548
|
-
"
|
|
1549
|
-
"description": "
|
|
1550
|
-
"name": "
|
|
1339
|
+
"from": {
|
|
1340
|
+
"description": "Start date (YYYY-MM-DD)",
|
|
1341
|
+
"name": "from",
|
|
1551
1342
|
"hasDynamicHelp": false,
|
|
1552
1343
|
"multiple": false,
|
|
1553
1344
|
"type": "option"
|
|
1554
1345
|
},
|
|
1555
|
-
"
|
|
1556
|
-
"description": "
|
|
1557
|
-
"name": "
|
|
1558
|
-
"allowNo": false,
|
|
1559
|
-
"type": "boolean"
|
|
1560
|
-
},
|
|
1561
|
-
"max-tokens": {
|
|
1562
|
-
"description": "Max tokens",
|
|
1563
|
-
"name": "max-tokens",
|
|
1564
|
-
"default": 1024,
|
|
1346
|
+
"to": {
|
|
1347
|
+
"description": "End date (YYYY-MM-DD)",
|
|
1348
|
+
"name": "to",
|
|
1565
1349
|
"hasDynamicHelp": false,
|
|
1566
1350
|
"multiple": false,
|
|
1567
1351
|
"type": "option"
|
|
1568
|
-
},
|
|
1569
|
-
"oauth-only": {
|
|
1570
|
-
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
1571
|
-
"name": "oauth-only",
|
|
1572
|
-
"allowNo": false,
|
|
1573
|
-
"type": "boolean"
|
|
1574
1352
|
}
|
|
1575
1353
|
},
|
|
1576
1354
|
"hasDynamicHelp": false,
|
|
1577
1355
|
"hiddenAliases": [],
|
|
1578
|
-
"id": "
|
|
1356
|
+
"id": "billing:usage",
|
|
1579
1357
|
"pluginAlias": "faces-cli",
|
|
1580
1358
|
"pluginName": "faces-cli",
|
|
1581
1359
|
"pluginType": "core",
|
|
@@ -1585,20 +1363,14 @@
|
|
|
1585
1363
|
"relativePath": [
|
|
1586
1364
|
"dist",
|
|
1587
1365
|
"commands",
|
|
1588
|
-
"
|
|
1589
|
-
"
|
|
1366
|
+
"billing",
|
|
1367
|
+
"usage.js"
|
|
1590
1368
|
]
|
|
1591
1369
|
},
|
|
1592
|
-
"
|
|
1370
|
+
"compile:all": {
|
|
1593
1371
|
"aliases": [],
|
|
1594
|
-
"args": {
|
|
1595
|
-
|
|
1596
|
-
"description": "Face model (e.g. myface or myface@gpt-4o)",
|
|
1597
|
-
"name": "face_model",
|
|
1598
|
-
"required": true
|
|
1599
|
-
}
|
|
1600
|
-
},
|
|
1601
|
-
"description": "OpenAI Responses API proxy via a face (alias: chat:chat --responses)",
|
|
1372
|
+
"args": {},
|
|
1373
|
+
"description": "Compile all uncompiled documents and threads across all faces",
|
|
1602
1374
|
"flags": {
|
|
1603
1375
|
"json": {
|
|
1604
1376
|
"description": "Format output as json.",
|
|
@@ -1631,38 +1403,18 @@
|
|
|
1631
1403
|
"multiple": false,
|
|
1632
1404
|
"type": "option"
|
|
1633
1405
|
},
|
|
1634
|
-
"
|
|
1635
|
-
"
|
|
1636
|
-
"
|
|
1637
|
-
"
|
|
1638
|
-
"required": true,
|
|
1639
|
-
"hasDynamicHelp": false,
|
|
1640
|
-
"multiple": false,
|
|
1641
|
-
"type": "option"
|
|
1642
|
-
},
|
|
1643
|
-
"instructions": {
|
|
1644
|
-
"description": "System instructions",
|
|
1645
|
-
"name": "instructions",
|
|
1406
|
+
"timeout": {
|
|
1407
|
+
"description": "Per-item compile timeout in seconds (default: 600)",
|
|
1408
|
+
"name": "timeout",
|
|
1409
|
+
"default": 600,
|
|
1646
1410
|
"hasDynamicHelp": false,
|
|
1647
1411
|
"multiple": false,
|
|
1648
1412
|
"type": "option"
|
|
1649
|
-
},
|
|
1650
|
-
"stream": {
|
|
1651
|
-
"description": "Stream the response",
|
|
1652
|
-
"name": "stream",
|
|
1653
|
-
"allowNo": false,
|
|
1654
|
-
"type": "boolean"
|
|
1655
|
-
},
|
|
1656
|
-
"oauth-only": {
|
|
1657
|
-
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
1658
|
-
"name": "oauth-only",
|
|
1659
|
-
"allowNo": false,
|
|
1660
|
-
"type": "boolean"
|
|
1661
1413
|
}
|
|
1662
1414
|
},
|
|
1663
1415
|
"hasDynamicHelp": false,
|
|
1664
1416
|
"hiddenAliases": [],
|
|
1665
|
-
"id": "
|
|
1417
|
+
"id": "compile:all",
|
|
1666
1418
|
"pluginAlias": "faces-cli",
|
|
1667
1419
|
"pluginName": "faces-cli",
|
|
1668
1420
|
"pluginType": "core",
|
|
@@ -1672,27 +1424,20 @@
|
|
|
1672
1424
|
"relativePath": [
|
|
1673
1425
|
"dist",
|
|
1674
1426
|
"commands",
|
|
1675
|
-
"
|
|
1676
|
-
"
|
|
1427
|
+
"compile",
|
|
1428
|
+
"all.js"
|
|
1677
1429
|
]
|
|
1678
1430
|
},
|
|
1679
|
-
"
|
|
1431
|
+
"compile:import": {
|
|
1680
1432
|
"aliases": [],
|
|
1681
1433
|
"args": {
|
|
1682
|
-
"
|
|
1683
|
-
"description": "Face alias
|
|
1684
|
-
"name": "
|
|
1685
|
-
"required":
|
|
1434
|
+
"face_id": {
|
|
1435
|
+
"description": "Face alias",
|
|
1436
|
+
"name": "face_id",
|
|
1437
|
+
"required": true
|
|
1686
1438
|
}
|
|
1687
1439
|
},
|
|
1688
|
-
"description": "
|
|
1689
|
-
"examples": [
|
|
1690
|
-
"<%= config.bin %> <%= command.id %> socrates -m \"What is justice?\"",
|
|
1691
|
-
"<%= config.bin %> <%= command.id %> --id t_abc123 -m \"Say more about that\"",
|
|
1692
|
-
"<%= config.bin %> <%= command.id %> --list",
|
|
1693
|
-
"<%= config.bin %> <%= command.id %> --id t_abc123 --show",
|
|
1694
|
-
"<%= config.bin %> <%= command.id %> --id t_abc123 --delete"
|
|
1695
|
-
],
|
|
1440
|
+
"description": "Import a YouTube video into a face via server-side download and transcription",
|
|
1696
1441
|
"flags": {
|
|
1697
1442
|
"json": {
|
|
1698
1443
|
"description": "Format output as json.",
|
|
@@ -1725,90 +1470,55 @@
|
|
|
1725
1470
|
"multiple": false,
|
|
1726
1471
|
"type": "option"
|
|
1727
1472
|
},
|
|
1728
|
-
"
|
|
1729
|
-
"description": "
|
|
1730
|
-
"name": "
|
|
1731
|
-
"
|
|
1732
|
-
"multiple": false,
|
|
1733
|
-
"type": "option"
|
|
1734
|
-
},
|
|
1735
|
-
"message": {
|
|
1736
|
-
"char": "m",
|
|
1737
|
-
"description": "User message",
|
|
1738
|
-
"name": "message",
|
|
1739
|
-
"hasDynamicHelp": false,
|
|
1740
|
-
"multiple": false,
|
|
1741
|
-
"type": "option"
|
|
1742
|
-
},
|
|
1743
|
-
"file": {
|
|
1744
|
-
"description": "Read message from file",
|
|
1745
|
-
"name": "file",
|
|
1746
|
-
"hasDynamicHelp": false,
|
|
1747
|
-
"multiple": false,
|
|
1748
|
-
"type": "option"
|
|
1749
|
-
},
|
|
1750
|
-
"llm": {
|
|
1751
|
-
"description": "LLM override (only honored when starting a new thread)",
|
|
1752
|
-
"name": "llm",
|
|
1473
|
+
"url": {
|
|
1474
|
+
"description": "YouTube URL (youtube.com/watch?v=... or youtu.be/...)",
|
|
1475
|
+
"name": "url",
|
|
1476
|
+
"required": true,
|
|
1753
1477
|
"hasDynamicHelp": false,
|
|
1754
1478
|
"multiple": false,
|
|
1755
1479
|
"type": "option"
|
|
1756
1480
|
},
|
|
1757
|
-
"
|
|
1758
|
-
"description": "
|
|
1759
|
-
"name": "
|
|
1481
|
+
"type": {
|
|
1482
|
+
"description": "\"document\" for solo talks, lectures, monologues; \"thread\" for interviews or multi-speaker conversations",
|
|
1483
|
+
"name": "type",
|
|
1484
|
+
"default": "document",
|
|
1760
1485
|
"hasDynamicHelp": false,
|
|
1761
1486
|
"multiple": false,
|
|
1487
|
+
"options": [
|
|
1488
|
+
"document",
|
|
1489
|
+
"thread"
|
|
1490
|
+
],
|
|
1762
1491
|
"type": "option"
|
|
1763
1492
|
},
|
|
1764
|
-
"
|
|
1765
|
-
"description": "
|
|
1766
|
-
"name": "
|
|
1493
|
+
"perspective": {
|
|
1494
|
+
"description": "\"first-person\" if the face is the speaker; \"third-person\" if the video is about the face",
|
|
1495
|
+
"name": "perspective",
|
|
1496
|
+
"default": "third-person",
|
|
1767
1497
|
"hasDynamicHelp": false,
|
|
1768
1498
|
"multiple": false,
|
|
1499
|
+
"options": [
|
|
1500
|
+
"first-person",
|
|
1501
|
+
"third-person"
|
|
1502
|
+
],
|
|
1769
1503
|
"type": "option"
|
|
1770
1504
|
},
|
|
1771
|
-
"
|
|
1772
|
-
"description": "
|
|
1773
|
-
"name": "
|
|
1505
|
+
"face-speaker": {
|
|
1506
|
+
"description": "For --type thread: AssemblyAI speaker label (e.g. \"A\") that corresponds to the face. Defaults to first detected speaker.",
|
|
1507
|
+
"name": "face-speaker",
|
|
1774
1508
|
"hasDynamicHelp": false,
|
|
1775
1509
|
"multiple": false,
|
|
1776
1510
|
"type": "option"
|
|
1777
1511
|
},
|
|
1778
|
-
"
|
|
1779
|
-
"description": "
|
|
1780
|
-
"name": "
|
|
1781
|
-
"allowNo": false,
|
|
1782
|
-
"type": "boolean"
|
|
1783
|
-
},
|
|
1784
|
-
"oauth-only": {
|
|
1785
|
-
"description": "Prevent fallback to paid system key",
|
|
1786
|
-
"name": "oauth-only",
|
|
1787
|
-
"allowNo": false,
|
|
1788
|
-
"type": "boolean"
|
|
1789
|
-
},
|
|
1790
|
-
"list": {
|
|
1791
|
-
"description": "List saved threads",
|
|
1792
|
-
"name": "list",
|
|
1793
|
-
"allowNo": false,
|
|
1794
|
-
"type": "boolean"
|
|
1795
|
-
},
|
|
1796
|
-
"show": {
|
|
1797
|
-
"description": "Show the thread transcript (requires --id)",
|
|
1798
|
-
"name": "show",
|
|
1799
|
-
"allowNo": false,
|
|
1800
|
-
"type": "boolean"
|
|
1801
|
-
},
|
|
1802
|
-
"delete": {
|
|
1803
|
-
"description": "Delete the thread (requires --id)",
|
|
1804
|
-
"name": "delete",
|
|
1512
|
+
"no-wait": {
|
|
1513
|
+
"description": "Return immediately after import starts (do not poll for transcription). Prints the ID for manual polling.",
|
|
1514
|
+
"name": "no-wait",
|
|
1805
1515
|
"allowNo": false,
|
|
1806
1516
|
"type": "boolean"
|
|
1807
1517
|
}
|
|
1808
1518
|
},
|
|
1809
1519
|
"hasDynamicHelp": false,
|
|
1810
1520
|
"hiddenAliases": [],
|
|
1811
|
-
"id": "
|
|
1521
|
+
"id": "compile:import",
|
|
1812
1522
|
"pluginAlias": "faces-cli",
|
|
1813
1523
|
"pluginName": "faces-cli",
|
|
1814
1524
|
"pluginType": "core",
|
|
@@ -1818,14 +1528,14 @@
|
|
|
1818
1528
|
"relativePath": [
|
|
1819
1529
|
"dist",
|
|
1820
1530
|
"commands",
|
|
1821
|
-
"
|
|
1822
|
-
"
|
|
1531
|
+
"compile",
|
|
1532
|
+
"import.js"
|
|
1823
1533
|
]
|
|
1824
1534
|
},
|
|
1825
|
-
"compile:
|
|
1535
|
+
"compile:stats": {
|
|
1826
1536
|
"aliases": [],
|
|
1827
1537
|
"args": {},
|
|
1828
|
-
"description": "
|
|
1538
|
+
"description": "Show compilation stats per face",
|
|
1829
1539
|
"flags": {
|
|
1830
1540
|
"json": {
|
|
1831
1541
|
"description": "Format output as json.",
|
|
@@ -1857,19 +1567,11 @@
|
|
|
1857
1567
|
"hasDynamicHelp": false,
|
|
1858
1568
|
"multiple": false,
|
|
1859
1569
|
"type": "option"
|
|
1860
|
-
},
|
|
1861
|
-
"timeout": {
|
|
1862
|
-
"description": "Per-item compile timeout in seconds (default: 600)",
|
|
1863
|
-
"name": "timeout",
|
|
1864
|
-
"default": 600,
|
|
1865
|
-
"hasDynamicHelp": false,
|
|
1866
|
-
"multiple": false,
|
|
1867
|
-
"type": "option"
|
|
1868
1570
|
}
|
|
1869
1571
|
},
|
|
1870
1572
|
"hasDynamicHelp": false,
|
|
1871
1573
|
"hiddenAliases": [],
|
|
1872
|
-
"id": "compile:
|
|
1574
|
+
"id": "compile:stats",
|
|
1873
1575
|
"pluginAlias": "faces-cli",
|
|
1874
1576
|
"pluginName": "faces-cli",
|
|
1875
1577
|
"pluginType": "core",
|
|
@@ -1880,19 +1582,19 @@
|
|
|
1880
1582
|
"dist",
|
|
1881
1583
|
"commands",
|
|
1882
1584
|
"compile",
|
|
1883
|
-
"
|
|
1585
|
+
"stats.js"
|
|
1884
1586
|
]
|
|
1885
1587
|
},
|
|
1886
|
-
"compile:
|
|
1588
|
+
"compile:upload": {
|
|
1887
1589
|
"aliases": [],
|
|
1888
1590
|
"args": {
|
|
1889
|
-
"
|
|
1591
|
+
"alias": {
|
|
1890
1592
|
"description": "Face alias",
|
|
1891
|
-
"name": "
|
|
1593
|
+
"name": "alias",
|
|
1892
1594
|
"required": true
|
|
1893
1595
|
}
|
|
1894
1596
|
},
|
|
1895
|
-
"description": "
|
|
1597
|
+
"description": "Upload a file (text/PDF/audio/video) to compile into a face",
|
|
1896
1598
|
"flags": {
|
|
1897
1599
|
"json": {
|
|
1898
1600
|
"description": "Format output as json.",
|
|
@@ -1925,17 +1627,17 @@
|
|
|
1925
1627
|
"multiple": false,
|
|
1926
1628
|
"type": "option"
|
|
1927
1629
|
},
|
|
1928
|
-
"
|
|
1929
|
-
"description": "
|
|
1930
|
-
"name": "
|
|
1630
|
+
"file": {
|
|
1631
|
+
"description": "File to upload",
|
|
1632
|
+
"name": "file",
|
|
1931
1633
|
"required": true,
|
|
1932
1634
|
"hasDynamicHelp": false,
|
|
1933
1635
|
"multiple": false,
|
|
1934
1636
|
"type": "option"
|
|
1935
1637
|
},
|
|
1936
|
-
"
|
|
1937
|
-
"description": "
|
|
1938
|
-
"name": "
|
|
1638
|
+
"kind": {
|
|
1639
|
+
"description": "Upload kind: document or thread",
|
|
1640
|
+
"name": "kind",
|
|
1939
1641
|
"default": "document",
|
|
1940
1642
|
"hasDynamicHelp": false,
|
|
1941
1643
|
"multiple": false,
|
|
@@ -1946,7 +1648,7 @@
|
|
|
1946
1648
|
"type": "option"
|
|
1947
1649
|
},
|
|
1948
1650
|
"perspective": {
|
|
1949
|
-
"description": "
|
|
1651
|
+
"description": "Perspective (document only)",
|
|
1950
1652
|
"name": "perspective",
|
|
1951
1653
|
"default": "third-person",
|
|
1952
1654
|
"hasDynamicHelp": false,
|
|
@@ -1958,14 +1660,14 @@
|
|
|
1958
1660
|
"type": "option"
|
|
1959
1661
|
},
|
|
1960
1662
|
"face-speaker": {
|
|
1961
|
-
"description": "
|
|
1663
|
+
"description": "Speaker name to map to the face (thread only). If omitted, auto-detected from face name.",
|
|
1962
1664
|
"name": "face-speaker",
|
|
1963
1665
|
"hasDynamicHelp": false,
|
|
1964
1666
|
"multiple": false,
|
|
1965
1667
|
"type": "option"
|
|
1966
1668
|
},
|
|
1967
1669
|
"no-wait": {
|
|
1968
|
-
"description": "Return immediately after
|
|
1670
|
+
"description": "Return immediately after upload (do not poll for transcription). Prints the ID for manual polling.",
|
|
1969
1671
|
"name": "no-wait",
|
|
1970
1672
|
"allowNo": false,
|
|
1971
1673
|
"type": "boolean"
|
|
@@ -1973,7 +1675,7 @@
|
|
|
1973
1675
|
},
|
|
1974
1676
|
"hasDynamicHelp": false,
|
|
1975
1677
|
"hiddenAliases": [],
|
|
1976
|
-
"id": "compile:
|
|
1678
|
+
"id": "compile:upload",
|
|
1977
1679
|
"pluginAlias": "faces-cli",
|
|
1978
1680
|
"pluginName": "faces-cli",
|
|
1979
1681
|
"pluginType": "core",
|
|
@@ -1984,13 +1686,19 @@
|
|
|
1984
1686
|
"dist",
|
|
1985
1687
|
"commands",
|
|
1986
1688
|
"compile",
|
|
1987
|
-
"
|
|
1689
|
+
"upload.js"
|
|
1988
1690
|
]
|
|
1989
1691
|
},
|
|
1990
|
-
"
|
|
1692
|
+
"chat:chat": {
|
|
1991
1693
|
"aliases": [],
|
|
1992
|
-
"args": {
|
|
1993
|
-
|
|
1694
|
+
"args": {
|
|
1695
|
+
"face_username": {
|
|
1696
|
+
"description": "Face alias (or alias@model)",
|
|
1697
|
+
"name": "face_username",
|
|
1698
|
+
"required": true
|
|
1699
|
+
}
|
|
1700
|
+
},
|
|
1701
|
+
"description": "Chat via a face. Auto-routes to the correct API endpoint based on the model catalog.",
|
|
1994
1702
|
"flags": {
|
|
1995
1703
|
"json": {
|
|
1996
1704
|
"description": "Format output as json.",
|
|
@@ -2022,11 +1730,73 @@
|
|
|
2022
1730
|
"hasDynamicHelp": false,
|
|
2023
1731
|
"multiple": false,
|
|
2024
1732
|
"type": "option"
|
|
1733
|
+
},
|
|
1734
|
+
"message": {
|
|
1735
|
+
"char": "m",
|
|
1736
|
+
"description": "User message (repeatable)",
|
|
1737
|
+
"name": "message",
|
|
1738
|
+
"required": false,
|
|
1739
|
+
"hasDynamicHelp": false,
|
|
1740
|
+
"multiple": true,
|
|
1741
|
+
"type": "option"
|
|
1742
|
+
},
|
|
1743
|
+
"llm": {
|
|
1744
|
+
"description": "LLM override (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
1745
|
+
"name": "llm",
|
|
1746
|
+
"hasDynamicHelp": false,
|
|
1747
|
+
"multiple": false,
|
|
1748
|
+
"type": "option"
|
|
1749
|
+
},
|
|
1750
|
+
"system": {
|
|
1751
|
+
"description": "System prompt / instructions",
|
|
1752
|
+
"name": "system",
|
|
1753
|
+
"hasDynamicHelp": false,
|
|
1754
|
+
"multiple": false,
|
|
1755
|
+
"type": "option"
|
|
1756
|
+
},
|
|
1757
|
+
"stream": {
|
|
1758
|
+
"description": "Stream the response",
|
|
1759
|
+
"name": "stream",
|
|
1760
|
+
"allowNo": false,
|
|
1761
|
+
"type": "boolean"
|
|
1762
|
+
},
|
|
1763
|
+
"max-tokens": {
|
|
1764
|
+
"description": "Max tokens",
|
|
1765
|
+
"name": "max-tokens",
|
|
1766
|
+
"hasDynamicHelp": false,
|
|
1767
|
+
"multiple": false,
|
|
1768
|
+
"type": "option"
|
|
1769
|
+
},
|
|
1770
|
+
"temperature": {
|
|
1771
|
+
"description": "Temperature (0.0-2.0)",
|
|
1772
|
+
"name": "temperature",
|
|
1773
|
+
"hasDynamicHelp": false,
|
|
1774
|
+
"multiple": false,
|
|
1775
|
+
"type": "option"
|
|
1776
|
+
},
|
|
1777
|
+
"file": {
|
|
1778
|
+
"description": "Read message from file",
|
|
1779
|
+
"name": "file",
|
|
1780
|
+
"hasDynamicHelp": false,
|
|
1781
|
+
"multiple": false,
|
|
1782
|
+
"type": "option"
|
|
1783
|
+
},
|
|
1784
|
+
"responses": {
|
|
1785
|
+
"description": "Force the OpenAI Responses API endpoint (escape hatch; routing is automatic otherwise)",
|
|
1786
|
+
"name": "responses",
|
|
1787
|
+
"allowNo": false,
|
|
1788
|
+
"type": "boolean"
|
|
1789
|
+
},
|
|
1790
|
+
"oauth-only": {
|
|
1791
|
+
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
1792
|
+
"name": "oauth-only",
|
|
1793
|
+
"allowNo": false,
|
|
1794
|
+
"type": "boolean"
|
|
2025
1795
|
}
|
|
2026
1796
|
},
|
|
2027
1797
|
"hasDynamicHelp": false,
|
|
2028
1798
|
"hiddenAliases": [],
|
|
2029
|
-
"id": "
|
|
1799
|
+
"id": "chat:chat",
|
|
2030
1800
|
"pluginAlias": "faces-cli",
|
|
2031
1801
|
"pluginName": "faces-cli",
|
|
2032
1802
|
"pluginType": "core",
|
|
@@ -2036,20 +1806,209 @@
|
|
|
2036
1806
|
"relativePath": [
|
|
2037
1807
|
"dist",
|
|
2038
1808
|
"commands",
|
|
2039
|
-
"
|
|
2040
|
-
"
|
|
1809
|
+
"chat",
|
|
1810
|
+
"chat.js"
|
|
2041
1811
|
]
|
|
2042
1812
|
},
|
|
2043
|
-
"
|
|
1813
|
+
"chat:messages": {
|
|
2044
1814
|
"aliases": [],
|
|
2045
1815
|
"args": {
|
|
2046
|
-
"
|
|
2047
|
-
"description": "Face
|
|
2048
|
-
"name": "
|
|
1816
|
+
"face_model": {
|
|
1817
|
+
"description": "Face model (e.g. myface or myface@claude-sonnet-4-6)",
|
|
1818
|
+
"name": "face_model",
|
|
2049
1819
|
"required": true
|
|
2050
1820
|
}
|
|
2051
1821
|
},
|
|
2052
|
-
"description": "
|
|
1822
|
+
"description": "Anthropic Messages API proxy via a face (alias: chat:chat auto-routes Anthropic models here)",
|
|
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
|
+
"message": {
|
|
1856
|
+
"char": "m",
|
|
1857
|
+
"description": "User message (repeatable)",
|
|
1858
|
+
"name": "message",
|
|
1859
|
+
"required": true,
|
|
1860
|
+
"hasDynamicHelp": false,
|
|
1861
|
+
"multiple": true,
|
|
1862
|
+
"type": "option"
|
|
1863
|
+
},
|
|
1864
|
+
"system": {
|
|
1865
|
+
"description": "System prompt",
|
|
1866
|
+
"name": "system",
|
|
1867
|
+
"hasDynamicHelp": false,
|
|
1868
|
+
"multiple": false,
|
|
1869
|
+
"type": "option"
|
|
1870
|
+
},
|
|
1871
|
+
"stream": {
|
|
1872
|
+
"description": "Stream the response",
|
|
1873
|
+
"name": "stream",
|
|
1874
|
+
"allowNo": false,
|
|
1875
|
+
"type": "boolean"
|
|
1876
|
+
},
|
|
1877
|
+
"max-tokens": {
|
|
1878
|
+
"description": "Max tokens",
|
|
1879
|
+
"name": "max-tokens",
|
|
1880
|
+
"default": 1024,
|
|
1881
|
+
"hasDynamicHelp": false,
|
|
1882
|
+
"multiple": false,
|
|
1883
|
+
"type": "option"
|
|
1884
|
+
},
|
|
1885
|
+
"oauth-only": {
|
|
1886
|
+
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
1887
|
+
"name": "oauth-only",
|
|
1888
|
+
"allowNo": false,
|
|
1889
|
+
"type": "boolean"
|
|
1890
|
+
}
|
|
1891
|
+
},
|
|
1892
|
+
"hasDynamicHelp": false,
|
|
1893
|
+
"hiddenAliases": [],
|
|
1894
|
+
"id": "chat:messages",
|
|
1895
|
+
"pluginAlias": "faces-cli",
|
|
1896
|
+
"pluginName": "faces-cli",
|
|
1897
|
+
"pluginType": "core",
|
|
1898
|
+
"strict": true,
|
|
1899
|
+
"enableJsonFlag": true,
|
|
1900
|
+
"isESM": true,
|
|
1901
|
+
"relativePath": [
|
|
1902
|
+
"dist",
|
|
1903
|
+
"commands",
|
|
1904
|
+
"chat",
|
|
1905
|
+
"messages.js"
|
|
1906
|
+
]
|
|
1907
|
+
},
|
|
1908
|
+
"chat:responses": {
|
|
1909
|
+
"aliases": [],
|
|
1910
|
+
"args": {
|
|
1911
|
+
"face_model": {
|
|
1912
|
+
"description": "Face model (e.g. myface or myface@gpt-4o)",
|
|
1913
|
+
"name": "face_model",
|
|
1914
|
+
"required": true
|
|
1915
|
+
}
|
|
1916
|
+
},
|
|
1917
|
+
"description": "OpenAI Responses API proxy via a face (alias: chat:chat --responses)",
|
|
1918
|
+
"flags": {
|
|
1919
|
+
"json": {
|
|
1920
|
+
"description": "Format output as json.",
|
|
1921
|
+
"helpGroup": "GLOBAL",
|
|
1922
|
+
"name": "json",
|
|
1923
|
+
"allowNo": false,
|
|
1924
|
+
"type": "boolean"
|
|
1925
|
+
},
|
|
1926
|
+
"base-url": {
|
|
1927
|
+
"description": "API base URL",
|
|
1928
|
+
"env": "FACES_BASE_URL",
|
|
1929
|
+
"name": "base-url",
|
|
1930
|
+
"hasDynamicHelp": false,
|
|
1931
|
+
"multiple": false,
|
|
1932
|
+
"type": "option"
|
|
1933
|
+
},
|
|
1934
|
+
"token": {
|
|
1935
|
+
"description": "JWT bearer token",
|
|
1936
|
+
"env": "FACES_TOKEN",
|
|
1937
|
+
"name": "token",
|
|
1938
|
+
"hasDynamicHelp": false,
|
|
1939
|
+
"multiple": false,
|
|
1940
|
+
"type": "option"
|
|
1941
|
+
},
|
|
1942
|
+
"api-key": {
|
|
1943
|
+
"description": "API key",
|
|
1944
|
+
"env": "FACES_API_KEY",
|
|
1945
|
+
"name": "api-key",
|
|
1946
|
+
"hasDynamicHelp": false,
|
|
1947
|
+
"multiple": false,
|
|
1948
|
+
"type": "option"
|
|
1949
|
+
},
|
|
1950
|
+
"message": {
|
|
1951
|
+
"char": "m",
|
|
1952
|
+
"description": "User input message",
|
|
1953
|
+
"name": "message",
|
|
1954
|
+
"required": true,
|
|
1955
|
+
"hasDynamicHelp": false,
|
|
1956
|
+
"multiple": false,
|
|
1957
|
+
"type": "option"
|
|
1958
|
+
},
|
|
1959
|
+
"instructions": {
|
|
1960
|
+
"description": "System instructions",
|
|
1961
|
+
"name": "instructions",
|
|
1962
|
+
"hasDynamicHelp": false,
|
|
1963
|
+
"multiple": false,
|
|
1964
|
+
"type": "option"
|
|
1965
|
+
},
|
|
1966
|
+
"stream": {
|
|
1967
|
+
"description": "Stream the response",
|
|
1968
|
+
"name": "stream",
|
|
1969
|
+
"allowNo": false,
|
|
1970
|
+
"type": "boolean"
|
|
1971
|
+
},
|
|
1972
|
+
"oauth-only": {
|
|
1973
|
+
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
1974
|
+
"name": "oauth-only",
|
|
1975
|
+
"allowNo": false,
|
|
1976
|
+
"type": "boolean"
|
|
1977
|
+
}
|
|
1978
|
+
},
|
|
1979
|
+
"hasDynamicHelp": false,
|
|
1980
|
+
"hiddenAliases": [],
|
|
1981
|
+
"id": "chat:responses",
|
|
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
|
+
"chat",
|
|
1992
|
+
"responses.js"
|
|
1993
|
+
]
|
|
1994
|
+
},
|
|
1995
|
+
"chat:thread": {
|
|
1996
|
+
"aliases": [],
|
|
1997
|
+
"args": {
|
|
1998
|
+
"face_username": {
|
|
1999
|
+
"description": "Face alias (or alias@model) — required when starting a new thread",
|
|
2000
|
+
"name": "face_username",
|
|
2001
|
+
"required": false
|
|
2002
|
+
}
|
|
2003
|
+
},
|
|
2004
|
+
"description": "Multi-turn chat thread. Conversation history is stored under ~/.faces/threads/<id>.json — resume any thread later with --id.",
|
|
2005
|
+
"examples": [
|
|
2006
|
+
"<%= config.bin %> <%= command.id %> socrates -m \"What is justice?\"",
|
|
2007
|
+
"<%= config.bin %> <%= command.id %> --id t_abc123 -m \"Say more about that\"",
|
|
2008
|
+
"<%= config.bin %> <%= command.id %> --list",
|
|
2009
|
+
"<%= config.bin %> <%= command.id %> --id t_abc123 --show",
|
|
2010
|
+
"<%= config.bin %> <%= command.id %> --id t_abc123 --delete"
|
|
2011
|
+
],
|
|
2053
2012
|
"flags": {
|
|
2054
2013
|
"json": {
|
|
2055
2014
|
"description": "Format output as json.",
|
|
@@ -2082,55 +2041,90 @@
|
|
|
2082
2041
|
"multiple": false,
|
|
2083
2042
|
"type": "option"
|
|
2084
2043
|
},
|
|
2044
|
+
"id": {
|
|
2045
|
+
"description": "Resume an existing thread by id",
|
|
2046
|
+
"name": "id",
|
|
2047
|
+
"hasDynamicHelp": false,
|
|
2048
|
+
"multiple": false,
|
|
2049
|
+
"type": "option"
|
|
2050
|
+
},
|
|
2051
|
+
"message": {
|
|
2052
|
+
"char": "m",
|
|
2053
|
+
"description": "User message",
|
|
2054
|
+
"name": "message",
|
|
2055
|
+
"hasDynamicHelp": false,
|
|
2056
|
+
"multiple": false,
|
|
2057
|
+
"type": "option"
|
|
2058
|
+
},
|
|
2085
2059
|
"file": {
|
|
2086
|
-
"description": "
|
|
2060
|
+
"description": "Read message from file",
|
|
2087
2061
|
"name": "file",
|
|
2088
|
-
"required": true,
|
|
2089
2062
|
"hasDynamicHelp": false,
|
|
2090
2063
|
"multiple": false,
|
|
2091
2064
|
"type": "option"
|
|
2092
2065
|
},
|
|
2093
|
-
"
|
|
2094
|
-
"description": "
|
|
2095
|
-
"name": "
|
|
2096
|
-
"default": "document",
|
|
2066
|
+
"llm": {
|
|
2067
|
+
"description": "LLM override (only honored when starting a new thread)",
|
|
2068
|
+
"name": "llm",
|
|
2097
2069
|
"hasDynamicHelp": false,
|
|
2098
2070
|
"multiple": false,
|
|
2099
|
-
"options": [
|
|
2100
|
-
"document",
|
|
2101
|
-
"thread"
|
|
2102
|
-
],
|
|
2103
2071
|
"type": "option"
|
|
2104
2072
|
},
|
|
2105
|
-
"
|
|
2106
|
-
"description": "
|
|
2107
|
-
"name": "
|
|
2108
|
-
"default": "third-person",
|
|
2073
|
+
"system": {
|
|
2074
|
+
"description": "System prompt (only honored when starting a new thread)",
|
|
2075
|
+
"name": "system",
|
|
2109
2076
|
"hasDynamicHelp": false,
|
|
2110
2077
|
"multiple": false,
|
|
2111
|
-
"options": [
|
|
2112
|
-
"first-person",
|
|
2113
|
-
"third-person"
|
|
2114
|
-
],
|
|
2115
2078
|
"type": "option"
|
|
2116
2079
|
},
|
|
2117
|
-
"
|
|
2118
|
-
"description": "
|
|
2119
|
-
"name": "
|
|
2080
|
+
"max-tokens": {
|
|
2081
|
+
"description": "Max tokens",
|
|
2082
|
+
"name": "max-tokens",
|
|
2120
2083
|
"hasDynamicHelp": false,
|
|
2121
2084
|
"multiple": false,
|
|
2122
2085
|
"type": "option"
|
|
2123
2086
|
},
|
|
2124
|
-
"
|
|
2125
|
-
"description": "
|
|
2126
|
-
"name": "
|
|
2087
|
+
"temperature": {
|
|
2088
|
+
"description": "Temperature (0.0-2.0, OpenAI/Chat Completions only)",
|
|
2089
|
+
"name": "temperature",
|
|
2090
|
+
"hasDynamicHelp": false,
|
|
2091
|
+
"multiple": false,
|
|
2092
|
+
"type": "option"
|
|
2093
|
+
},
|
|
2094
|
+
"stream": {
|
|
2095
|
+
"description": "Stream the response",
|
|
2096
|
+
"name": "stream",
|
|
2097
|
+
"allowNo": false,
|
|
2098
|
+
"type": "boolean"
|
|
2099
|
+
},
|
|
2100
|
+
"oauth-only": {
|
|
2101
|
+
"description": "Prevent fallback to paid system key",
|
|
2102
|
+
"name": "oauth-only",
|
|
2103
|
+
"allowNo": false,
|
|
2104
|
+
"type": "boolean"
|
|
2105
|
+
},
|
|
2106
|
+
"list": {
|
|
2107
|
+
"description": "List saved threads",
|
|
2108
|
+
"name": "list",
|
|
2109
|
+
"allowNo": false,
|
|
2110
|
+
"type": "boolean"
|
|
2111
|
+
},
|
|
2112
|
+
"show": {
|
|
2113
|
+
"description": "Show the thread transcript (requires --id)",
|
|
2114
|
+
"name": "show",
|
|
2115
|
+
"allowNo": false,
|
|
2116
|
+
"type": "boolean"
|
|
2117
|
+
},
|
|
2118
|
+
"delete": {
|
|
2119
|
+
"description": "Delete the thread (requires --id)",
|
|
2120
|
+
"name": "delete",
|
|
2127
2121
|
"allowNo": false,
|
|
2128
2122
|
"type": "boolean"
|
|
2129
2123
|
}
|
|
2130
2124
|
},
|
|
2131
2125
|
"hasDynamicHelp": false,
|
|
2132
2126
|
"hiddenAliases": [],
|
|
2133
|
-
"id": "
|
|
2127
|
+
"id": "chat:thread",
|
|
2134
2128
|
"pluginAlias": "faces-cli",
|
|
2135
2129
|
"pluginName": "faces-cli",
|
|
2136
2130
|
"pluginType": "core",
|
|
@@ -2140,8 +2134,8 @@
|
|
|
2140
2134
|
"relativePath": [
|
|
2141
2135
|
"dist",
|
|
2142
2136
|
"commands",
|
|
2143
|
-
"
|
|
2144
|
-
"
|
|
2137
|
+
"chat",
|
|
2138
|
+
"thread.js"
|
|
2145
2139
|
]
|
|
2146
2140
|
},
|
|
2147
2141
|
"config:clear": {
|
|
@@ -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,81 +2823,20 @@
|
|
|
2837
2823
|
"relativePath": [
|
|
2838
2824
|
"dist",
|
|
2839
2825
|
"commands",
|
|
2840
|
-
"
|
|
2826
|
+
"team",
|
|
2841
2827
|
"delete.js"
|
|
2842
2828
|
]
|
|
2843
2829
|
},
|
|
2844
|
-
"
|
|
2845
|
-
"aliases": [],
|
|
2846
|
-
"args": {},
|
|
2847
|
-
"description": "Compare owned faces pairwise across all centroid components",
|
|
2848
|
-
"flags": {
|
|
2849
|
-
"json": {
|
|
2850
|
-
"description": "Format output as json.",
|
|
2851
|
-
"helpGroup": "GLOBAL",
|
|
2852
|
-
"name": "json",
|
|
2853
|
-
"allowNo": false,
|
|
2854
|
-
"type": "boolean"
|
|
2855
|
-
},
|
|
2856
|
-
"base-url": {
|
|
2857
|
-
"description": "API base URL",
|
|
2858
|
-
"env": "FACES_BASE_URL",
|
|
2859
|
-
"name": "base-url",
|
|
2860
|
-
"hasDynamicHelp": false,
|
|
2861
|
-
"multiple": false,
|
|
2862
|
-
"type": "option"
|
|
2863
|
-
},
|
|
2864
|
-
"token": {
|
|
2865
|
-
"description": "JWT bearer token",
|
|
2866
|
-
"env": "FACES_TOKEN",
|
|
2867
|
-
"name": "token",
|
|
2868
|
-
"hasDynamicHelp": false,
|
|
2869
|
-
"multiple": false,
|
|
2870
|
-
"type": "option"
|
|
2871
|
-
},
|
|
2872
|
-
"api-key": {
|
|
2873
|
-
"description": "API key",
|
|
2874
|
-
"env": "FACES_API_KEY",
|
|
2875
|
-
"name": "api-key",
|
|
2876
|
-
"hasDynamicHelp": false,
|
|
2877
|
-
"multiple": false,
|
|
2878
|
-
"type": "option"
|
|
2879
|
-
},
|
|
2880
|
-
"face": {
|
|
2881
|
-
"description": "Face alias to include (repeatable, min 2)",
|
|
2882
|
-
"name": "face",
|
|
2883
|
-
"required": true,
|
|
2884
|
-
"hasDynamicHelp": false,
|
|
2885
|
-
"multiple": true,
|
|
2886
|
-
"type": "option"
|
|
2887
|
-
}
|
|
2888
|
-
},
|
|
2889
|
-
"hasDynamicHelp": false,
|
|
2890
|
-
"hiddenAliases": [],
|
|
2891
|
-
"id": "face:diff",
|
|
2892
|
-
"pluginAlias": "faces-cli",
|
|
2893
|
-
"pluginName": "faces-cli",
|
|
2894
|
-
"pluginType": "core",
|
|
2895
|
-
"strict": true,
|
|
2896
|
-
"enableJsonFlag": true,
|
|
2897
|
-
"isESM": true,
|
|
2898
|
-
"relativePath": [
|
|
2899
|
-
"dist",
|
|
2900
|
-
"commands",
|
|
2901
|
-
"face",
|
|
2902
|
-
"diff.js"
|
|
2903
|
-
]
|
|
2904
|
-
},
|
|
2905
|
-
"face:edit": {
|
|
2830
|
+
"team:edit": {
|
|
2906
2831
|
"aliases": [],
|
|
2907
2832
|
"args": {
|
|
2908
|
-
"
|
|
2909
|
-
"description": "
|
|
2910
|
-
"name": "
|
|
2833
|
+
"team_id": {
|
|
2834
|
+
"description": "Team ID",
|
|
2835
|
+
"name": "team_id",
|
|
2911
2836
|
"required": true
|
|
2912
2837
|
}
|
|
2913
2838
|
},
|
|
2914
|
-
"description": "Edit a
|
|
2839
|
+
"description": "Edit a team",
|
|
2915
2840
|
"flags": {
|
|
2916
2841
|
"json": {
|
|
2917
2842
|
"description": "Format output as json.",
|
|
@@ -2945,58 +2870,37 @@
|
|
|
2945
2870
|
"type": "option"
|
|
2946
2871
|
},
|
|
2947
2872
|
"name": {
|
|
2948
|
-
"description": "New
|
|
2873
|
+
"description": "New team name",
|
|
2949
2874
|
"name": "name",
|
|
2950
2875
|
"hasDynamicHelp": false,
|
|
2951
2876
|
"multiple": false,
|
|
2952
2877
|
"type": "option"
|
|
2953
2878
|
},
|
|
2954
2879
|
"description": {
|
|
2955
|
-
"description": "
|
|
2880
|
+
"description": "New description (max 1500 chars)",
|
|
2956
2881
|
"name": "description",
|
|
2957
2882
|
"hasDynamicHelp": false,
|
|
2958
2883
|
"multiple": false,
|
|
2959
2884
|
"type": "option"
|
|
2960
2885
|
},
|
|
2961
|
-
"
|
|
2962
|
-
"description": "
|
|
2963
|
-
"name": "
|
|
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",
|
|
2886
|
+
"protocol": {
|
|
2887
|
+
"description": "New protocol content",
|
|
2888
|
+
"name": "protocol",
|
|
2971
2889
|
"hasDynamicHelp": false,
|
|
2972
2890
|
"multiple": false,
|
|
2973
2891
|
"type": "option"
|
|
2974
2892
|
},
|
|
2975
|
-
"
|
|
2976
|
-
"description": "
|
|
2977
|
-
"name": "
|
|
2893
|
+
"protocol-file": {
|
|
2894
|
+
"description": "Read protocol from file",
|
|
2895
|
+
"name": "protocol-file",
|
|
2978
2896
|
"hasDynamicHelp": false,
|
|
2979
2897
|
"multiple": false,
|
|
2980
2898
|
"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
2899
|
}
|
|
2996
2900
|
},
|
|
2997
2901
|
"hasDynamicHelp": false,
|
|
2998
2902
|
"hiddenAliases": [],
|
|
2999
|
-
"id": "
|
|
2903
|
+
"id": "team:edit",
|
|
3000
2904
|
"pluginAlias": "faces-cli",
|
|
3001
2905
|
"pluginName": "faces-cli",
|
|
3002
2906
|
"pluginType": "core",
|
|
@@ -3006,20 +2910,20 @@
|
|
|
3006
2910
|
"relativePath": [
|
|
3007
2911
|
"dist",
|
|
3008
2912
|
"commands",
|
|
3009
|
-
"
|
|
2913
|
+
"team",
|
|
3010
2914
|
"edit.js"
|
|
3011
2915
|
]
|
|
3012
2916
|
},
|
|
3013
|
-
"
|
|
2917
|
+
"team:get": {
|
|
3014
2918
|
"aliases": [],
|
|
3015
2919
|
"args": {
|
|
3016
|
-
"
|
|
3017
|
-
"description": "
|
|
3018
|
-
"name": "
|
|
2920
|
+
"team_id": {
|
|
2921
|
+
"description": "Team ID",
|
|
2922
|
+
"name": "team_id",
|
|
3019
2923
|
"required": true
|
|
3020
2924
|
}
|
|
3021
2925
|
},
|
|
3022
|
-
"description": "Get
|
|
2926
|
+
"description": "Get a team by ID",
|
|
3023
2927
|
"flags": {
|
|
3024
2928
|
"json": {
|
|
3025
2929
|
"description": "Format output as json.",
|
|
@@ -3051,18 +2955,11 @@
|
|
|
3051
2955
|
"hasDynamicHelp": false,
|
|
3052
2956
|
"multiple": false,
|
|
3053
2957
|
"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
2958
|
}
|
|
3062
2959
|
},
|
|
3063
2960
|
"hasDynamicHelp": false,
|
|
3064
2961
|
"hiddenAliases": [],
|
|
3065
|
-
"id": "
|
|
2962
|
+
"id": "team:get",
|
|
3066
2963
|
"pluginAlias": "faces-cli",
|
|
3067
2964
|
"pluginName": "faces-cli",
|
|
3068
2965
|
"pluginType": "core",
|
|
@@ -3072,14 +2969,14 @@
|
|
|
3072
2969
|
"relativePath": [
|
|
3073
2970
|
"dist",
|
|
3074
2971
|
"commands",
|
|
3075
|
-
"
|
|
2972
|
+
"team",
|
|
3076
2973
|
"get.js"
|
|
3077
2974
|
]
|
|
3078
2975
|
},
|
|
3079
|
-
"
|
|
2976
|
+
"team:list": {
|
|
3080
2977
|
"aliases": [],
|
|
3081
2978
|
"args": {},
|
|
3082
|
-
"description": "List
|
|
2979
|
+
"description": "List your teams",
|
|
3083
2980
|
"flags": {
|
|
3084
2981
|
"json": {
|
|
3085
2982
|
"description": "Format output as json.",
|
|
@@ -3111,32 +3008,11 @@
|
|
|
3111
3008
|
"hasDynamicHelp": false,
|
|
3112
3009
|
"multiple": false,
|
|
3113
3010
|
"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
3011
|
}
|
|
3136
3012
|
},
|
|
3137
3013
|
"hasDynamicHelp": false,
|
|
3138
3014
|
"hiddenAliases": [],
|
|
3139
|
-
"id": "
|
|
3015
|
+
"id": "team:list",
|
|
3140
3016
|
"pluginAlias": "faces-cli",
|
|
3141
3017
|
"pluginName": "faces-cli",
|
|
3142
3018
|
"pluginType": "core",
|
|
@@ -3146,20 +3022,20 @@
|
|
|
3146
3022
|
"relativePath": [
|
|
3147
3023
|
"dist",
|
|
3148
3024
|
"commands",
|
|
3149
|
-
"
|
|
3025
|
+
"team",
|
|
3150
3026
|
"list.js"
|
|
3151
3027
|
]
|
|
3152
3028
|
},
|
|
3153
|
-
"
|
|
3029
|
+
"team:members": {
|
|
3154
3030
|
"aliases": [],
|
|
3155
3031
|
"args": {
|
|
3156
|
-
"
|
|
3157
|
-
"description": "
|
|
3158
|
-
"name": "
|
|
3032
|
+
"team_id": {
|
|
3033
|
+
"description": "Team ID",
|
|
3034
|
+
"name": "team_id",
|
|
3159
3035
|
"required": true
|
|
3160
3036
|
}
|
|
3161
3037
|
},
|
|
3162
|
-
"description": "
|
|
3038
|
+
"description": "List members of a team",
|
|
3163
3039
|
"flags": {
|
|
3164
3040
|
"json": {
|
|
3165
3041
|
"description": "Format output as json.",
|
|
@@ -3191,45 +3067,75 @@
|
|
|
3191
3067
|
"hasDynamicHelp": false,
|
|
3192
3068
|
"multiple": false,
|
|
3193
3069
|
"type": "option"
|
|
3070
|
+
}
|
|
3071
|
+
},
|
|
3072
|
+
"hasDynamicHelp": false,
|
|
3073
|
+
"hiddenAliases": [],
|
|
3074
|
+
"id": "team:members",
|
|
3075
|
+
"pluginAlias": "faces-cli",
|
|
3076
|
+
"pluginName": "faces-cli",
|
|
3077
|
+
"pluginType": "core",
|
|
3078
|
+
"strict": true,
|
|
3079
|
+
"enableJsonFlag": true,
|
|
3080
|
+
"isESM": true,
|
|
3081
|
+
"relativePath": [
|
|
3082
|
+
"dist",
|
|
3083
|
+
"commands",
|
|
3084
|
+
"team",
|
|
3085
|
+
"members.js"
|
|
3086
|
+
]
|
|
3087
|
+
},
|
|
3088
|
+
"team:remove": {
|
|
3089
|
+
"aliases": [],
|
|
3090
|
+
"args": {
|
|
3091
|
+
"team_id": {
|
|
3092
|
+
"description": "Team ID",
|
|
3093
|
+
"name": "team_id",
|
|
3094
|
+
"required": true
|
|
3194
3095
|
},
|
|
3195
|
-
"
|
|
3196
|
-
"description": "
|
|
3197
|
-
"name": "
|
|
3198
|
-
"
|
|
3096
|
+
"alias": {
|
|
3097
|
+
"description": "Face alias to remove",
|
|
3098
|
+
"name": "alias",
|
|
3099
|
+
"required": true
|
|
3100
|
+
}
|
|
3101
|
+
},
|
|
3102
|
+
"description": "Remove a face from a team",
|
|
3103
|
+
"flags": {
|
|
3104
|
+
"json": {
|
|
3105
|
+
"description": "Format output as json.",
|
|
3106
|
+
"helpGroup": "GLOBAL",
|
|
3107
|
+
"name": "json",
|
|
3108
|
+
"allowNo": false,
|
|
3109
|
+
"type": "boolean"
|
|
3110
|
+
},
|
|
3111
|
+
"base-url": {
|
|
3112
|
+
"description": "API base URL",
|
|
3113
|
+
"env": "FACES_BASE_URL",
|
|
3114
|
+
"name": "base-url",
|
|
3199
3115
|
"hasDynamicHelp": false,
|
|
3200
3116
|
"multiple": false,
|
|
3201
3117
|
"type": "option"
|
|
3202
3118
|
},
|
|
3203
|
-
"
|
|
3204
|
-
"description": "
|
|
3205
|
-
"
|
|
3206
|
-
"
|
|
3119
|
+
"token": {
|
|
3120
|
+
"description": "JWT bearer token",
|
|
3121
|
+
"env": "FACES_TOKEN",
|
|
3122
|
+
"name": "token",
|
|
3207
3123
|
"hasDynamicHelp": false,
|
|
3208
3124
|
"multiple": false,
|
|
3209
|
-
"options": [
|
|
3210
|
-
"face",
|
|
3211
|
-
"beta",
|
|
3212
|
-
"delta",
|
|
3213
|
-
"epsilon"
|
|
3214
|
-
],
|
|
3215
3125
|
"type": "option"
|
|
3216
3126
|
},
|
|
3217
|
-
"
|
|
3218
|
-
"description": "
|
|
3219
|
-
"
|
|
3220
|
-
"
|
|
3127
|
+
"api-key": {
|
|
3128
|
+
"description": "API key",
|
|
3129
|
+
"env": "FACES_API_KEY",
|
|
3130
|
+
"name": "api-key",
|
|
3221
3131
|
"hasDynamicHelp": false,
|
|
3222
3132
|
"multiple": false,
|
|
3223
|
-
"options": [
|
|
3224
|
-
"nearest",
|
|
3225
|
-
"furthest"
|
|
3226
|
-
],
|
|
3227
3133
|
"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.
|
|
6043
|
+
"version": "1.7.0"
|
|
6050
6044
|
}
|