faces-cli 1.0.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.
Files changed (94) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +50 -0
  3. package/bin/dev.js +5 -0
  4. package/bin/run.js +5 -0
  5. package/dist/base.d.ts +16 -0
  6. package/dist/base.js +53 -0
  7. package/dist/client.d.ts +36 -0
  8. package/dist/client.js +191 -0
  9. package/dist/commands/account/state.d.ts +10 -0
  10. package/dist/commands/account/state.js +24 -0
  11. package/dist/commands/auth/login.d.ts +12 -0
  12. package/dist/commands/auth/login.js +40 -0
  13. package/dist/commands/auth/logout.d.ts +10 -0
  14. package/dist/commands/auth/logout.js +14 -0
  15. package/dist/commands/auth/refresh.d.ts +10 -0
  16. package/dist/commands/auth/refresh.js +30 -0
  17. package/dist/commands/auth/register.d.ts +15 -0
  18. package/dist/commands/auth/register.js +45 -0
  19. package/dist/commands/auth/whoami.d.ts +10 -0
  20. package/dist/commands/auth/whoami.js +24 -0
  21. package/dist/commands/billing/balance.d.ts +10 -0
  22. package/dist/commands/billing/balance.js +24 -0
  23. package/dist/commands/billing/card-setup.d.ts +10 -0
  24. package/dist/commands/billing/card-setup.js +24 -0
  25. package/dist/commands/billing/checkout.d.ts +11 -0
  26. package/dist/commands/billing/checkout.js +30 -0
  27. package/dist/commands/billing/llm-costs.d.ts +11 -0
  28. package/dist/commands/billing/llm-costs.js +29 -0
  29. package/dist/commands/billing/quota.d.ts +10 -0
  30. package/dist/commands/billing/quota.js +24 -0
  31. package/dist/commands/billing/subscription.d.ts +10 -0
  32. package/dist/commands/billing/subscription.js +24 -0
  33. package/dist/commands/billing/topup.d.ts +12 -0
  34. package/dist/commands/billing/topup.js +33 -0
  35. package/dist/commands/billing/usage.d.ts +13 -0
  36. package/dist/commands/billing/usage.js +38 -0
  37. package/dist/commands/chat/chat.d.ts +20 -0
  38. package/dist/commands/chat/chat.js +81 -0
  39. package/dist/commands/chat/messages.d.ts +17 -0
  40. package/dist/commands/chat/messages.js +68 -0
  41. package/dist/commands/chat/responses.d.ts +16 -0
  42. package/dist/commands/chat/responses.js +67 -0
  43. package/dist/commands/compile/doc/create.d.ts +16 -0
  44. package/dist/commands/compile/doc/create.js +43 -0
  45. package/dist/commands/compile/doc/delete.d.ts +13 -0
  46. package/dist/commands/compile/doc/delete.js +28 -0
  47. package/dist/commands/compile/doc/get.d.ts +13 -0
  48. package/dist/commands/compile/doc/get.js +28 -0
  49. package/dist/commands/compile/doc/list.d.ts +13 -0
  50. package/dist/commands/compile/doc/list.js +28 -0
  51. package/dist/commands/compile/doc/prepare.d.ts +13 -0
  52. package/dist/commands/compile/doc/prepare.js +28 -0
  53. package/dist/commands/compile/doc/sync.d.ts +15 -0
  54. package/dist/commands/compile/doc/sync.js +44 -0
  55. package/dist/commands/compile/thread/create.d.ts +14 -0
  56. package/dist/commands/compile/thread/create.js +32 -0
  57. package/dist/commands/compile/thread/list.d.ts +13 -0
  58. package/dist/commands/compile/thread/list.js +28 -0
  59. package/dist/commands/compile/thread/message.d.ts +14 -0
  60. package/dist/commands/compile/thread/message.js +31 -0
  61. package/dist/commands/compile/thread/sync.d.ts +13 -0
  62. package/dist/commands/compile/thread/sync.js +28 -0
  63. package/dist/commands/config/clear.d.ts +12 -0
  64. package/dist/commands/config/clear.js +31 -0
  65. package/dist/commands/config/set.d.ts +14 -0
  66. package/dist/commands/config/set.js +19 -0
  67. package/dist/commands/config/show.d.ts +10 -0
  68. package/dist/commands/config/show.js +19 -0
  69. package/dist/commands/face/create.d.ts +15 -0
  70. package/dist/commands/face/create.js +42 -0
  71. package/dist/commands/face/delete.d.ts +15 -0
  72. package/dist/commands/face/delete.js +44 -0
  73. package/dist/commands/face/get.d.ts +13 -0
  74. package/dist/commands/face/get.js +28 -0
  75. package/dist/commands/face/list.d.ts +10 -0
  76. package/dist/commands/face/list.js +24 -0
  77. package/dist/commands/face/stats.d.ts +10 -0
  78. package/dist/commands/face/stats.js +24 -0
  79. package/dist/commands/face/update.d.ts +16 -0
  80. package/dist/commands/face/update.js +48 -0
  81. package/dist/commands/face/upload.d.ts +15 -0
  82. package/dist/commands/face/upload.js +43 -0
  83. package/dist/commands/keys/create.d.ts +15 -0
  84. package/dist/commands/keys/create.js +39 -0
  85. package/dist/commands/keys/list.d.ts +10 -0
  86. package/dist/commands/keys/list.js +24 -0
  87. package/dist/commands/keys/revoke.d.ts +15 -0
  88. package/dist/commands/keys/revoke.js +44 -0
  89. package/dist/commands/keys/update.d.ts +16 -0
  90. package/dist/commands/keys/update.js +40 -0
  91. package/dist/config.d.ts +16 -0
  92. package/dist/config.js +65 -0
  93. package/oclif.manifest.json +2719 -0
  94. package/package.json +55 -0
@@ -0,0 +1,2719 @@
1
+ {
2
+ "commands": {
3
+ "account:state": {
4
+ "aliases": [],
5
+ "args": {},
6
+ "description": "Full account routing state (plan, balance, onboarding)",
7
+ "flags": {
8
+ "json": {
9
+ "description": "Format output as json.",
10
+ "helpGroup": "GLOBAL",
11
+ "name": "json",
12
+ "allowNo": false,
13
+ "type": "boolean"
14
+ },
15
+ "base-url": {
16
+ "description": "API base URL",
17
+ "env": "FACES_BASE_URL",
18
+ "name": "base-url",
19
+ "hasDynamicHelp": false,
20
+ "multiple": false,
21
+ "type": "option"
22
+ },
23
+ "token": {
24
+ "description": "JWT bearer token",
25
+ "env": "FACES_TOKEN",
26
+ "name": "token",
27
+ "hasDynamicHelp": false,
28
+ "multiple": false,
29
+ "type": "option"
30
+ },
31
+ "api-key": {
32
+ "description": "API key",
33
+ "env": "FACES_API_KEY",
34
+ "name": "api-key",
35
+ "hasDynamicHelp": false,
36
+ "multiple": false,
37
+ "type": "option"
38
+ }
39
+ },
40
+ "hasDynamicHelp": false,
41
+ "hiddenAliases": [],
42
+ "id": "account:state",
43
+ "pluginAlias": "faces-cli",
44
+ "pluginName": "faces-cli",
45
+ "pluginType": "core",
46
+ "strict": true,
47
+ "enableJsonFlag": true,
48
+ "isESM": true,
49
+ "relativePath": [
50
+ "dist",
51
+ "commands",
52
+ "account",
53
+ "state.js"
54
+ ]
55
+ },
56
+ "auth:login": {
57
+ "aliases": [],
58
+ "args": {},
59
+ "description": "Login and save JWT credentials",
60
+ "flags": {
61
+ "json": {
62
+ "description": "Format output as json.",
63
+ "helpGroup": "GLOBAL",
64
+ "name": "json",
65
+ "allowNo": false,
66
+ "type": "boolean"
67
+ },
68
+ "base-url": {
69
+ "description": "API base URL",
70
+ "env": "FACES_BASE_URL",
71
+ "name": "base-url",
72
+ "hasDynamicHelp": false,
73
+ "multiple": false,
74
+ "type": "option"
75
+ },
76
+ "token": {
77
+ "description": "JWT bearer token",
78
+ "env": "FACES_TOKEN",
79
+ "name": "token",
80
+ "hasDynamicHelp": false,
81
+ "multiple": false,
82
+ "type": "option"
83
+ },
84
+ "api-key": {
85
+ "description": "API key",
86
+ "env": "FACES_API_KEY",
87
+ "name": "api-key",
88
+ "hasDynamicHelp": false,
89
+ "multiple": false,
90
+ "type": "option"
91
+ },
92
+ "email": {
93
+ "description": "Account email",
94
+ "name": "email",
95
+ "required": true,
96
+ "hasDynamicHelp": false,
97
+ "multiple": false,
98
+ "type": "option"
99
+ },
100
+ "password": {
101
+ "description": "Account password",
102
+ "name": "password",
103
+ "required": true,
104
+ "hasDynamicHelp": false,
105
+ "multiple": false,
106
+ "type": "option"
107
+ }
108
+ },
109
+ "hasDynamicHelp": false,
110
+ "hiddenAliases": [],
111
+ "id": "auth:login",
112
+ "pluginAlias": "faces-cli",
113
+ "pluginName": "faces-cli",
114
+ "pluginType": "core",
115
+ "strict": true,
116
+ "enableJsonFlag": true,
117
+ "isESM": true,
118
+ "relativePath": [
119
+ "dist",
120
+ "commands",
121
+ "auth",
122
+ "login.js"
123
+ ]
124
+ },
125
+ "auth:logout": {
126
+ "aliases": [],
127
+ "args": {},
128
+ "description": "Clear saved credentials",
129
+ "flags": {
130
+ "json": {
131
+ "description": "Format output as json.",
132
+ "helpGroup": "GLOBAL",
133
+ "name": "json",
134
+ "allowNo": false,
135
+ "type": "boolean"
136
+ },
137
+ "base-url": {
138
+ "description": "API base URL",
139
+ "env": "FACES_BASE_URL",
140
+ "name": "base-url",
141
+ "hasDynamicHelp": false,
142
+ "multiple": false,
143
+ "type": "option"
144
+ },
145
+ "token": {
146
+ "description": "JWT bearer token",
147
+ "env": "FACES_TOKEN",
148
+ "name": "token",
149
+ "hasDynamicHelp": false,
150
+ "multiple": false,
151
+ "type": "option"
152
+ },
153
+ "api-key": {
154
+ "description": "API key",
155
+ "env": "FACES_API_KEY",
156
+ "name": "api-key",
157
+ "hasDynamicHelp": false,
158
+ "multiple": false,
159
+ "type": "option"
160
+ }
161
+ },
162
+ "hasDynamicHelp": false,
163
+ "hiddenAliases": [],
164
+ "id": "auth:logout",
165
+ "pluginAlias": "faces-cli",
166
+ "pluginName": "faces-cli",
167
+ "pluginType": "core",
168
+ "strict": true,
169
+ "enableJsonFlag": true,
170
+ "isESM": true,
171
+ "relativePath": [
172
+ "dist",
173
+ "commands",
174
+ "auth",
175
+ "logout.js"
176
+ ]
177
+ },
178
+ "auth:refresh": {
179
+ "aliases": [],
180
+ "args": {},
181
+ "description": "Exchange current JWT for a fresh one",
182
+ "flags": {
183
+ "json": {
184
+ "description": "Format output as json.",
185
+ "helpGroup": "GLOBAL",
186
+ "name": "json",
187
+ "allowNo": false,
188
+ "type": "boolean"
189
+ },
190
+ "base-url": {
191
+ "description": "API base URL",
192
+ "env": "FACES_BASE_URL",
193
+ "name": "base-url",
194
+ "hasDynamicHelp": false,
195
+ "multiple": false,
196
+ "type": "option"
197
+ },
198
+ "token": {
199
+ "description": "JWT bearer token",
200
+ "env": "FACES_TOKEN",
201
+ "name": "token",
202
+ "hasDynamicHelp": false,
203
+ "multiple": false,
204
+ "type": "option"
205
+ },
206
+ "api-key": {
207
+ "description": "API key",
208
+ "env": "FACES_API_KEY",
209
+ "name": "api-key",
210
+ "hasDynamicHelp": false,
211
+ "multiple": false,
212
+ "type": "option"
213
+ }
214
+ },
215
+ "hasDynamicHelp": false,
216
+ "hiddenAliases": [],
217
+ "id": "auth:refresh",
218
+ "pluginAlias": "faces-cli",
219
+ "pluginName": "faces-cli",
220
+ "pluginType": "core",
221
+ "strict": true,
222
+ "enableJsonFlag": true,
223
+ "isESM": true,
224
+ "relativePath": [
225
+ "dist",
226
+ "commands",
227
+ "auth",
228
+ "refresh.js"
229
+ ]
230
+ },
231
+ "auth:register": {
232
+ "aliases": [],
233
+ "args": {},
234
+ "description": "Create a new Faces account",
235
+ "flags": {
236
+ "json": {
237
+ "description": "Format output as json.",
238
+ "helpGroup": "GLOBAL",
239
+ "name": "json",
240
+ "allowNo": false,
241
+ "type": "boolean"
242
+ },
243
+ "base-url": {
244
+ "description": "API base URL",
245
+ "env": "FACES_BASE_URL",
246
+ "name": "base-url",
247
+ "hasDynamicHelp": false,
248
+ "multiple": false,
249
+ "type": "option"
250
+ },
251
+ "token": {
252
+ "description": "JWT bearer token",
253
+ "env": "FACES_TOKEN",
254
+ "name": "token",
255
+ "hasDynamicHelp": false,
256
+ "multiple": false,
257
+ "type": "option"
258
+ },
259
+ "api-key": {
260
+ "description": "API key",
261
+ "env": "FACES_API_KEY",
262
+ "name": "api-key",
263
+ "hasDynamicHelp": false,
264
+ "multiple": false,
265
+ "type": "option"
266
+ },
267
+ "email": {
268
+ "description": "Email address",
269
+ "name": "email",
270
+ "required": true,
271
+ "hasDynamicHelp": false,
272
+ "multiple": false,
273
+ "type": "option"
274
+ },
275
+ "password": {
276
+ "description": "Password",
277
+ "name": "password",
278
+ "required": true,
279
+ "hasDynamicHelp": false,
280
+ "multiple": false,
281
+ "type": "option"
282
+ },
283
+ "name": {
284
+ "description": "Display name",
285
+ "name": "name",
286
+ "required": true,
287
+ "hasDynamicHelp": false,
288
+ "multiple": false,
289
+ "type": "option"
290
+ },
291
+ "username": {
292
+ "description": "Username (lowercase, dashes, numbers)",
293
+ "name": "username",
294
+ "required": true,
295
+ "hasDynamicHelp": false,
296
+ "multiple": false,
297
+ "type": "option"
298
+ },
299
+ "invite-key": {
300
+ "description": "Invite key (if required)",
301
+ "name": "invite-key",
302
+ "hasDynamicHelp": false,
303
+ "multiple": false,
304
+ "type": "option"
305
+ }
306
+ },
307
+ "hasDynamicHelp": false,
308
+ "hiddenAliases": [],
309
+ "id": "auth:register",
310
+ "pluginAlias": "faces-cli",
311
+ "pluginName": "faces-cli",
312
+ "pluginType": "core",
313
+ "strict": true,
314
+ "enableJsonFlag": true,
315
+ "isESM": true,
316
+ "relativePath": [
317
+ "dist",
318
+ "commands",
319
+ "auth",
320
+ "register.js"
321
+ ]
322
+ },
323
+ "auth:whoami": {
324
+ "aliases": [],
325
+ "args": {},
326
+ "description": "Print current user profile",
327
+ "flags": {
328
+ "json": {
329
+ "description": "Format output as json.",
330
+ "helpGroup": "GLOBAL",
331
+ "name": "json",
332
+ "allowNo": false,
333
+ "type": "boolean"
334
+ },
335
+ "base-url": {
336
+ "description": "API base URL",
337
+ "env": "FACES_BASE_URL",
338
+ "name": "base-url",
339
+ "hasDynamicHelp": false,
340
+ "multiple": false,
341
+ "type": "option"
342
+ },
343
+ "token": {
344
+ "description": "JWT bearer token",
345
+ "env": "FACES_TOKEN",
346
+ "name": "token",
347
+ "hasDynamicHelp": false,
348
+ "multiple": false,
349
+ "type": "option"
350
+ },
351
+ "api-key": {
352
+ "description": "API key",
353
+ "env": "FACES_API_KEY",
354
+ "name": "api-key",
355
+ "hasDynamicHelp": false,
356
+ "multiple": false,
357
+ "type": "option"
358
+ }
359
+ },
360
+ "hasDynamicHelp": false,
361
+ "hiddenAliases": [],
362
+ "id": "auth:whoami",
363
+ "pluginAlias": "faces-cli",
364
+ "pluginName": "faces-cli",
365
+ "pluginType": "core",
366
+ "strict": true,
367
+ "enableJsonFlag": true,
368
+ "isESM": true,
369
+ "relativePath": [
370
+ "dist",
371
+ "commands",
372
+ "auth",
373
+ "whoami.js"
374
+ ]
375
+ },
376
+ "chat:chat": {
377
+ "aliases": [],
378
+ "args": {
379
+ "face_username": {
380
+ "description": "Face username",
381
+ "name": "face_username",
382
+ "required": true
383
+ }
384
+ },
385
+ "description": "OpenAI-compatible chat completion via a face",
386
+ "flags": {
387
+ "json": {
388
+ "description": "Format output as json.",
389
+ "helpGroup": "GLOBAL",
390
+ "name": "json",
391
+ "allowNo": false,
392
+ "type": "boolean"
393
+ },
394
+ "base-url": {
395
+ "description": "API base URL",
396
+ "env": "FACES_BASE_URL",
397
+ "name": "base-url",
398
+ "hasDynamicHelp": false,
399
+ "multiple": false,
400
+ "type": "option"
401
+ },
402
+ "token": {
403
+ "description": "JWT bearer token",
404
+ "env": "FACES_TOKEN",
405
+ "name": "token",
406
+ "hasDynamicHelp": false,
407
+ "multiple": false,
408
+ "type": "option"
409
+ },
410
+ "api-key": {
411
+ "description": "API key",
412
+ "env": "FACES_API_KEY",
413
+ "name": "api-key",
414
+ "hasDynamicHelp": false,
415
+ "multiple": false,
416
+ "type": "option"
417
+ },
418
+ "message": {
419
+ "char": "m",
420
+ "description": "User message (repeatable)",
421
+ "name": "message",
422
+ "required": false,
423
+ "hasDynamicHelp": false,
424
+ "multiple": true,
425
+ "type": "option"
426
+ },
427
+ "llm": {
428
+ "description": "LLM override (e.g. claude-sonnet-4-6)",
429
+ "name": "llm",
430
+ "hasDynamicHelp": false,
431
+ "multiple": false,
432
+ "type": "option"
433
+ },
434
+ "system": {
435
+ "description": "System prompt override",
436
+ "name": "system",
437
+ "hasDynamicHelp": false,
438
+ "multiple": false,
439
+ "type": "option"
440
+ },
441
+ "stream": {
442
+ "description": "Stream the response",
443
+ "name": "stream",
444
+ "allowNo": false,
445
+ "type": "boolean"
446
+ },
447
+ "max-tokens": {
448
+ "description": "Max tokens",
449
+ "name": "max-tokens",
450
+ "hasDynamicHelp": false,
451
+ "multiple": false,
452
+ "type": "option"
453
+ },
454
+ "temperature": {
455
+ "description": "Temperature (0.0-2.0)",
456
+ "name": "temperature",
457
+ "hasDynamicHelp": false,
458
+ "multiple": false,
459
+ "type": "option"
460
+ },
461
+ "file": {
462
+ "description": "Read message from file",
463
+ "name": "file",
464
+ "hasDynamicHelp": false,
465
+ "multiple": false,
466
+ "type": "option"
467
+ }
468
+ },
469
+ "hasDynamicHelp": false,
470
+ "hiddenAliases": [],
471
+ "id": "chat:chat",
472
+ "pluginAlias": "faces-cli",
473
+ "pluginName": "faces-cli",
474
+ "pluginType": "core",
475
+ "strict": true,
476
+ "enableJsonFlag": true,
477
+ "isESM": true,
478
+ "relativePath": [
479
+ "dist",
480
+ "commands",
481
+ "chat",
482
+ "chat.js"
483
+ ]
484
+ },
485
+ "chat:messages": {
486
+ "aliases": [],
487
+ "args": {
488
+ "face_model": {
489
+ "description": "Face model (e.g. myface or myface@claude-sonnet-4-6)",
490
+ "name": "face_model",
491
+ "required": true
492
+ }
493
+ },
494
+ "description": "Anthropic Messages API proxy via a face (e.g. face@claude-sonnet-4-6)",
495
+ "flags": {
496
+ "json": {
497
+ "description": "Format output as json.",
498
+ "helpGroup": "GLOBAL",
499
+ "name": "json",
500
+ "allowNo": false,
501
+ "type": "boolean"
502
+ },
503
+ "base-url": {
504
+ "description": "API base URL",
505
+ "env": "FACES_BASE_URL",
506
+ "name": "base-url",
507
+ "hasDynamicHelp": false,
508
+ "multiple": false,
509
+ "type": "option"
510
+ },
511
+ "token": {
512
+ "description": "JWT bearer token",
513
+ "env": "FACES_TOKEN",
514
+ "name": "token",
515
+ "hasDynamicHelp": false,
516
+ "multiple": false,
517
+ "type": "option"
518
+ },
519
+ "api-key": {
520
+ "description": "API key",
521
+ "env": "FACES_API_KEY",
522
+ "name": "api-key",
523
+ "hasDynamicHelp": false,
524
+ "multiple": false,
525
+ "type": "option"
526
+ },
527
+ "message": {
528
+ "char": "m",
529
+ "description": "User message (repeatable)",
530
+ "name": "message",
531
+ "required": true,
532
+ "hasDynamicHelp": false,
533
+ "multiple": true,
534
+ "type": "option"
535
+ },
536
+ "system": {
537
+ "description": "System prompt",
538
+ "name": "system",
539
+ "hasDynamicHelp": false,
540
+ "multiple": false,
541
+ "type": "option"
542
+ },
543
+ "stream": {
544
+ "description": "Stream the response",
545
+ "name": "stream",
546
+ "allowNo": false,
547
+ "type": "boolean"
548
+ },
549
+ "max-tokens": {
550
+ "description": "Max tokens",
551
+ "name": "max-tokens",
552
+ "default": 1024,
553
+ "hasDynamicHelp": false,
554
+ "multiple": false,
555
+ "type": "option"
556
+ }
557
+ },
558
+ "hasDynamicHelp": false,
559
+ "hiddenAliases": [],
560
+ "id": "chat:messages",
561
+ "pluginAlias": "faces-cli",
562
+ "pluginName": "faces-cli",
563
+ "pluginType": "core",
564
+ "strict": true,
565
+ "enableJsonFlag": true,
566
+ "isESM": true,
567
+ "relativePath": [
568
+ "dist",
569
+ "commands",
570
+ "chat",
571
+ "messages.js"
572
+ ]
573
+ },
574
+ "chat:responses": {
575
+ "aliases": [],
576
+ "args": {
577
+ "face_model": {
578
+ "description": "Face model (e.g. myface or myface@gpt-4o)",
579
+ "name": "face_model",
580
+ "required": true
581
+ }
582
+ },
583
+ "description": "OpenAI Responses API proxy via a face",
584
+ "flags": {
585
+ "json": {
586
+ "description": "Format output as json.",
587
+ "helpGroup": "GLOBAL",
588
+ "name": "json",
589
+ "allowNo": false,
590
+ "type": "boolean"
591
+ },
592
+ "base-url": {
593
+ "description": "API base URL",
594
+ "env": "FACES_BASE_URL",
595
+ "name": "base-url",
596
+ "hasDynamicHelp": false,
597
+ "multiple": false,
598
+ "type": "option"
599
+ },
600
+ "token": {
601
+ "description": "JWT bearer token",
602
+ "env": "FACES_TOKEN",
603
+ "name": "token",
604
+ "hasDynamicHelp": false,
605
+ "multiple": false,
606
+ "type": "option"
607
+ },
608
+ "api-key": {
609
+ "description": "API key",
610
+ "env": "FACES_API_KEY",
611
+ "name": "api-key",
612
+ "hasDynamicHelp": false,
613
+ "multiple": false,
614
+ "type": "option"
615
+ },
616
+ "message": {
617
+ "char": "m",
618
+ "description": "User input message",
619
+ "name": "message",
620
+ "required": true,
621
+ "hasDynamicHelp": false,
622
+ "multiple": false,
623
+ "type": "option"
624
+ },
625
+ "instructions": {
626
+ "description": "System instructions",
627
+ "name": "instructions",
628
+ "hasDynamicHelp": false,
629
+ "multiple": false,
630
+ "type": "option"
631
+ },
632
+ "stream": {
633
+ "description": "Stream the response",
634
+ "name": "stream",
635
+ "allowNo": false,
636
+ "type": "boolean"
637
+ }
638
+ },
639
+ "hasDynamicHelp": false,
640
+ "hiddenAliases": [],
641
+ "id": "chat:responses",
642
+ "pluginAlias": "faces-cli",
643
+ "pluginName": "faces-cli",
644
+ "pluginType": "core",
645
+ "strict": true,
646
+ "enableJsonFlag": true,
647
+ "isESM": true,
648
+ "relativePath": [
649
+ "dist",
650
+ "commands",
651
+ "chat",
652
+ "responses.js"
653
+ ]
654
+ },
655
+ "billing:balance": {
656
+ "aliases": [],
657
+ "args": {},
658
+ "description": "Show credit balance and payment method status",
659
+ "flags": {
660
+ "json": {
661
+ "description": "Format output as json.",
662
+ "helpGroup": "GLOBAL",
663
+ "name": "json",
664
+ "allowNo": false,
665
+ "type": "boolean"
666
+ },
667
+ "base-url": {
668
+ "description": "API base URL",
669
+ "env": "FACES_BASE_URL",
670
+ "name": "base-url",
671
+ "hasDynamicHelp": false,
672
+ "multiple": false,
673
+ "type": "option"
674
+ },
675
+ "token": {
676
+ "description": "JWT bearer token",
677
+ "env": "FACES_TOKEN",
678
+ "name": "token",
679
+ "hasDynamicHelp": false,
680
+ "multiple": false,
681
+ "type": "option"
682
+ },
683
+ "api-key": {
684
+ "description": "API key",
685
+ "env": "FACES_API_KEY",
686
+ "name": "api-key",
687
+ "hasDynamicHelp": false,
688
+ "multiple": false,
689
+ "type": "option"
690
+ }
691
+ },
692
+ "hasDynamicHelp": false,
693
+ "hiddenAliases": [],
694
+ "id": "billing:balance",
695
+ "pluginAlias": "faces-cli",
696
+ "pluginName": "faces-cli",
697
+ "pluginType": "core",
698
+ "strict": true,
699
+ "enableJsonFlag": true,
700
+ "isESM": true,
701
+ "relativePath": [
702
+ "dist",
703
+ "commands",
704
+ "billing",
705
+ "balance.js"
706
+ ]
707
+ },
708
+ "billing:card-setup": {
709
+ "aliases": [],
710
+ "args": {},
711
+ "description": "Get a Stripe card setup URL to save a payment method",
712
+ "flags": {
713
+ "json": {
714
+ "description": "Format output as json.",
715
+ "helpGroup": "GLOBAL",
716
+ "name": "json",
717
+ "allowNo": false,
718
+ "type": "boolean"
719
+ },
720
+ "base-url": {
721
+ "description": "API base URL",
722
+ "env": "FACES_BASE_URL",
723
+ "name": "base-url",
724
+ "hasDynamicHelp": false,
725
+ "multiple": false,
726
+ "type": "option"
727
+ },
728
+ "token": {
729
+ "description": "JWT bearer token",
730
+ "env": "FACES_TOKEN",
731
+ "name": "token",
732
+ "hasDynamicHelp": false,
733
+ "multiple": false,
734
+ "type": "option"
735
+ },
736
+ "api-key": {
737
+ "description": "API key",
738
+ "env": "FACES_API_KEY",
739
+ "name": "api-key",
740
+ "hasDynamicHelp": false,
741
+ "multiple": false,
742
+ "type": "option"
743
+ }
744
+ },
745
+ "hasDynamicHelp": false,
746
+ "hiddenAliases": [],
747
+ "id": "billing:card-setup",
748
+ "pluginAlias": "faces-cli",
749
+ "pluginName": "faces-cli",
750
+ "pluginType": "core",
751
+ "strict": true,
752
+ "enableJsonFlag": true,
753
+ "isESM": true,
754
+ "relativePath": [
755
+ "dist",
756
+ "commands",
757
+ "billing",
758
+ "card-setup.js"
759
+ ]
760
+ },
761
+ "billing:checkout": {
762
+ "aliases": [],
763
+ "args": {},
764
+ "description": "Get a Stripe checkout URL to upgrade your subscription plan",
765
+ "flags": {
766
+ "json": {
767
+ "description": "Format output as json.",
768
+ "helpGroup": "GLOBAL",
769
+ "name": "json",
770
+ "allowNo": false,
771
+ "type": "boolean"
772
+ },
773
+ "base-url": {
774
+ "description": "API base URL",
775
+ "env": "FACES_BASE_URL",
776
+ "name": "base-url",
777
+ "hasDynamicHelp": false,
778
+ "multiple": false,
779
+ "type": "option"
780
+ },
781
+ "token": {
782
+ "description": "JWT bearer token",
783
+ "env": "FACES_TOKEN",
784
+ "name": "token",
785
+ "hasDynamicHelp": false,
786
+ "multiple": false,
787
+ "type": "option"
788
+ },
789
+ "api-key": {
790
+ "description": "API key",
791
+ "env": "FACES_API_KEY",
792
+ "name": "api-key",
793
+ "hasDynamicHelp": false,
794
+ "multiple": false,
795
+ "type": "option"
796
+ },
797
+ "plan": {
798
+ "description": "Plan to upgrade to",
799
+ "name": "plan",
800
+ "required": true,
801
+ "hasDynamicHelp": false,
802
+ "multiple": false,
803
+ "options": [
804
+ "standard",
805
+ "pro"
806
+ ],
807
+ "type": "option"
808
+ }
809
+ },
810
+ "hasDynamicHelp": false,
811
+ "hiddenAliases": [],
812
+ "id": "billing:checkout",
813
+ "pluginAlias": "faces-cli",
814
+ "pluginName": "faces-cli",
815
+ "pluginType": "core",
816
+ "strict": true,
817
+ "enableJsonFlag": true,
818
+ "isESM": true,
819
+ "relativePath": [
820
+ "dist",
821
+ "commands",
822
+ "billing",
823
+ "checkout.js"
824
+ ]
825
+ },
826
+ "billing:llm-costs": {
827
+ "aliases": [],
828
+ "args": {},
829
+ "description": "List available LLMs and their per-token costs",
830
+ "flags": {
831
+ "json": {
832
+ "description": "Format output as json.",
833
+ "helpGroup": "GLOBAL",
834
+ "name": "json",
835
+ "allowNo": false,
836
+ "type": "boolean"
837
+ },
838
+ "base-url": {
839
+ "description": "API base URL",
840
+ "env": "FACES_BASE_URL",
841
+ "name": "base-url",
842
+ "hasDynamicHelp": false,
843
+ "multiple": false,
844
+ "type": "option"
845
+ },
846
+ "token": {
847
+ "description": "JWT bearer token",
848
+ "env": "FACES_TOKEN",
849
+ "name": "token",
850
+ "hasDynamicHelp": false,
851
+ "multiple": false,
852
+ "type": "option"
853
+ },
854
+ "api-key": {
855
+ "description": "API key",
856
+ "env": "FACES_API_KEY",
857
+ "name": "api-key",
858
+ "hasDynamicHelp": false,
859
+ "multiple": false,
860
+ "type": "option"
861
+ },
862
+ "provider": {
863
+ "description": "Filter by provider (e.g. openai, anthropic)",
864
+ "name": "provider",
865
+ "hasDynamicHelp": false,
866
+ "multiple": false,
867
+ "type": "option"
868
+ }
869
+ },
870
+ "hasDynamicHelp": false,
871
+ "hiddenAliases": [],
872
+ "id": "billing:llm-costs",
873
+ "pluginAlias": "faces-cli",
874
+ "pluginName": "faces-cli",
875
+ "pluginType": "core",
876
+ "strict": true,
877
+ "enableJsonFlag": true,
878
+ "isESM": true,
879
+ "relativePath": [
880
+ "dist",
881
+ "commands",
882
+ "billing",
883
+ "llm-costs.js"
884
+ ]
885
+ },
886
+ "billing:quota": {
887
+ "aliases": [],
888
+ "args": {},
889
+ "description": "Show compile token quota and per-face stats",
890
+ "flags": {
891
+ "json": {
892
+ "description": "Format output as json.",
893
+ "helpGroup": "GLOBAL",
894
+ "name": "json",
895
+ "allowNo": false,
896
+ "type": "boolean"
897
+ },
898
+ "base-url": {
899
+ "description": "API base URL",
900
+ "env": "FACES_BASE_URL",
901
+ "name": "base-url",
902
+ "hasDynamicHelp": false,
903
+ "multiple": false,
904
+ "type": "option"
905
+ },
906
+ "token": {
907
+ "description": "JWT bearer token",
908
+ "env": "FACES_TOKEN",
909
+ "name": "token",
910
+ "hasDynamicHelp": false,
911
+ "multiple": false,
912
+ "type": "option"
913
+ },
914
+ "api-key": {
915
+ "description": "API key",
916
+ "env": "FACES_API_KEY",
917
+ "name": "api-key",
918
+ "hasDynamicHelp": false,
919
+ "multiple": false,
920
+ "type": "option"
921
+ }
922
+ },
923
+ "hasDynamicHelp": false,
924
+ "hiddenAliases": [],
925
+ "id": "billing:quota",
926
+ "pluginAlias": "faces-cli",
927
+ "pluginName": "faces-cli",
928
+ "pluginType": "core",
929
+ "strict": true,
930
+ "enableJsonFlag": true,
931
+ "isESM": true,
932
+ "relativePath": [
933
+ "dist",
934
+ "commands",
935
+ "billing",
936
+ "quota.js"
937
+ ]
938
+ },
939
+ "billing:subscription": {
940
+ "aliases": [],
941
+ "args": {},
942
+ "description": "Show current plan, face count, and renewal date",
943
+ "flags": {
944
+ "json": {
945
+ "description": "Format output as json.",
946
+ "helpGroup": "GLOBAL",
947
+ "name": "json",
948
+ "allowNo": false,
949
+ "type": "boolean"
950
+ },
951
+ "base-url": {
952
+ "description": "API base URL",
953
+ "env": "FACES_BASE_URL",
954
+ "name": "base-url",
955
+ "hasDynamicHelp": false,
956
+ "multiple": false,
957
+ "type": "option"
958
+ },
959
+ "token": {
960
+ "description": "JWT bearer token",
961
+ "env": "FACES_TOKEN",
962
+ "name": "token",
963
+ "hasDynamicHelp": false,
964
+ "multiple": false,
965
+ "type": "option"
966
+ },
967
+ "api-key": {
968
+ "description": "API key",
969
+ "env": "FACES_API_KEY",
970
+ "name": "api-key",
971
+ "hasDynamicHelp": false,
972
+ "multiple": false,
973
+ "type": "option"
974
+ }
975
+ },
976
+ "hasDynamicHelp": false,
977
+ "hiddenAliases": [],
978
+ "id": "billing:subscription",
979
+ "pluginAlias": "faces-cli",
980
+ "pluginName": "faces-cli",
981
+ "pluginType": "core",
982
+ "strict": true,
983
+ "enableJsonFlag": true,
984
+ "isESM": true,
985
+ "relativePath": [
986
+ "dist",
987
+ "commands",
988
+ "billing",
989
+ "subscription.js"
990
+ ]
991
+ },
992
+ "billing:topup": {
993
+ "aliases": [],
994
+ "args": {},
995
+ "description": "Top up credit balance using saved payment method",
996
+ "flags": {
997
+ "json": {
998
+ "description": "Format output as json.",
999
+ "helpGroup": "GLOBAL",
1000
+ "name": "json",
1001
+ "allowNo": false,
1002
+ "type": "boolean"
1003
+ },
1004
+ "base-url": {
1005
+ "description": "API base URL",
1006
+ "env": "FACES_BASE_URL",
1007
+ "name": "base-url",
1008
+ "hasDynamicHelp": false,
1009
+ "multiple": false,
1010
+ "type": "option"
1011
+ },
1012
+ "token": {
1013
+ "description": "JWT bearer token",
1014
+ "env": "FACES_TOKEN",
1015
+ "name": "token",
1016
+ "hasDynamicHelp": false,
1017
+ "multiple": false,
1018
+ "type": "option"
1019
+ },
1020
+ "api-key": {
1021
+ "description": "API key",
1022
+ "env": "FACES_API_KEY",
1023
+ "name": "api-key",
1024
+ "hasDynamicHelp": false,
1025
+ "multiple": false,
1026
+ "type": "option"
1027
+ },
1028
+ "amount": {
1029
+ "description": "Top-up amount in USD (min $1)",
1030
+ "name": "amount",
1031
+ "required": true,
1032
+ "hasDynamicHelp": false,
1033
+ "multiple": false,
1034
+ "type": "option"
1035
+ },
1036
+ "payment-ref": {
1037
+ "description": "Payment reference (admin/test path)",
1038
+ "name": "payment-ref",
1039
+ "hasDynamicHelp": false,
1040
+ "multiple": false,
1041
+ "type": "option"
1042
+ }
1043
+ },
1044
+ "hasDynamicHelp": false,
1045
+ "hiddenAliases": [],
1046
+ "id": "billing:topup",
1047
+ "pluginAlias": "faces-cli",
1048
+ "pluginName": "faces-cli",
1049
+ "pluginType": "core",
1050
+ "strict": true,
1051
+ "enableJsonFlag": true,
1052
+ "isESM": true,
1053
+ "relativePath": [
1054
+ "dist",
1055
+ "commands",
1056
+ "billing",
1057
+ "topup.js"
1058
+ ]
1059
+ },
1060
+ "billing:usage": {
1061
+ "aliases": [],
1062
+ "args": {},
1063
+ "description": "Aggregated usage analytics",
1064
+ "flags": {
1065
+ "json": {
1066
+ "description": "Format output as json.",
1067
+ "helpGroup": "GLOBAL",
1068
+ "name": "json",
1069
+ "allowNo": false,
1070
+ "type": "boolean"
1071
+ },
1072
+ "base-url": {
1073
+ "description": "API base URL",
1074
+ "env": "FACES_BASE_URL",
1075
+ "name": "base-url",
1076
+ "hasDynamicHelp": false,
1077
+ "multiple": false,
1078
+ "type": "option"
1079
+ },
1080
+ "token": {
1081
+ "description": "JWT bearer token",
1082
+ "env": "FACES_TOKEN",
1083
+ "name": "token",
1084
+ "hasDynamicHelp": false,
1085
+ "multiple": false,
1086
+ "type": "option"
1087
+ },
1088
+ "api-key": {
1089
+ "description": "API key",
1090
+ "env": "FACES_API_KEY",
1091
+ "name": "api-key",
1092
+ "hasDynamicHelp": false,
1093
+ "multiple": false,
1094
+ "type": "option"
1095
+ },
1096
+ "group-by": {
1097
+ "description": "Group results",
1098
+ "name": "group-by",
1099
+ "hasDynamicHelp": false,
1100
+ "multiple": false,
1101
+ "options": [
1102
+ "api_key",
1103
+ "model",
1104
+ "llm",
1105
+ "date"
1106
+ ],
1107
+ "type": "option"
1108
+ },
1109
+ "from": {
1110
+ "description": "Start date (YYYY-MM-DD)",
1111
+ "name": "from",
1112
+ "hasDynamicHelp": false,
1113
+ "multiple": false,
1114
+ "type": "option"
1115
+ },
1116
+ "to": {
1117
+ "description": "End date (YYYY-MM-DD)",
1118
+ "name": "to",
1119
+ "hasDynamicHelp": false,
1120
+ "multiple": false,
1121
+ "type": "option"
1122
+ }
1123
+ },
1124
+ "hasDynamicHelp": false,
1125
+ "hiddenAliases": [],
1126
+ "id": "billing:usage",
1127
+ "pluginAlias": "faces-cli",
1128
+ "pluginName": "faces-cli",
1129
+ "pluginType": "core",
1130
+ "strict": true,
1131
+ "enableJsonFlag": true,
1132
+ "isESM": true,
1133
+ "relativePath": [
1134
+ "dist",
1135
+ "commands",
1136
+ "billing",
1137
+ "usage.js"
1138
+ ]
1139
+ },
1140
+ "config:clear": {
1141
+ "aliases": [],
1142
+ "args": {},
1143
+ "description": "Delete all saved credentials and config",
1144
+ "flags": {
1145
+ "json": {
1146
+ "description": "Format output as json.",
1147
+ "helpGroup": "GLOBAL",
1148
+ "name": "json",
1149
+ "allowNo": false,
1150
+ "type": "boolean"
1151
+ },
1152
+ "base-url": {
1153
+ "description": "API base URL",
1154
+ "env": "FACES_BASE_URL",
1155
+ "name": "base-url",
1156
+ "hasDynamicHelp": false,
1157
+ "multiple": false,
1158
+ "type": "option"
1159
+ },
1160
+ "token": {
1161
+ "description": "JWT bearer token",
1162
+ "env": "FACES_TOKEN",
1163
+ "name": "token",
1164
+ "hasDynamicHelp": false,
1165
+ "multiple": false,
1166
+ "type": "option"
1167
+ },
1168
+ "api-key": {
1169
+ "description": "API key",
1170
+ "env": "FACES_API_KEY",
1171
+ "name": "api-key",
1172
+ "hasDynamicHelp": false,
1173
+ "multiple": false,
1174
+ "type": "option"
1175
+ },
1176
+ "yes": {
1177
+ "description": "Skip confirmation",
1178
+ "name": "yes",
1179
+ "allowNo": false,
1180
+ "type": "boolean"
1181
+ }
1182
+ },
1183
+ "hasDynamicHelp": false,
1184
+ "hiddenAliases": [],
1185
+ "id": "config:clear",
1186
+ "pluginAlias": "faces-cli",
1187
+ "pluginName": "faces-cli",
1188
+ "pluginType": "core",
1189
+ "strict": true,
1190
+ "enableJsonFlag": true,
1191
+ "isESM": true,
1192
+ "relativePath": [
1193
+ "dist",
1194
+ "commands",
1195
+ "config",
1196
+ "clear.js"
1197
+ ]
1198
+ },
1199
+ "config:set": {
1200
+ "aliases": [],
1201
+ "args": {
1202
+ "key": {
1203
+ "description": "Config key",
1204
+ "name": "key",
1205
+ "required": true
1206
+ },
1207
+ "value": {
1208
+ "description": "Config value",
1209
+ "name": "value",
1210
+ "required": true
1211
+ }
1212
+ },
1213
+ "description": "Set a config value (e.g. base_url, api_key, token)",
1214
+ "flags": {
1215
+ "json": {
1216
+ "description": "Format output as json.",
1217
+ "helpGroup": "GLOBAL",
1218
+ "name": "json",
1219
+ "allowNo": false,
1220
+ "type": "boolean"
1221
+ },
1222
+ "base-url": {
1223
+ "description": "API base URL",
1224
+ "env": "FACES_BASE_URL",
1225
+ "name": "base-url",
1226
+ "hasDynamicHelp": false,
1227
+ "multiple": false,
1228
+ "type": "option"
1229
+ },
1230
+ "token": {
1231
+ "description": "JWT bearer token",
1232
+ "env": "FACES_TOKEN",
1233
+ "name": "token",
1234
+ "hasDynamicHelp": false,
1235
+ "multiple": false,
1236
+ "type": "option"
1237
+ },
1238
+ "api-key": {
1239
+ "description": "API key",
1240
+ "env": "FACES_API_KEY",
1241
+ "name": "api-key",
1242
+ "hasDynamicHelp": false,
1243
+ "multiple": false,
1244
+ "type": "option"
1245
+ }
1246
+ },
1247
+ "hasDynamicHelp": false,
1248
+ "hiddenAliases": [],
1249
+ "id": "config:set",
1250
+ "pluginAlias": "faces-cli",
1251
+ "pluginName": "faces-cli",
1252
+ "pluginType": "core",
1253
+ "strict": true,
1254
+ "enableJsonFlag": true,
1255
+ "isESM": true,
1256
+ "relativePath": [
1257
+ "dist",
1258
+ "commands",
1259
+ "config",
1260
+ "set.js"
1261
+ ]
1262
+ },
1263
+ "config:show": {
1264
+ "aliases": [],
1265
+ "args": {},
1266
+ "description": "Print current config (credentials are masked)",
1267
+ "flags": {
1268
+ "json": {
1269
+ "description": "Format output as json.",
1270
+ "helpGroup": "GLOBAL",
1271
+ "name": "json",
1272
+ "allowNo": false,
1273
+ "type": "boolean"
1274
+ },
1275
+ "base-url": {
1276
+ "description": "API base URL",
1277
+ "env": "FACES_BASE_URL",
1278
+ "name": "base-url",
1279
+ "hasDynamicHelp": false,
1280
+ "multiple": false,
1281
+ "type": "option"
1282
+ },
1283
+ "token": {
1284
+ "description": "JWT bearer token",
1285
+ "env": "FACES_TOKEN",
1286
+ "name": "token",
1287
+ "hasDynamicHelp": false,
1288
+ "multiple": false,
1289
+ "type": "option"
1290
+ },
1291
+ "api-key": {
1292
+ "description": "API key",
1293
+ "env": "FACES_API_KEY",
1294
+ "name": "api-key",
1295
+ "hasDynamicHelp": false,
1296
+ "multiple": false,
1297
+ "type": "option"
1298
+ }
1299
+ },
1300
+ "hasDynamicHelp": false,
1301
+ "hiddenAliases": [],
1302
+ "id": "config:show",
1303
+ "pluginAlias": "faces-cli",
1304
+ "pluginName": "faces-cli",
1305
+ "pluginType": "core",
1306
+ "strict": true,
1307
+ "enableJsonFlag": true,
1308
+ "isESM": true,
1309
+ "relativePath": [
1310
+ "dist",
1311
+ "commands",
1312
+ "config",
1313
+ "show.js"
1314
+ ]
1315
+ },
1316
+ "face:create": {
1317
+ "aliases": [],
1318
+ "args": {},
1319
+ "description": "Create a new face",
1320
+ "flags": {
1321
+ "json": {
1322
+ "description": "Format output as json.",
1323
+ "helpGroup": "GLOBAL",
1324
+ "name": "json",
1325
+ "allowNo": false,
1326
+ "type": "boolean"
1327
+ },
1328
+ "base-url": {
1329
+ "description": "API base URL",
1330
+ "env": "FACES_BASE_URL",
1331
+ "name": "base-url",
1332
+ "hasDynamicHelp": false,
1333
+ "multiple": false,
1334
+ "type": "option"
1335
+ },
1336
+ "token": {
1337
+ "description": "JWT bearer token",
1338
+ "env": "FACES_TOKEN",
1339
+ "name": "token",
1340
+ "hasDynamicHelp": false,
1341
+ "multiple": false,
1342
+ "type": "option"
1343
+ },
1344
+ "api-key": {
1345
+ "description": "API key",
1346
+ "env": "FACES_API_KEY",
1347
+ "name": "api-key",
1348
+ "hasDynamicHelp": false,
1349
+ "multiple": false,
1350
+ "type": "option"
1351
+ },
1352
+ "name": {
1353
+ "description": "Display name",
1354
+ "name": "name",
1355
+ "required": true,
1356
+ "hasDynamicHelp": false,
1357
+ "multiple": false,
1358
+ "type": "option"
1359
+ },
1360
+ "username": {
1361
+ "description": "Unique username slug",
1362
+ "name": "username",
1363
+ "required": true,
1364
+ "hasDynamicHelp": false,
1365
+ "multiple": false,
1366
+ "type": "option"
1367
+ },
1368
+ "attr": {
1369
+ "description": "Attribute KEY=VALUE (repeatable)",
1370
+ "name": "attr",
1371
+ "hasDynamicHelp": false,
1372
+ "multiple": true,
1373
+ "type": "option"
1374
+ },
1375
+ "tool": {
1376
+ "description": "Tool name to enable (repeatable)",
1377
+ "name": "tool",
1378
+ "hasDynamicHelp": false,
1379
+ "multiple": true,
1380
+ "type": "option"
1381
+ }
1382
+ },
1383
+ "hasDynamicHelp": false,
1384
+ "hiddenAliases": [],
1385
+ "id": "face:create",
1386
+ "pluginAlias": "faces-cli",
1387
+ "pluginName": "faces-cli",
1388
+ "pluginType": "core",
1389
+ "strict": true,
1390
+ "enableJsonFlag": true,
1391
+ "isESM": true,
1392
+ "relativePath": [
1393
+ "dist",
1394
+ "commands",
1395
+ "face",
1396
+ "create.js"
1397
+ ]
1398
+ },
1399
+ "face:delete": {
1400
+ "aliases": [],
1401
+ "args": {
1402
+ "face_id": {
1403
+ "description": "Face ID or username",
1404
+ "name": "face_id",
1405
+ "required": true
1406
+ }
1407
+ },
1408
+ "description": "Delete a face permanently",
1409
+ "flags": {
1410
+ "json": {
1411
+ "description": "Format output as json.",
1412
+ "helpGroup": "GLOBAL",
1413
+ "name": "json",
1414
+ "allowNo": false,
1415
+ "type": "boolean"
1416
+ },
1417
+ "base-url": {
1418
+ "description": "API base URL",
1419
+ "env": "FACES_BASE_URL",
1420
+ "name": "base-url",
1421
+ "hasDynamicHelp": false,
1422
+ "multiple": false,
1423
+ "type": "option"
1424
+ },
1425
+ "token": {
1426
+ "description": "JWT bearer token",
1427
+ "env": "FACES_TOKEN",
1428
+ "name": "token",
1429
+ "hasDynamicHelp": false,
1430
+ "multiple": false,
1431
+ "type": "option"
1432
+ },
1433
+ "api-key": {
1434
+ "description": "API key",
1435
+ "env": "FACES_API_KEY",
1436
+ "name": "api-key",
1437
+ "hasDynamicHelp": false,
1438
+ "multiple": false,
1439
+ "type": "option"
1440
+ },
1441
+ "yes": {
1442
+ "description": "Skip confirmation",
1443
+ "name": "yes",
1444
+ "allowNo": false,
1445
+ "type": "boolean"
1446
+ }
1447
+ },
1448
+ "hasDynamicHelp": false,
1449
+ "hiddenAliases": [],
1450
+ "id": "face:delete",
1451
+ "pluginAlias": "faces-cli",
1452
+ "pluginName": "faces-cli",
1453
+ "pluginType": "core",
1454
+ "strict": true,
1455
+ "enableJsonFlag": true,
1456
+ "isESM": true,
1457
+ "relativePath": [
1458
+ "dist",
1459
+ "commands",
1460
+ "face",
1461
+ "delete.js"
1462
+ ]
1463
+ },
1464
+ "face:get": {
1465
+ "aliases": [],
1466
+ "args": {
1467
+ "face_id": {
1468
+ "description": "Face ID or username",
1469
+ "name": "face_id",
1470
+ "required": true
1471
+ }
1472
+ },
1473
+ "description": "Get details for a face by ID or username",
1474
+ "flags": {
1475
+ "json": {
1476
+ "description": "Format output as json.",
1477
+ "helpGroup": "GLOBAL",
1478
+ "name": "json",
1479
+ "allowNo": false,
1480
+ "type": "boolean"
1481
+ },
1482
+ "base-url": {
1483
+ "description": "API base URL",
1484
+ "env": "FACES_BASE_URL",
1485
+ "name": "base-url",
1486
+ "hasDynamicHelp": false,
1487
+ "multiple": false,
1488
+ "type": "option"
1489
+ },
1490
+ "token": {
1491
+ "description": "JWT bearer token",
1492
+ "env": "FACES_TOKEN",
1493
+ "name": "token",
1494
+ "hasDynamicHelp": false,
1495
+ "multiple": false,
1496
+ "type": "option"
1497
+ },
1498
+ "api-key": {
1499
+ "description": "API key",
1500
+ "env": "FACES_API_KEY",
1501
+ "name": "api-key",
1502
+ "hasDynamicHelp": false,
1503
+ "multiple": false,
1504
+ "type": "option"
1505
+ }
1506
+ },
1507
+ "hasDynamicHelp": false,
1508
+ "hiddenAliases": [],
1509
+ "id": "face:get",
1510
+ "pluginAlias": "faces-cli",
1511
+ "pluginName": "faces-cli",
1512
+ "pluginType": "core",
1513
+ "strict": true,
1514
+ "enableJsonFlag": true,
1515
+ "isESM": true,
1516
+ "relativePath": [
1517
+ "dist",
1518
+ "commands",
1519
+ "face",
1520
+ "get.js"
1521
+ ]
1522
+ },
1523
+ "face:list": {
1524
+ "aliases": [],
1525
+ "args": {},
1526
+ "description": "List all owned faces",
1527
+ "flags": {
1528
+ "json": {
1529
+ "description": "Format output as json.",
1530
+ "helpGroup": "GLOBAL",
1531
+ "name": "json",
1532
+ "allowNo": false,
1533
+ "type": "boolean"
1534
+ },
1535
+ "base-url": {
1536
+ "description": "API base URL",
1537
+ "env": "FACES_BASE_URL",
1538
+ "name": "base-url",
1539
+ "hasDynamicHelp": false,
1540
+ "multiple": false,
1541
+ "type": "option"
1542
+ },
1543
+ "token": {
1544
+ "description": "JWT bearer token",
1545
+ "env": "FACES_TOKEN",
1546
+ "name": "token",
1547
+ "hasDynamicHelp": false,
1548
+ "multiple": false,
1549
+ "type": "option"
1550
+ },
1551
+ "api-key": {
1552
+ "description": "API key",
1553
+ "env": "FACES_API_KEY",
1554
+ "name": "api-key",
1555
+ "hasDynamicHelp": false,
1556
+ "multiple": false,
1557
+ "type": "option"
1558
+ }
1559
+ },
1560
+ "hasDynamicHelp": false,
1561
+ "hiddenAliases": [],
1562
+ "id": "face:list",
1563
+ "pluginAlias": "faces-cli",
1564
+ "pluginName": "faces-cli",
1565
+ "pluginType": "core",
1566
+ "strict": true,
1567
+ "enableJsonFlag": true,
1568
+ "isESM": true,
1569
+ "relativePath": [
1570
+ "dist",
1571
+ "commands",
1572
+ "face",
1573
+ "list.js"
1574
+ ]
1575
+ },
1576
+ "face:stats": {
1577
+ "aliases": [],
1578
+ "args": {},
1579
+ "description": "Compile and chat stats for all owned faces",
1580
+ "flags": {
1581
+ "json": {
1582
+ "description": "Format output as json.",
1583
+ "helpGroup": "GLOBAL",
1584
+ "name": "json",
1585
+ "allowNo": false,
1586
+ "type": "boolean"
1587
+ },
1588
+ "base-url": {
1589
+ "description": "API base URL",
1590
+ "env": "FACES_BASE_URL",
1591
+ "name": "base-url",
1592
+ "hasDynamicHelp": false,
1593
+ "multiple": false,
1594
+ "type": "option"
1595
+ },
1596
+ "token": {
1597
+ "description": "JWT bearer token",
1598
+ "env": "FACES_TOKEN",
1599
+ "name": "token",
1600
+ "hasDynamicHelp": false,
1601
+ "multiple": false,
1602
+ "type": "option"
1603
+ },
1604
+ "api-key": {
1605
+ "description": "API key",
1606
+ "env": "FACES_API_KEY",
1607
+ "name": "api-key",
1608
+ "hasDynamicHelp": false,
1609
+ "multiple": false,
1610
+ "type": "option"
1611
+ }
1612
+ },
1613
+ "hasDynamicHelp": false,
1614
+ "hiddenAliases": [],
1615
+ "id": "face:stats",
1616
+ "pluginAlias": "faces-cli",
1617
+ "pluginName": "faces-cli",
1618
+ "pluginType": "core",
1619
+ "strict": true,
1620
+ "enableJsonFlag": true,
1621
+ "isESM": true,
1622
+ "relativePath": [
1623
+ "dist",
1624
+ "commands",
1625
+ "face",
1626
+ "stats.js"
1627
+ ]
1628
+ },
1629
+ "face:update": {
1630
+ "aliases": [],
1631
+ "args": {
1632
+ "face_id": {
1633
+ "description": "Face ID or username",
1634
+ "name": "face_id",
1635
+ "required": true
1636
+ }
1637
+ },
1638
+ "description": "Update a face's metadata",
1639
+ "flags": {
1640
+ "json": {
1641
+ "description": "Format output as json.",
1642
+ "helpGroup": "GLOBAL",
1643
+ "name": "json",
1644
+ "allowNo": false,
1645
+ "type": "boolean"
1646
+ },
1647
+ "base-url": {
1648
+ "description": "API base URL",
1649
+ "env": "FACES_BASE_URL",
1650
+ "name": "base-url",
1651
+ "hasDynamicHelp": false,
1652
+ "multiple": false,
1653
+ "type": "option"
1654
+ },
1655
+ "token": {
1656
+ "description": "JWT bearer token",
1657
+ "env": "FACES_TOKEN",
1658
+ "name": "token",
1659
+ "hasDynamicHelp": false,
1660
+ "multiple": false,
1661
+ "type": "option"
1662
+ },
1663
+ "api-key": {
1664
+ "description": "API key",
1665
+ "env": "FACES_API_KEY",
1666
+ "name": "api-key",
1667
+ "hasDynamicHelp": false,
1668
+ "multiple": false,
1669
+ "type": "option"
1670
+ },
1671
+ "name": {
1672
+ "description": "New display name",
1673
+ "name": "name",
1674
+ "hasDynamicHelp": false,
1675
+ "multiple": false,
1676
+ "type": "option"
1677
+ },
1678
+ "attr": {
1679
+ "description": "Update attribute KEY=VALUE (repeatable)",
1680
+ "name": "attr",
1681
+ "hasDynamicHelp": false,
1682
+ "multiple": true,
1683
+ "type": "option"
1684
+ },
1685
+ "tool": {
1686
+ "description": "Tool names to set (replaces list, repeatable)",
1687
+ "name": "tool",
1688
+ "hasDynamicHelp": false,
1689
+ "multiple": true,
1690
+ "type": "option"
1691
+ }
1692
+ },
1693
+ "hasDynamicHelp": false,
1694
+ "hiddenAliases": [],
1695
+ "id": "face:update",
1696
+ "pluginAlias": "faces-cli",
1697
+ "pluginName": "faces-cli",
1698
+ "pluginType": "core",
1699
+ "strict": true,
1700
+ "enableJsonFlag": true,
1701
+ "isESM": true,
1702
+ "relativePath": [
1703
+ "dist",
1704
+ "commands",
1705
+ "face",
1706
+ "update.js"
1707
+ ]
1708
+ },
1709
+ "face:upload": {
1710
+ "aliases": [],
1711
+ "args": {
1712
+ "face_id": {
1713
+ "description": "Face ID or username",
1714
+ "name": "face_id",
1715
+ "required": true
1716
+ }
1717
+ },
1718
+ "description": "Upload a file (text/PDF/audio/video) to a face",
1719
+ "flags": {
1720
+ "json": {
1721
+ "description": "Format output as json.",
1722
+ "helpGroup": "GLOBAL",
1723
+ "name": "json",
1724
+ "allowNo": false,
1725
+ "type": "boolean"
1726
+ },
1727
+ "base-url": {
1728
+ "description": "API base URL",
1729
+ "env": "FACES_BASE_URL",
1730
+ "name": "base-url",
1731
+ "hasDynamicHelp": false,
1732
+ "multiple": false,
1733
+ "type": "option"
1734
+ },
1735
+ "token": {
1736
+ "description": "JWT bearer token",
1737
+ "env": "FACES_TOKEN",
1738
+ "name": "token",
1739
+ "hasDynamicHelp": false,
1740
+ "multiple": false,
1741
+ "type": "option"
1742
+ },
1743
+ "api-key": {
1744
+ "description": "API key",
1745
+ "env": "FACES_API_KEY",
1746
+ "name": "api-key",
1747
+ "hasDynamicHelp": false,
1748
+ "multiple": false,
1749
+ "type": "option"
1750
+ },
1751
+ "file": {
1752
+ "description": "File to upload",
1753
+ "name": "file",
1754
+ "required": true,
1755
+ "hasDynamicHelp": false,
1756
+ "multiple": false,
1757
+ "type": "option"
1758
+ },
1759
+ "kind": {
1760
+ "description": "Upload kind: document or thread",
1761
+ "name": "kind",
1762
+ "default": "document",
1763
+ "hasDynamicHelp": false,
1764
+ "multiple": false,
1765
+ "options": [
1766
+ "document",
1767
+ "thread"
1768
+ ],
1769
+ "type": "option"
1770
+ }
1771
+ },
1772
+ "hasDynamicHelp": false,
1773
+ "hiddenAliases": [],
1774
+ "id": "face:upload",
1775
+ "pluginAlias": "faces-cli",
1776
+ "pluginName": "faces-cli",
1777
+ "pluginType": "core",
1778
+ "strict": true,
1779
+ "enableJsonFlag": true,
1780
+ "isESM": true,
1781
+ "relativePath": [
1782
+ "dist",
1783
+ "commands",
1784
+ "face",
1785
+ "upload.js"
1786
+ ]
1787
+ },
1788
+ "keys:create": {
1789
+ "aliases": [],
1790
+ "args": {},
1791
+ "description": "Create a new API key (JWT required)",
1792
+ "flags": {
1793
+ "json": {
1794
+ "description": "Format output as json.",
1795
+ "helpGroup": "GLOBAL",
1796
+ "name": "json",
1797
+ "allowNo": false,
1798
+ "type": "boolean"
1799
+ },
1800
+ "base-url": {
1801
+ "description": "API base URL",
1802
+ "env": "FACES_BASE_URL",
1803
+ "name": "base-url",
1804
+ "hasDynamicHelp": false,
1805
+ "multiple": false,
1806
+ "type": "option"
1807
+ },
1808
+ "token": {
1809
+ "description": "JWT bearer token",
1810
+ "env": "FACES_TOKEN",
1811
+ "name": "token",
1812
+ "hasDynamicHelp": false,
1813
+ "multiple": false,
1814
+ "type": "option"
1815
+ },
1816
+ "api-key": {
1817
+ "description": "API key",
1818
+ "env": "FACES_API_KEY",
1819
+ "name": "api-key",
1820
+ "hasDynamicHelp": false,
1821
+ "multiple": false,
1822
+ "type": "option"
1823
+ },
1824
+ "name": {
1825
+ "description": "Key name/label",
1826
+ "name": "name",
1827
+ "required": true,
1828
+ "hasDynamicHelp": false,
1829
+ "multiple": false,
1830
+ "type": "option"
1831
+ },
1832
+ "expires-days": {
1833
+ "description": "Expiry in days (omit for no expiry)",
1834
+ "name": "expires-days",
1835
+ "hasDynamicHelp": false,
1836
+ "multiple": false,
1837
+ "type": "option"
1838
+ },
1839
+ "budget": {
1840
+ "description": "Spend budget in USD",
1841
+ "name": "budget",
1842
+ "hasDynamicHelp": false,
1843
+ "multiple": false,
1844
+ "type": "option"
1845
+ },
1846
+ "face": {
1847
+ "description": "Allowed face username (repeatable)",
1848
+ "name": "face",
1849
+ "hasDynamicHelp": false,
1850
+ "multiple": true,
1851
+ "type": "option"
1852
+ },
1853
+ "model": {
1854
+ "description": "Allowed model name (repeatable)",
1855
+ "name": "model",
1856
+ "hasDynamicHelp": false,
1857
+ "multiple": true,
1858
+ "type": "option"
1859
+ }
1860
+ },
1861
+ "hasDynamicHelp": false,
1862
+ "hiddenAliases": [],
1863
+ "id": "keys:create",
1864
+ "pluginAlias": "faces-cli",
1865
+ "pluginName": "faces-cli",
1866
+ "pluginType": "core",
1867
+ "strict": true,
1868
+ "enableJsonFlag": true,
1869
+ "isESM": true,
1870
+ "relativePath": [
1871
+ "dist",
1872
+ "commands",
1873
+ "keys",
1874
+ "create.js"
1875
+ ]
1876
+ },
1877
+ "keys:list": {
1878
+ "aliases": [],
1879
+ "args": {},
1880
+ "description": "List all API keys (JWT required)",
1881
+ "flags": {
1882
+ "json": {
1883
+ "description": "Format output as json.",
1884
+ "helpGroup": "GLOBAL",
1885
+ "name": "json",
1886
+ "allowNo": false,
1887
+ "type": "boolean"
1888
+ },
1889
+ "base-url": {
1890
+ "description": "API base URL",
1891
+ "env": "FACES_BASE_URL",
1892
+ "name": "base-url",
1893
+ "hasDynamicHelp": false,
1894
+ "multiple": false,
1895
+ "type": "option"
1896
+ },
1897
+ "token": {
1898
+ "description": "JWT bearer token",
1899
+ "env": "FACES_TOKEN",
1900
+ "name": "token",
1901
+ "hasDynamicHelp": false,
1902
+ "multiple": false,
1903
+ "type": "option"
1904
+ },
1905
+ "api-key": {
1906
+ "description": "API key",
1907
+ "env": "FACES_API_KEY",
1908
+ "name": "api-key",
1909
+ "hasDynamicHelp": false,
1910
+ "multiple": false,
1911
+ "type": "option"
1912
+ }
1913
+ },
1914
+ "hasDynamicHelp": false,
1915
+ "hiddenAliases": [],
1916
+ "id": "keys:list",
1917
+ "pluginAlias": "faces-cli",
1918
+ "pluginName": "faces-cli",
1919
+ "pluginType": "core",
1920
+ "strict": true,
1921
+ "enableJsonFlag": true,
1922
+ "isESM": true,
1923
+ "relativePath": [
1924
+ "dist",
1925
+ "commands",
1926
+ "keys",
1927
+ "list.js"
1928
+ ]
1929
+ },
1930
+ "keys:revoke": {
1931
+ "aliases": [],
1932
+ "args": {
1933
+ "key_id": {
1934
+ "description": "Key ID",
1935
+ "name": "key_id",
1936
+ "required": true
1937
+ }
1938
+ },
1939
+ "description": "Revoke an API key (JWT required)",
1940
+ "flags": {
1941
+ "json": {
1942
+ "description": "Format output as json.",
1943
+ "helpGroup": "GLOBAL",
1944
+ "name": "json",
1945
+ "allowNo": false,
1946
+ "type": "boolean"
1947
+ },
1948
+ "base-url": {
1949
+ "description": "API base URL",
1950
+ "env": "FACES_BASE_URL",
1951
+ "name": "base-url",
1952
+ "hasDynamicHelp": false,
1953
+ "multiple": false,
1954
+ "type": "option"
1955
+ },
1956
+ "token": {
1957
+ "description": "JWT bearer token",
1958
+ "env": "FACES_TOKEN",
1959
+ "name": "token",
1960
+ "hasDynamicHelp": false,
1961
+ "multiple": false,
1962
+ "type": "option"
1963
+ },
1964
+ "api-key": {
1965
+ "description": "API key",
1966
+ "env": "FACES_API_KEY",
1967
+ "name": "api-key",
1968
+ "hasDynamicHelp": false,
1969
+ "multiple": false,
1970
+ "type": "option"
1971
+ },
1972
+ "yes": {
1973
+ "description": "Skip confirmation",
1974
+ "name": "yes",
1975
+ "allowNo": false,
1976
+ "type": "boolean"
1977
+ }
1978
+ },
1979
+ "hasDynamicHelp": false,
1980
+ "hiddenAliases": [],
1981
+ "id": "keys:revoke",
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
+ "keys",
1992
+ "revoke.js"
1993
+ ]
1994
+ },
1995
+ "keys:update": {
1996
+ "aliases": [],
1997
+ "args": {
1998
+ "key_id": {
1999
+ "description": "Key ID",
2000
+ "name": "key_id",
2001
+ "required": true
2002
+ }
2003
+ },
2004
+ "description": "Update API key metadata (JWT required)",
2005
+ "flags": {
2006
+ "json": {
2007
+ "description": "Format output as json.",
2008
+ "helpGroup": "GLOBAL",
2009
+ "name": "json",
2010
+ "allowNo": false,
2011
+ "type": "boolean"
2012
+ },
2013
+ "base-url": {
2014
+ "description": "API base URL",
2015
+ "env": "FACES_BASE_URL",
2016
+ "name": "base-url",
2017
+ "hasDynamicHelp": false,
2018
+ "multiple": false,
2019
+ "type": "option"
2020
+ },
2021
+ "token": {
2022
+ "description": "JWT bearer token",
2023
+ "env": "FACES_TOKEN",
2024
+ "name": "token",
2025
+ "hasDynamicHelp": false,
2026
+ "multiple": false,
2027
+ "type": "option"
2028
+ },
2029
+ "api-key": {
2030
+ "description": "API key",
2031
+ "env": "FACES_API_KEY",
2032
+ "name": "api-key",
2033
+ "hasDynamicHelp": false,
2034
+ "multiple": false,
2035
+ "type": "option"
2036
+ },
2037
+ "name": {
2038
+ "description": "New key name",
2039
+ "name": "name",
2040
+ "hasDynamicHelp": false,
2041
+ "multiple": false,
2042
+ "type": "option"
2043
+ },
2044
+ "budget": {
2045
+ "description": "New spend budget in USD",
2046
+ "name": "budget",
2047
+ "hasDynamicHelp": false,
2048
+ "multiple": false,
2049
+ "type": "option"
2050
+ },
2051
+ "reset-spent": {
2052
+ "description": "Reset spent amount to zero",
2053
+ "name": "reset-spent",
2054
+ "allowNo": false,
2055
+ "type": "boolean"
2056
+ }
2057
+ },
2058
+ "hasDynamicHelp": false,
2059
+ "hiddenAliases": [],
2060
+ "id": "keys:update",
2061
+ "pluginAlias": "faces-cli",
2062
+ "pluginName": "faces-cli",
2063
+ "pluginType": "core",
2064
+ "strict": true,
2065
+ "enableJsonFlag": true,
2066
+ "isESM": true,
2067
+ "relativePath": [
2068
+ "dist",
2069
+ "commands",
2070
+ "keys",
2071
+ "update.js"
2072
+ ]
2073
+ },
2074
+ "compile:doc:create": {
2075
+ "aliases": [],
2076
+ "args": {
2077
+ "face_id": {
2078
+ "description": "Face ID or username",
2079
+ "name": "face_id",
2080
+ "required": true
2081
+ }
2082
+ },
2083
+ "description": "Submit a document to a face",
2084
+ "flags": {
2085
+ "json": {
2086
+ "description": "Format output as json.",
2087
+ "helpGroup": "GLOBAL",
2088
+ "name": "json",
2089
+ "allowNo": false,
2090
+ "type": "boolean"
2091
+ },
2092
+ "base-url": {
2093
+ "description": "API base URL",
2094
+ "env": "FACES_BASE_URL",
2095
+ "name": "base-url",
2096
+ "hasDynamicHelp": false,
2097
+ "multiple": false,
2098
+ "type": "option"
2099
+ },
2100
+ "token": {
2101
+ "description": "JWT bearer token",
2102
+ "env": "FACES_TOKEN",
2103
+ "name": "token",
2104
+ "hasDynamicHelp": false,
2105
+ "multiple": false,
2106
+ "type": "option"
2107
+ },
2108
+ "api-key": {
2109
+ "description": "API key",
2110
+ "env": "FACES_API_KEY",
2111
+ "name": "api-key",
2112
+ "hasDynamicHelp": false,
2113
+ "multiple": false,
2114
+ "type": "option"
2115
+ },
2116
+ "label": {
2117
+ "description": "Document label/title",
2118
+ "name": "label",
2119
+ "hasDynamicHelp": false,
2120
+ "multiple": false,
2121
+ "type": "option"
2122
+ },
2123
+ "content": {
2124
+ "description": "Inline text content",
2125
+ "name": "content",
2126
+ "hasDynamicHelp": false,
2127
+ "multiple": false,
2128
+ "type": "option"
2129
+ },
2130
+ "file": {
2131
+ "description": "Read content from file",
2132
+ "name": "file",
2133
+ "hasDynamicHelp": false,
2134
+ "multiple": false,
2135
+ "type": "option"
2136
+ }
2137
+ },
2138
+ "hasDynamicHelp": false,
2139
+ "hiddenAliases": [],
2140
+ "id": "compile:doc:create",
2141
+ "pluginAlias": "faces-cli",
2142
+ "pluginName": "faces-cli",
2143
+ "pluginType": "core",
2144
+ "strict": true,
2145
+ "enableJsonFlag": true,
2146
+ "isESM": true,
2147
+ "relativePath": [
2148
+ "dist",
2149
+ "commands",
2150
+ "compile",
2151
+ "doc",
2152
+ "create.js"
2153
+ ]
2154
+ },
2155
+ "compile:doc:delete": {
2156
+ "aliases": [],
2157
+ "args": {
2158
+ "doc_id": {
2159
+ "description": "Document ID",
2160
+ "name": "doc_id",
2161
+ "required": true
2162
+ }
2163
+ },
2164
+ "description": "Delete a document",
2165
+ "flags": {
2166
+ "json": {
2167
+ "description": "Format output as json.",
2168
+ "helpGroup": "GLOBAL",
2169
+ "name": "json",
2170
+ "allowNo": false,
2171
+ "type": "boolean"
2172
+ },
2173
+ "base-url": {
2174
+ "description": "API base URL",
2175
+ "env": "FACES_BASE_URL",
2176
+ "name": "base-url",
2177
+ "hasDynamicHelp": false,
2178
+ "multiple": false,
2179
+ "type": "option"
2180
+ },
2181
+ "token": {
2182
+ "description": "JWT bearer token",
2183
+ "env": "FACES_TOKEN",
2184
+ "name": "token",
2185
+ "hasDynamicHelp": false,
2186
+ "multiple": false,
2187
+ "type": "option"
2188
+ },
2189
+ "api-key": {
2190
+ "description": "API key",
2191
+ "env": "FACES_API_KEY",
2192
+ "name": "api-key",
2193
+ "hasDynamicHelp": false,
2194
+ "multiple": false,
2195
+ "type": "option"
2196
+ }
2197
+ },
2198
+ "hasDynamicHelp": false,
2199
+ "hiddenAliases": [],
2200
+ "id": "compile:doc:delete",
2201
+ "pluginAlias": "faces-cli",
2202
+ "pluginName": "faces-cli",
2203
+ "pluginType": "core",
2204
+ "strict": true,
2205
+ "enableJsonFlag": true,
2206
+ "isESM": true,
2207
+ "relativePath": [
2208
+ "dist",
2209
+ "commands",
2210
+ "compile",
2211
+ "doc",
2212
+ "delete.js"
2213
+ ]
2214
+ },
2215
+ "compile:doc:get": {
2216
+ "aliases": [],
2217
+ "args": {
2218
+ "doc_id": {
2219
+ "description": "Document ID",
2220
+ "name": "doc_id",
2221
+ "required": true
2222
+ }
2223
+ },
2224
+ "description": "Get a document by ID",
2225
+ "flags": {
2226
+ "json": {
2227
+ "description": "Format output as json.",
2228
+ "helpGroup": "GLOBAL",
2229
+ "name": "json",
2230
+ "allowNo": false,
2231
+ "type": "boolean"
2232
+ },
2233
+ "base-url": {
2234
+ "description": "API base URL",
2235
+ "env": "FACES_BASE_URL",
2236
+ "name": "base-url",
2237
+ "hasDynamicHelp": false,
2238
+ "multiple": false,
2239
+ "type": "option"
2240
+ },
2241
+ "token": {
2242
+ "description": "JWT bearer token",
2243
+ "env": "FACES_TOKEN",
2244
+ "name": "token",
2245
+ "hasDynamicHelp": false,
2246
+ "multiple": false,
2247
+ "type": "option"
2248
+ },
2249
+ "api-key": {
2250
+ "description": "API key",
2251
+ "env": "FACES_API_KEY",
2252
+ "name": "api-key",
2253
+ "hasDynamicHelp": false,
2254
+ "multiple": false,
2255
+ "type": "option"
2256
+ }
2257
+ },
2258
+ "hasDynamicHelp": false,
2259
+ "hiddenAliases": [],
2260
+ "id": "compile:doc:get",
2261
+ "pluginAlias": "faces-cli",
2262
+ "pluginName": "faces-cli",
2263
+ "pluginType": "core",
2264
+ "strict": true,
2265
+ "enableJsonFlag": true,
2266
+ "isESM": true,
2267
+ "relativePath": [
2268
+ "dist",
2269
+ "commands",
2270
+ "compile",
2271
+ "doc",
2272
+ "get.js"
2273
+ ]
2274
+ },
2275
+ "compile:doc:list": {
2276
+ "aliases": [],
2277
+ "args": {
2278
+ "face_id": {
2279
+ "description": "Face ID or username",
2280
+ "name": "face_id",
2281
+ "required": true
2282
+ }
2283
+ },
2284
+ "description": "List documents for a face",
2285
+ "flags": {
2286
+ "json": {
2287
+ "description": "Format output as json.",
2288
+ "helpGroup": "GLOBAL",
2289
+ "name": "json",
2290
+ "allowNo": false,
2291
+ "type": "boolean"
2292
+ },
2293
+ "base-url": {
2294
+ "description": "API base URL",
2295
+ "env": "FACES_BASE_URL",
2296
+ "name": "base-url",
2297
+ "hasDynamicHelp": false,
2298
+ "multiple": false,
2299
+ "type": "option"
2300
+ },
2301
+ "token": {
2302
+ "description": "JWT bearer token",
2303
+ "env": "FACES_TOKEN",
2304
+ "name": "token",
2305
+ "hasDynamicHelp": false,
2306
+ "multiple": false,
2307
+ "type": "option"
2308
+ },
2309
+ "api-key": {
2310
+ "description": "API key",
2311
+ "env": "FACES_API_KEY",
2312
+ "name": "api-key",
2313
+ "hasDynamicHelp": false,
2314
+ "multiple": false,
2315
+ "type": "option"
2316
+ }
2317
+ },
2318
+ "hasDynamicHelp": false,
2319
+ "hiddenAliases": [],
2320
+ "id": "compile:doc:list",
2321
+ "pluginAlias": "faces-cli",
2322
+ "pluginName": "faces-cli",
2323
+ "pluginType": "core",
2324
+ "strict": true,
2325
+ "enableJsonFlag": true,
2326
+ "isESM": true,
2327
+ "relativePath": [
2328
+ "dist",
2329
+ "commands",
2330
+ "compile",
2331
+ "doc",
2332
+ "list.js"
2333
+ ]
2334
+ },
2335
+ "compile:doc:prepare": {
2336
+ "aliases": [],
2337
+ "args": {
2338
+ "doc_id": {
2339
+ "description": "Document ID",
2340
+ "name": "doc_id",
2341
+ "required": true
2342
+ }
2343
+ },
2344
+ "description": "Run LLM extraction pipeline on a document",
2345
+ "flags": {
2346
+ "json": {
2347
+ "description": "Format output as json.",
2348
+ "helpGroup": "GLOBAL",
2349
+ "name": "json",
2350
+ "allowNo": false,
2351
+ "type": "boolean"
2352
+ },
2353
+ "base-url": {
2354
+ "description": "API base URL",
2355
+ "env": "FACES_BASE_URL",
2356
+ "name": "base-url",
2357
+ "hasDynamicHelp": false,
2358
+ "multiple": false,
2359
+ "type": "option"
2360
+ },
2361
+ "token": {
2362
+ "description": "JWT bearer token",
2363
+ "env": "FACES_TOKEN",
2364
+ "name": "token",
2365
+ "hasDynamicHelp": false,
2366
+ "multiple": false,
2367
+ "type": "option"
2368
+ },
2369
+ "api-key": {
2370
+ "description": "API key",
2371
+ "env": "FACES_API_KEY",
2372
+ "name": "api-key",
2373
+ "hasDynamicHelp": false,
2374
+ "multiple": false,
2375
+ "type": "option"
2376
+ }
2377
+ },
2378
+ "hasDynamicHelp": false,
2379
+ "hiddenAliases": [],
2380
+ "id": "compile:doc:prepare",
2381
+ "pluginAlias": "faces-cli",
2382
+ "pluginName": "faces-cli",
2383
+ "pluginType": "core",
2384
+ "strict": true,
2385
+ "enableJsonFlag": true,
2386
+ "isESM": true,
2387
+ "relativePath": [
2388
+ "dist",
2389
+ "commands",
2390
+ "compile",
2391
+ "doc",
2392
+ "prepare.js"
2393
+ ]
2394
+ },
2395
+ "compile:doc:sync": {
2396
+ "aliases": [],
2397
+ "args": {
2398
+ "doc_id": {
2399
+ "description": "Document ID",
2400
+ "name": "doc_id",
2401
+ "required": true
2402
+ }
2403
+ },
2404
+ "description": "Sync a document into a face (charges compile quota)",
2405
+ "flags": {
2406
+ "json": {
2407
+ "description": "Format output as json.",
2408
+ "helpGroup": "GLOBAL",
2409
+ "name": "json",
2410
+ "allowNo": false,
2411
+ "type": "boolean"
2412
+ },
2413
+ "base-url": {
2414
+ "description": "API base URL",
2415
+ "env": "FACES_BASE_URL",
2416
+ "name": "base-url",
2417
+ "hasDynamicHelp": false,
2418
+ "multiple": false,
2419
+ "type": "option"
2420
+ },
2421
+ "token": {
2422
+ "description": "JWT bearer token",
2423
+ "env": "FACES_TOKEN",
2424
+ "name": "token",
2425
+ "hasDynamicHelp": false,
2426
+ "multiple": false,
2427
+ "type": "option"
2428
+ },
2429
+ "api-key": {
2430
+ "description": "API key",
2431
+ "env": "FACES_API_KEY",
2432
+ "name": "api-key",
2433
+ "hasDynamicHelp": false,
2434
+ "multiple": false,
2435
+ "type": "option"
2436
+ },
2437
+ "yes": {
2438
+ "description": "Skip confirmation (quota will be charged)",
2439
+ "name": "yes",
2440
+ "allowNo": false,
2441
+ "type": "boolean"
2442
+ }
2443
+ },
2444
+ "hasDynamicHelp": false,
2445
+ "hiddenAliases": [],
2446
+ "id": "compile:doc:sync",
2447
+ "pluginAlias": "faces-cli",
2448
+ "pluginName": "faces-cli",
2449
+ "pluginType": "core",
2450
+ "strict": true,
2451
+ "enableJsonFlag": true,
2452
+ "isESM": true,
2453
+ "relativePath": [
2454
+ "dist",
2455
+ "commands",
2456
+ "compile",
2457
+ "doc",
2458
+ "sync.js"
2459
+ ]
2460
+ },
2461
+ "compile:thread:create": {
2462
+ "aliases": [],
2463
+ "args": {
2464
+ "face_id": {
2465
+ "description": "Face ID or username",
2466
+ "name": "face_id",
2467
+ "required": true
2468
+ }
2469
+ },
2470
+ "description": "Start a new thread for a face",
2471
+ "flags": {
2472
+ "json": {
2473
+ "description": "Format output as json.",
2474
+ "helpGroup": "GLOBAL",
2475
+ "name": "json",
2476
+ "allowNo": false,
2477
+ "type": "boolean"
2478
+ },
2479
+ "base-url": {
2480
+ "description": "API base URL",
2481
+ "env": "FACES_BASE_URL",
2482
+ "name": "base-url",
2483
+ "hasDynamicHelp": false,
2484
+ "multiple": false,
2485
+ "type": "option"
2486
+ },
2487
+ "token": {
2488
+ "description": "JWT bearer token",
2489
+ "env": "FACES_TOKEN",
2490
+ "name": "token",
2491
+ "hasDynamicHelp": false,
2492
+ "multiple": false,
2493
+ "type": "option"
2494
+ },
2495
+ "api-key": {
2496
+ "description": "API key",
2497
+ "env": "FACES_API_KEY",
2498
+ "name": "api-key",
2499
+ "hasDynamicHelp": false,
2500
+ "multiple": false,
2501
+ "type": "option"
2502
+ },
2503
+ "label": {
2504
+ "description": "Thread label",
2505
+ "name": "label",
2506
+ "hasDynamicHelp": false,
2507
+ "multiple": false,
2508
+ "type": "option"
2509
+ }
2510
+ },
2511
+ "hasDynamicHelp": false,
2512
+ "hiddenAliases": [],
2513
+ "id": "compile:thread:create",
2514
+ "pluginAlias": "faces-cli",
2515
+ "pluginName": "faces-cli",
2516
+ "pluginType": "core",
2517
+ "strict": true,
2518
+ "enableJsonFlag": true,
2519
+ "isESM": true,
2520
+ "relativePath": [
2521
+ "dist",
2522
+ "commands",
2523
+ "compile",
2524
+ "thread",
2525
+ "create.js"
2526
+ ]
2527
+ },
2528
+ "compile:thread:list": {
2529
+ "aliases": [],
2530
+ "args": {
2531
+ "face_id": {
2532
+ "description": "Face ID or username",
2533
+ "name": "face_id",
2534
+ "required": true
2535
+ }
2536
+ },
2537
+ "description": "List threads for a face",
2538
+ "flags": {
2539
+ "json": {
2540
+ "description": "Format output as json.",
2541
+ "helpGroup": "GLOBAL",
2542
+ "name": "json",
2543
+ "allowNo": false,
2544
+ "type": "boolean"
2545
+ },
2546
+ "base-url": {
2547
+ "description": "API base URL",
2548
+ "env": "FACES_BASE_URL",
2549
+ "name": "base-url",
2550
+ "hasDynamicHelp": false,
2551
+ "multiple": false,
2552
+ "type": "option"
2553
+ },
2554
+ "token": {
2555
+ "description": "JWT bearer token",
2556
+ "env": "FACES_TOKEN",
2557
+ "name": "token",
2558
+ "hasDynamicHelp": false,
2559
+ "multiple": false,
2560
+ "type": "option"
2561
+ },
2562
+ "api-key": {
2563
+ "description": "API key",
2564
+ "env": "FACES_API_KEY",
2565
+ "name": "api-key",
2566
+ "hasDynamicHelp": false,
2567
+ "multiple": false,
2568
+ "type": "option"
2569
+ }
2570
+ },
2571
+ "hasDynamicHelp": false,
2572
+ "hiddenAliases": [],
2573
+ "id": "compile:thread:list",
2574
+ "pluginAlias": "faces-cli",
2575
+ "pluginName": "faces-cli",
2576
+ "pluginType": "core",
2577
+ "strict": true,
2578
+ "enableJsonFlag": true,
2579
+ "isESM": true,
2580
+ "relativePath": [
2581
+ "dist",
2582
+ "commands",
2583
+ "compile",
2584
+ "thread",
2585
+ "list.js"
2586
+ ]
2587
+ },
2588
+ "compile:thread:message": {
2589
+ "aliases": [],
2590
+ "args": {
2591
+ "thread_id": {
2592
+ "description": "Thread ID",
2593
+ "name": "thread_id",
2594
+ "required": true
2595
+ }
2596
+ },
2597
+ "description": "Send a user message to a thread",
2598
+ "flags": {
2599
+ "json": {
2600
+ "description": "Format output as json.",
2601
+ "helpGroup": "GLOBAL",
2602
+ "name": "json",
2603
+ "allowNo": false,
2604
+ "type": "boolean"
2605
+ },
2606
+ "base-url": {
2607
+ "description": "API base URL",
2608
+ "env": "FACES_BASE_URL",
2609
+ "name": "base-url",
2610
+ "hasDynamicHelp": false,
2611
+ "multiple": false,
2612
+ "type": "option"
2613
+ },
2614
+ "token": {
2615
+ "description": "JWT bearer token",
2616
+ "env": "FACES_TOKEN",
2617
+ "name": "token",
2618
+ "hasDynamicHelp": false,
2619
+ "multiple": false,
2620
+ "type": "option"
2621
+ },
2622
+ "api-key": {
2623
+ "description": "API key",
2624
+ "env": "FACES_API_KEY",
2625
+ "name": "api-key",
2626
+ "hasDynamicHelp": false,
2627
+ "multiple": false,
2628
+ "type": "option"
2629
+ },
2630
+ "message": {
2631
+ "char": "m",
2632
+ "description": "User message to append",
2633
+ "name": "message",
2634
+ "required": true,
2635
+ "hasDynamicHelp": false,
2636
+ "multiple": false,
2637
+ "type": "option"
2638
+ }
2639
+ },
2640
+ "hasDynamicHelp": false,
2641
+ "hiddenAliases": [],
2642
+ "id": "compile:thread:message",
2643
+ "pluginAlias": "faces-cli",
2644
+ "pluginName": "faces-cli",
2645
+ "pluginType": "core",
2646
+ "strict": true,
2647
+ "enableJsonFlag": true,
2648
+ "isESM": true,
2649
+ "relativePath": [
2650
+ "dist",
2651
+ "commands",
2652
+ "compile",
2653
+ "thread",
2654
+ "message.js"
2655
+ ]
2656
+ },
2657
+ "compile:thread:sync": {
2658
+ "aliases": [],
2659
+ "args": {
2660
+ "thread_id": {
2661
+ "description": "Thread ID",
2662
+ "name": "thread_id",
2663
+ "required": true
2664
+ }
2665
+ },
2666
+ "description": "Archive and sync a thread into a face",
2667
+ "flags": {
2668
+ "json": {
2669
+ "description": "Format output as json.",
2670
+ "helpGroup": "GLOBAL",
2671
+ "name": "json",
2672
+ "allowNo": false,
2673
+ "type": "boolean"
2674
+ },
2675
+ "base-url": {
2676
+ "description": "API base URL",
2677
+ "env": "FACES_BASE_URL",
2678
+ "name": "base-url",
2679
+ "hasDynamicHelp": false,
2680
+ "multiple": false,
2681
+ "type": "option"
2682
+ },
2683
+ "token": {
2684
+ "description": "JWT bearer token",
2685
+ "env": "FACES_TOKEN",
2686
+ "name": "token",
2687
+ "hasDynamicHelp": false,
2688
+ "multiple": false,
2689
+ "type": "option"
2690
+ },
2691
+ "api-key": {
2692
+ "description": "API key",
2693
+ "env": "FACES_API_KEY",
2694
+ "name": "api-key",
2695
+ "hasDynamicHelp": false,
2696
+ "multiple": false,
2697
+ "type": "option"
2698
+ }
2699
+ },
2700
+ "hasDynamicHelp": false,
2701
+ "hiddenAliases": [],
2702
+ "id": "compile:thread:sync",
2703
+ "pluginAlias": "faces-cli",
2704
+ "pluginName": "faces-cli",
2705
+ "pluginType": "core",
2706
+ "strict": true,
2707
+ "enableJsonFlag": true,
2708
+ "isESM": true,
2709
+ "relativePath": [
2710
+ "dist",
2711
+ "commands",
2712
+ "compile",
2713
+ "thread",
2714
+ "sync.js"
2715
+ ]
2716
+ }
2717
+ },
2718
+ "version": "1.0.0"
2719
+ }