faces-cli 1.5.12 → 1.5.14
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.js +6 -1
- package/dist/commands/auth/refresh.js +1 -1
- package/dist/commands/billing/usage.js +7 -1
- package/dist/commands/face/attributes.d.ts +10 -0
- package/dist/commands/face/attributes.js +30 -0
- package/dist/commands/face/create.js +6 -0
- package/dist/commands/face/update.js +4 -0
- package/dist/commands/keys/create.js +1 -1
- package/dist/commands/keys/list.js +1 -1
- package/dist/commands/keys/revoke.js +1 -1
- package/dist/commands/keys/update.js +1 -1
- package/oclif.manifest.json +810 -757
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -1260,6 +1260,214 @@
|
|
|
1260
1260
|
"whoami.js"
|
|
1261
1261
|
]
|
|
1262
1262
|
},
|
|
1263
|
+
"compile:import": {
|
|
1264
|
+
"aliases": [],
|
|
1265
|
+
"args": {
|
|
1266
|
+
"face_id": {
|
|
1267
|
+
"description": "Face alias",
|
|
1268
|
+
"name": "face_id",
|
|
1269
|
+
"required": true
|
|
1270
|
+
}
|
|
1271
|
+
},
|
|
1272
|
+
"description": "Import a YouTube video into a face via server-side download and transcription",
|
|
1273
|
+
"flags": {
|
|
1274
|
+
"json": {
|
|
1275
|
+
"description": "Format output as json.",
|
|
1276
|
+
"helpGroup": "GLOBAL",
|
|
1277
|
+
"name": "json",
|
|
1278
|
+
"allowNo": false,
|
|
1279
|
+
"type": "boolean"
|
|
1280
|
+
},
|
|
1281
|
+
"base-url": {
|
|
1282
|
+
"description": "API base URL",
|
|
1283
|
+
"env": "FACES_BASE_URL",
|
|
1284
|
+
"name": "base-url",
|
|
1285
|
+
"hasDynamicHelp": false,
|
|
1286
|
+
"multiple": false,
|
|
1287
|
+
"type": "option"
|
|
1288
|
+
},
|
|
1289
|
+
"token": {
|
|
1290
|
+
"description": "JWT bearer token",
|
|
1291
|
+
"env": "FACES_TOKEN",
|
|
1292
|
+
"name": "token",
|
|
1293
|
+
"hasDynamicHelp": false,
|
|
1294
|
+
"multiple": false,
|
|
1295
|
+
"type": "option"
|
|
1296
|
+
},
|
|
1297
|
+
"api-key": {
|
|
1298
|
+
"description": "API key",
|
|
1299
|
+
"env": "FACES_API_KEY",
|
|
1300
|
+
"name": "api-key",
|
|
1301
|
+
"hasDynamicHelp": false,
|
|
1302
|
+
"multiple": false,
|
|
1303
|
+
"type": "option"
|
|
1304
|
+
},
|
|
1305
|
+
"url": {
|
|
1306
|
+
"description": "YouTube URL (youtube.com/watch?v=... or youtu.be/...)",
|
|
1307
|
+
"name": "url",
|
|
1308
|
+
"required": true,
|
|
1309
|
+
"hasDynamicHelp": false,
|
|
1310
|
+
"multiple": false,
|
|
1311
|
+
"type": "option"
|
|
1312
|
+
},
|
|
1313
|
+
"type": {
|
|
1314
|
+
"description": "\"document\" for solo talks, lectures, monologues; \"thread\" for interviews or multi-speaker conversations",
|
|
1315
|
+
"name": "type",
|
|
1316
|
+
"default": "document",
|
|
1317
|
+
"hasDynamicHelp": false,
|
|
1318
|
+
"multiple": false,
|
|
1319
|
+
"options": [
|
|
1320
|
+
"document",
|
|
1321
|
+
"thread"
|
|
1322
|
+
],
|
|
1323
|
+
"type": "option"
|
|
1324
|
+
},
|
|
1325
|
+
"perspective": {
|
|
1326
|
+
"description": "\"first-person\" if the face is the speaker; \"third-person\" if the video is about the face",
|
|
1327
|
+
"name": "perspective",
|
|
1328
|
+
"default": "third-person",
|
|
1329
|
+
"hasDynamicHelp": false,
|
|
1330
|
+
"multiple": false,
|
|
1331
|
+
"options": [
|
|
1332
|
+
"first-person",
|
|
1333
|
+
"third-person"
|
|
1334
|
+
],
|
|
1335
|
+
"type": "option"
|
|
1336
|
+
},
|
|
1337
|
+
"face-speaker": {
|
|
1338
|
+
"description": "For --type thread: AssemblyAI speaker label (e.g. \"A\") that corresponds to the face. Defaults to first detected speaker.",
|
|
1339
|
+
"name": "face-speaker",
|
|
1340
|
+
"hasDynamicHelp": false,
|
|
1341
|
+
"multiple": false,
|
|
1342
|
+
"type": "option"
|
|
1343
|
+
},
|
|
1344
|
+
"no-wait": {
|
|
1345
|
+
"description": "Return immediately after import starts (do not poll for transcription). Prints the ID for manual polling.",
|
|
1346
|
+
"name": "no-wait",
|
|
1347
|
+
"allowNo": false,
|
|
1348
|
+
"type": "boolean"
|
|
1349
|
+
}
|
|
1350
|
+
},
|
|
1351
|
+
"hasDynamicHelp": false,
|
|
1352
|
+
"hiddenAliases": [],
|
|
1353
|
+
"id": "compile:import",
|
|
1354
|
+
"pluginAlias": "faces-cli",
|
|
1355
|
+
"pluginName": "faces-cli",
|
|
1356
|
+
"pluginType": "core",
|
|
1357
|
+
"strict": true,
|
|
1358
|
+
"enableJsonFlag": true,
|
|
1359
|
+
"isESM": true,
|
|
1360
|
+
"relativePath": [
|
|
1361
|
+
"dist",
|
|
1362
|
+
"commands",
|
|
1363
|
+
"compile",
|
|
1364
|
+
"import.js"
|
|
1365
|
+
]
|
|
1366
|
+
},
|
|
1367
|
+
"compile:upload": {
|
|
1368
|
+
"aliases": [],
|
|
1369
|
+
"args": {
|
|
1370
|
+
"alias": {
|
|
1371
|
+
"description": "Face alias",
|
|
1372
|
+
"name": "alias",
|
|
1373
|
+
"required": true
|
|
1374
|
+
}
|
|
1375
|
+
},
|
|
1376
|
+
"description": "Upload a file (text/PDF/audio/video) to compile into a face",
|
|
1377
|
+
"flags": {
|
|
1378
|
+
"json": {
|
|
1379
|
+
"description": "Format output as json.",
|
|
1380
|
+
"helpGroup": "GLOBAL",
|
|
1381
|
+
"name": "json",
|
|
1382
|
+
"allowNo": false,
|
|
1383
|
+
"type": "boolean"
|
|
1384
|
+
},
|
|
1385
|
+
"base-url": {
|
|
1386
|
+
"description": "API base URL",
|
|
1387
|
+
"env": "FACES_BASE_URL",
|
|
1388
|
+
"name": "base-url",
|
|
1389
|
+
"hasDynamicHelp": false,
|
|
1390
|
+
"multiple": false,
|
|
1391
|
+
"type": "option"
|
|
1392
|
+
},
|
|
1393
|
+
"token": {
|
|
1394
|
+
"description": "JWT bearer token",
|
|
1395
|
+
"env": "FACES_TOKEN",
|
|
1396
|
+
"name": "token",
|
|
1397
|
+
"hasDynamicHelp": false,
|
|
1398
|
+
"multiple": false,
|
|
1399
|
+
"type": "option"
|
|
1400
|
+
},
|
|
1401
|
+
"api-key": {
|
|
1402
|
+
"description": "API key",
|
|
1403
|
+
"env": "FACES_API_KEY",
|
|
1404
|
+
"name": "api-key",
|
|
1405
|
+
"hasDynamicHelp": false,
|
|
1406
|
+
"multiple": false,
|
|
1407
|
+
"type": "option"
|
|
1408
|
+
},
|
|
1409
|
+
"file": {
|
|
1410
|
+
"description": "File to upload",
|
|
1411
|
+
"name": "file",
|
|
1412
|
+
"required": true,
|
|
1413
|
+
"hasDynamicHelp": false,
|
|
1414
|
+
"multiple": false,
|
|
1415
|
+
"type": "option"
|
|
1416
|
+
},
|
|
1417
|
+
"kind": {
|
|
1418
|
+
"description": "Upload kind: document or thread",
|
|
1419
|
+
"name": "kind",
|
|
1420
|
+
"default": "document",
|
|
1421
|
+
"hasDynamicHelp": false,
|
|
1422
|
+
"multiple": false,
|
|
1423
|
+
"options": [
|
|
1424
|
+
"document",
|
|
1425
|
+
"thread"
|
|
1426
|
+
],
|
|
1427
|
+
"type": "option"
|
|
1428
|
+
},
|
|
1429
|
+
"perspective": {
|
|
1430
|
+
"description": "Perspective (document only)",
|
|
1431
|
+
"name": "perspective",
|
|
1432
|
+
"default": "third-person",
|
|
1433
|
+
"hasDynamicHelp": false,
|
|
1434
|
+
"multiple": false,
|
|
1435
|
+
"options": [
|
|
1436
|
+
"first-person",
|
|
1437
|
+
"third-person"
|
|
1438
|
+
],
|
|
1439
|
+
"type": "option"
|
|
1440
|
+
},
|
|
1441
|
+
"face-speaker": {
|
|
1442
|
+
"description": "Speaker name to map to the face (thread only). If omitted, auto-detected from face name.",
|
|
1443
|
+
"name": "face-speaker",
|
|
1444
|
+
"hasDynamicHelp": false,
|
|
1445
|
+
"multiple": false,
|
|
1446
|
+
"type": "option"
|
|
1447
|
+
},
|
|
1448
|
+
"no-wait": {
|
|
1449
|
+
"description": "Return immediately after upload (do not poll for transcription). Prints the ID for manual polling.",
|
|
1450
|
+
"name": "no-wait",
|
|
1451
|
+
"allowNo": false,
|
|
1452
|
+
"type": "boolean"
|
|
1453
|
+
}
|
|
1454
|
+
},
|
|
1455
|
+
"hasDynamicHelp": false,
|
|
1456
|
+
"hiddenAliases": [],
|
|
1457
|
+
"id": "compile:upload",
|
|
1458
|
+
"pluginAlias": "faces-cli",
|
|
1459
|
+
"pluginName": "faces-cli",
|
|
1460
|
+
"pluginType": "core",
|
|
1461
|
+
"strict": true,
|
|
1462
|
+
"enableJsonFlag": true,
|
|
1463
|
+
"isESM": true,
|
|
1464
|
+
"relativePath": [
|
|
1465
|
+
"dist",
|
|
1466
|
+
"commands",
|
|
1467
|
+
"compile",
|
|
1468
|
+
"upload.js"
|
|
1469
|
+
]
|
|
1470
|
+
},
|
|
1263
1471
|
"chat:chat": {
|
|
1264
1472
|
"aliases": [],
|
|
1265
1473
|
"args": {
|
|
@@ -1545,16 +1753,10 @@
|
|
|
1545
1753
|
"responses.js"
|
|
1546
1754
|
]
|
|
1547
1755
|
},
|
|
1548
|
-
"
|
|
1756
|
+
"config:clear": {
|
|
1549
1757
|
"aliases": [],
|
|
1550
|
-
"args": {
|
|
1551
|
-
|
|
1552
|
-
"description": "Face alias",
|
|
1553
|
-
"name": "face_id",
|
|
1554
|
-
"required": true
|
|
1555
|
-
}
|
|
1556
|
-
},
|
|
1557
|
-
"description": "Import a YouTube video into a face via server-side download and transcription",
|
|
1758
|
+
"args": {},
|
|
1759
|
+
"description": "Delete all saved credentials and config",
|
|
1558
1760
|
"flags": {
|
|
1559
1761
|
"json": {
|
|
1560
1762
|
"description": "Format output as json.",
|
|
@@ -1587,55 +1789,16 @@
|
|
|
1587
1789
|
"multiple": false,
|
|
1588
1790
|
"type": "option"
|
|
1589
1791
|
},
|
|
1590
|
-
"
|
|
1591
|
-
"description": "
|
|
1592
|
-
"name": "
|
|
1593
|
-
"required": true,
|
|
1594
|
-
"hasDynamicHelp": false,
|
|
1595
|
-
"multiple": false,
|
|
1596
|
-
"type": "option"
|
|
1597
|
-
},
|
|
1598
|
-
"type": {
|
|
1599
|
-
"description": "\"document\" for solo talks, lectures, monologues; \"thread\" for interviews or multi-speaker conversations",
|
|
1600
|
-
"name": "type",
|
|
1601
|
-
"default": "document",
|
|
1602
|
-
"hasDynamicHelp": false,
|
|
1603
|
-
"multiple": false,
|
|
1604
|
-
"options": [
|
|
1605
|
-
"document",
|
|
1606
|
-
"thread"
|
|
1607
|
-
],
|
|
1608
|
-
"type": "option"
|
|
1609
|
-
},
|
|
1610
|
-
"perspective": {
|
|
1611
|
-
"description": "\"first-person\" if the face is the speaker; \"third-person\" if the video is about the face",
|
|
1612
|
-
"name": "perspective",
|
|
1613
|
-
"default": "third-person",
|
|
1614
|
-
"hasDynamicHelp": false,
|
|
1615
|
-
"multiple": false,
|
|
1616
|
-
"options": [
|
|
1617
|
-
"first-person",
|
|
1618
|
-
"third-person"
|
|
1619
|
-
],
|
|
1620
|
-
"type": "option"
|
|
1621
|
-
},
|
|
1622
|
-
"face-speaker": {
|
|
1623
|
-
"description": "For --type thread: AssemblyAI speaker label (e.g. \"A\") that corresponds to the face. Defaults to first detected speaker.",
|
|
1624
|
-
"name": "face-speaker",
|
|
1625
|
-
"hasDynamicHelp": false,
|
|
1626
|
-
"multiple": false,
|
|
1627
|
-
"type": "option"
|
|
1628
|
-
},
|
|
1629
|
-
"no-wait": {
|
|
1630
|
-
"description": "Return immediately after import starts (do not poll for transcription). Prints the ID for manual polling.",
|
|
1631
|
-
"name": "no-wait",
|
|
1792
|
+
"yes": {
|
|
1793
|
+
"description": "Skip confirmation",
|
|
1794
|
+
"name": "yes",
|
|
1632
1795
|
"allowNo": false,
|
|
1633
1796
|
"type": "boolean"
|
|
1634
1797
|
}
|
|
1635
1798
|
},
|
|
1636
1799
|
"hasDynamicHelp": false,
|
|
1637
1800
|
"hiddenAliases": [],
|
|
1638
|
-
"id": "
|
|
1801
|
+
"id": "config:clear",
|
|
1639
1802
|
"pluginAlias": "faces-cli",
|
|
1640
1803
|
"pluginName": "faces-cli",
|
|
1641
1804
|
"pluginType": "core",
|
|
@@ -1645,20 +1808,25 @@
|
|
|
1645
1808
|
"relativePath": [
|
|
1646
1809
|
"dist",
|
|
1647
1810
|
"commands",
|
|
1648
|
-
"
|
|
1649
|
-
"
|
|
1811
|
+
"config",
|
|
1812
|
+
"clear.js"
|
|
1650
1813
|
]
|
|
1651
1814
|
},
|
|
1652
|
-
"
|
|
1815
|
+
"config:set": {
|
|
1653
1816
|
"aliases": [],
|
|
1654
1817
|
"args": {
|
|
1655
|
-
"
|
|
1656
|
-
"description": "
|
|
1657
|
-
"name": "
|
|
1818
|
+
"key": {
|
|
1819
|
+
"description": "Config key",
|
|
1820
|
+
"name": "key",
|
|
1821
|
+
"required": true
|
|
1822
|
+
},
|
|
1823
|
+
"value": {
|
|
1824
|
+
"description": "Config value",
|
|
1825
|
+
"name": "value",
|
|
1658
1826
|
"required": true
|
|
1659
1827
|
}
|
|
1660
1828
|
},
|
|
1661
|
-
"description": "
|
|
1829
|
+
"description": "Set a config value (e.g. base_url, api_key, token)",
|
|
1662
1830
|
"flags": {
|
|
1663
1831
|
"json": {
|
|
1664
1832
|
"description": "Format output as json.",
|
|
@@ -1690,56 +1858,11 @@
|
|
|
1690
1858
|
"hasDynamicHelp": false,
|
|
1691
1859
|
"multiple": false,
|
|
1692
1860
|
"type": "option"
|
|
1693
|
-
},
|
|
1694
|
-
"file": {
|
|
1695
|
-
"description": "File to upload",
|
|
1696
|
-
"name": "file",
|
|
1697
|
-
"required": true,
|
|
1698
|
-
"hasDynamicHelp": false,
|
|
1699
|
-
"multiple": false,
|
|
1700
|
-
"type": "option"
|
|
1701
|
-
},
|
|
1702
|
-
"kind": {
|
|
1703
|
-
"description": "Upload kind: document or thread",
|
|
1704
|
-
"name": "kind",
|
|
1705
|
-
"default": "document",
|
|
1706
|
-
"hasDynamicHelp": false,
|
|
1707
|
-
"multiple": false,
|
|
1708
|
-
"options": [
|
|
1709
|
-
"document",
|
|
1710
|
-
"thread"
|
|
1711
|
-
],
|
|
1712
|
-
"type": "option"
|
|
1713
|
-
},
|
|
1714
|
-
"perspective": {
|
|
1715
|
-
"description": "Perspective (document only)",
|
|
1716
|
-
"name": "perspective",
|
|
1717
|
-
"default": "third-person",
|
|
1718
|
-
"hasDynamicHelp": false,
|
|
1719
|
-
"multiple": false,
|
|
1720
|
-
"options": [
|
|
1721
|
-
"first-person",
|
|
1722
|
-
"third-person"
|
|
1723
|
-
],
|
|
1724
|
-
"type": "option"
|
|
1725
|
-
},
|
|
1726
|
-
"face-speaker": {
|
|
1727
|
-
"description": "Speaker name to map to the face (thread only). If omitted, auto-detected from face name.",
|
|
1728
|
-
"name": "face-speaker",
|
|
1729
|
-
"hasDynamicHelp": false,
|
|
1730
|
-
"multiple": false,
|
|
1731
|
-
"type": "option"
|
|
1732
|
-
},
|
|
1733
|
-
"no-wait": {
|
|
1734
|
-
"description": "Return immediately after upload (do not poll for transcription). Prints the ID for manual polling.",
|
|
1735
|
-
"name": "no-wait",
|
|
1736
|
-
"allowNo": false,
|
|
1737
|
-
"type": "boolean"
|
|
1738
1861
|
}
|
|
1739
1862
|
},
|
|
1740
1863
|
"hasDynamicHelp": false,
|
|
1741
1864
|
"hiddenAliases": [],
|
|
1742
|
-
"id": "
|
|
1865
|
+
"id": "config:set",
|
|
1743
1866
|
"pluginAlias": "faces-cli",
|
|
1744
1867
|
"pluginName": "faces-cli",
|
|
1745
1868
|
"pluginType": "core",
|
|
@@ -1749,14 +1872,14 @@
|
|
|
1749
1872
|
"relativePath": [
|
|
1750
1873
|
"dist",
|
|
1751
1874
|
"commands",
|
|
1752
|
-
"
|
|
1753
|
-
"
|
|
1875
|
+
"config",
|
|
1876
|
+
"set.js"
|
|
1754
1877
|
]
|
|
1755
1878
|
},
|
|
1756
|
-
"config:
|
|
1879
|
+
"config:show": {
|
|
1757
1880
|
"aliases": [],
|
|
1758
1881
|
"args": {},
|
|
1759
|
-
"description": "
|
|
1882
|
+
"description": "Print current config (credentials are masked)",
|
|
1760
1883
|
"flags": {
|
|
1761
1884
|
"json": {
|
|
1762
1885
|
"description": "Format output as json.",
|
|
@@ -1788,17 +1911,11 @@
|
|
|
1788
1911
|
"hasDynamicHelp": false,
|
|
1789
1912
|
"multiple": false,
|
|
1790
1913
|
"type": "option"
|
|
1791
|
-
},
|
|
1792
|
-
"yes": {
|
|
1793
|
-
"description": "Skip confirmation",
|
|
1794
|
-
"name": "yes",
|
|
1795
|
-
"allowNo": false,
|
|
1796
|
-
"type": "boolean"
|
|
1797
1914
|
}
|
|
1798
1915
|
},
|
|
1799
1916
|
"hasDynamicHelp": false,
|
|
1800
1917
|
"hiddenAliases": [],
|
|
1801
|
-
"id": "config:
|
|
1918
|
+
"id": "config:show",
|
|
1802
1919
|
"pluginAlias": "faces-cli",
|
|
1803
1920
|
"pluginName": "faces-cli",
|
|
1804
1921
|
"pluginType": "core",
|
|
@@ -1809,24 +1926,13 @@
|
|
|
1809
1926
|
"dist",
|
|
1810
1927
|
"commands",
|
|
1811
1928
|
"config",
|
|
1812
|
-
"
|
|
1929
|
+
"show.js"
|
|
1813
1930
|
]
|
|
1814
1931
|
},
|
|
1815
|
-
"
|
|
1932
|
+
"keys:create": {
|
|
1816
1933
|
"aliases": [],
|
|
1817
|
-
"args": {
|
|
1818
|
-
|
|
1819
|
-
"description": "Config key",
|
|
1820
|
-
"name": "key",
|
|
1821
|
-
"required": true
|
|
1822
|
-
},
|
|
1823
|
-
"value": {
|
|
1824
|
-
"description": "Config value",
|
|
1825
|
-
"name": "value",
|
|
1826
|
-
"required": true
|
|
1827
|
-
}
|
|
1828
|
-
},
|
|
1829
|
-
"description": "Set a config value (e.g. base_url, api_key, token)",
|
|
1934
|
+
"args": {},
|
|
1935
|
+
"description": "Create a new API key (JWT required)",
|
|
1830
1936
|
"flags": {
|
|
1831
1937
|
"json": {
|
|
1832
1938
|
"description": "Format output as json.",
|
|
@@ -1858,11 +1964,47 @@
|
|
|
1858
1964
|
"hasDynamicHelp": false,
|
|
1859
1965
|
"multiple": false,
|
|
1860
1966
|
"type": "option"
|
|
1967
|
+
},
|
|
1968
|
+
"name": {
|
|
1969
|
+
"description": "Key name/label",
|
|
1970
|
+
"name": "name",
|
|
1971
|
+
"required": true,
|
|
1972
|
+
"hasDynamicHelp": false,
|
|
1973
|
+
"multiple": false,
|
|
1974
|
+
"type": "option"
|
|
1975
|
+
},
|
|
1976
|
+
"expires-days": {
|
|
1977
|
+
"description": "Expiry in days (omit for no expiry)",
|
|
1978
|
+
"name": "expires-days",
|
|
1979
|
+
"hasDynamicHelp": false,
|
|
1980
|
+
"multiple": false,
|
|
1981
|
+
"type": "option"
|
|
1982
|
+
},
|
|
1983
|
+
"budget": {
|
|
1984
|
+
"description": "Spend budget in USD",
|
|
1985
|
+
"name": "budget",
|
|
1986
|
+
"hasDynamicHelp": false,
|
|
1987
|
+
"multiple": false,
|
|
1988
|
+
"type": "option"
|
|
1989
|
+
},
|
|
1990
|
+
"face": {
|
|
1991
|
+
"description": "Allowed face alias (repeatable)",
|
|
1992
|
+
"name": "face",
|
|
1993
|
+
"hasDynamicHelp": false,
|
|
1994
|
+
"multiple": true,
|
|
1995
|
+
"type": "option"
|
|
1996
|
+
},
|
|
1997
|
+
"model": {
|
|
1998
|
+
"description": "Allowed model name (repeatable)",
|
|
1999
|
+
"name": "model",
|
|
2000
|
+
"hasDynamicHelp": false,
|
|
2001
|
+
"multiple": true,
|
|
2002
|
+
"type": "option"
|
|
1861
2003
|
}
|
|
1862
2004
|
},
|
|
1863
2005
|
"hasDynamicHelp": false,
|
|
1864
2006
|
"hiddenAliases": [],
|
|
1865
|
-
"id": "
|
|
2007
|
+
"id": "keys:create",
|
|
1866
2008
|
"pluginAlias": "faces-cli",
|
|
1867
2009
|
"pluginName": "faces-cli",
|
|
1868
2010
|
"pluginType": "core",
|
|
@@ -1872,14 +2014,14 @@
|
|
|
1872
2014
|
"relativePath": [
|
|
1873
2015
|
"dist",
|
|
1874
2016
|
"commands",
|
|
1875
|
-
"
|
|
1876
|
-
"
|
|
2017
|
+
"keys",
|
|
2018
|
+
"create.js"
|
|
1877
2019
|
]
|
|
1878
2020
|
},
|
|
1879
|
-
"
|
|
2021
|
+
"keys:list": {
|
|
1880
2022
|
"aliases": [],
|
|
1881
2023
|
"args": {},
|
|
1882
|
-
"description": "
|
|
2024
|
+
"description": "List all API keys (JWT required)",
|
|
1883
2025
|
"flags": {
|
|
1884
2026
|
"json": {
|
|
1885
2027
|
"description": "Format output as json.",
|
|
@@ -1915,7 +2057,7 @@
|
|
|
1915
2057
|
},
|
|
1916
2058
|
"hasDynamicHelp": false,
|
|
1917
2059
|
"hiddenAliases": [],
|
|
1918
|
-
"id": "
|
|
2060
|
+
"id": "keys:list",
|
|
1919
2061
|
"pluginAlias": "faces-cli",
|
|
1920
2062
|
"pluginName": "faces-cli",
|
|
1921
2063
|
"pluginType": "core",
|
|
@@ -1925,14 +2067,20 @@
|
|
|
1925
2067
|
"relativePath": [
|
|
1926
2068
|
"dist",
|
|
1927
2069
|
"commands",
|
|
1928
|
-
"
|
|
1929
|
-
"
|
|
2070
|
+
"keys",
|
|
2071
|
+
"list.js"
|
|
1930
2072
|
]
|
|
1931
2073
|
},
|
|
1932
|
-
"
|
|
2074
|
+
"keys:revoke": {
|
|
1933
2075
|
"aliases": [],
|
|
1934
|
-
"args": {
|
|
1935
|
-
|
|
2076
|
+
"args": {
|
|
2077
|
+
"key_id": {
|
|
2078
|
+
"description": "Key ID",
|
|
2079
|
+
"name": "key_id",
|
|
2080
|
+
"required": true
|
|
2081
|
+
}
|
|
2082
|
+
},
|
|
2083
|
+
"description": "Revoke an API key (JWT required)",
|
|
1936
2084
|
"flags": {
|
|
1937
2085
|
"json": {
|
|
1938
2086
|
"description": "Format output as json.",
|
|
@@ -1965,61 +2113,16 @@
|
|
|
1965
2113
|
"multiple": false,
|
|
1966
2114
|
"type": "option"
|
|
1967
2115
|
},
|
|
1968
|
-
"
|
|
1969
|
-
"description": "
|
|
1970
|
-
"name": "
|
|
1971
|
-
"
|
|
1972
|
-
"
|
|
1973
|
-
"multiple": false,
|
|
1974
|
-
"type": "option"
|
|
1975
|
-
},
|
|
1976
|
-
"alias": {
|
|
1977
|
-
"description": "Unique alias slug",
|
|
1978
|
-
"name": "alias",
|
|
1979
|
-
"required": true,
|
|
1980
|
-
"hasDynamicHelp": false,
|
|
1981
|
-
"multiple": false,
|
|
1982
|
-
"type": "option"
|
|
1983
|
-
},
|
|
1984
|
-
"description": {
|
|
1985
|
-
"description": "Description for local catalog",
|
|
1986
|
-
"name": "description",
|
|
1987
|
-
"hasDynamicHelp": false,
|
|
1988
|
-
"multiple": false,
|
|
1989
|
-
"type": "option"
|
|
1990
|
-
},
|
|
1991
|
-
"default-model": {
|
|
1992
|
-
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
1993
|
-
"name": "default-model",
|
|
1994
|
-
"hasDynamicHelp": false,
|
|
1995
|
-
"multiple": false,
|
|
1996
|
-
"type": "option"
|
|
1997
|
-
},
|
|
1998
|
-
"formula": {
|
|
1999
|
-
"description": "Boolean formula over owned concrete face aliases (e.g. \"a | b\", \"(a | b) - c\"). Creates a composite face.",
|
|
2000
|
-
"name": "formula",
|
|
2001
|
-
"hasDynamicHelp": false,
|
|
2002
|
-
"multiple": false,
|
|
2003
|
-
"type": "option"
|
|
2004
|
-
},
|
|
2005
|
-
"attr": {
|
|
2006
|
-
"description": "Attribute KEY=VALUE (repeatable)",
|
|
2007
|
-
"name": "attr",
|
|
2008
|
-
"hasDynamicHelp": false,
|
|
2009
|
-
"multiple": true,
|
|
2010
|
-
"type": "option"
|
|
2011
|
-
},
|
|
2012
|
-
"tool": {
|
|
2013
|
-
"description": "Tool name to enable (repeatable)",
|
|
2014
|
-
"name": "tool",
|
|
2015
|
-
"hasDynamicHelp": false,
|
|
2016
|
-
"multiple": true,
|
|
2017
|
-
"type": "option"
|
|
2116
|
+
"yes": {
|
|
2117
|
+
"description": "Skip confirmation",
|
|
2118
|
+
"name": "yes",
|
|
2119
|
+
"allowNo": false,
|
|
2120
|
+
"type": "boolean"
|
|
2018
2121
|
}
|
|
2019
2122
|
},
|
|
2020
2123
|
"hasDynamicHelp": false,
|
|
2021
2124
|
"hiddenAliases": [],
|
|
2022
|
-
"id": "
|
|
2125
|
+
"id": "keys:revoke",
|
|
2023
2126
|
"pluginAlias": "faces-cli",
|
|
2024
2127
|
"pluginName": "faces-cli",
|
|
2025
2128
|
"pluginType": "core",
|
|
@@ -2029,20 +2132,20 @@
|
|
|
2029
2132
|
"relativePath": [
|
|
2030
2133
|
"dist",
|
|
2031
2134
|
"commands",
|
|
2032
|
-
"
|
|
2033
|
-
"
|
|
2135
|
+
"keys",
|
|
2136
|
+
"revoke.js"
|
|
2034
2137
|
]
|
|
2035
2138
|
},
|
|
2036
|
-
"
|
|
2139
|
+
"keys:update": {
|
|
2037
2140
|
"aliases": [],
|
|
2038
2141
|
"args": {
|
|
2039
|
-
"
|
|
2040
|
-
"description": "
|
|
2041
|
-
"name": "
|
|
2142
|
+
"key_id": {
|
|
2143
|
+
"description": "Key ID",
|
|
2144
|
+
"name": "key_id",
|
|
2042
2145
|
"required": true
|
|
2043
2146
|
}
|
|
2044
2147
|
},
|
|
2045
|
-
"description": "
|
|
2148
|
+
"description": "Update API key metadata (JWT required)",
|
|
2046
2149
|
"flags": {
|
|
2047
2150
|
"json": {
|
|
2048
2151
|
"description": "Format output as json.",
|
|
@@ -2075,15 +2178,251 @@
|
|
|
2075
2178
|
"multiple": false,
|
|
2076
2179
|
"type": "option"
|
|
2077
2180
|
},
|
|
2078
|
-
"
|
|
2079
|
-
"description": "
|
|
2080
|
-
"name": "
|
|
2081
|
-
"
|
|
2082
|
-
"
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2181
|
+
"name": {
|
|
2182
|
+
"description": "New key name",
|
|
2183
|
+
"name": "name",
|
|
2184
|
+
"hasDynamicHelp": false,
|
|
2185
|
+
"multiple": false,
|
|
2186
|
+
"type": "option"
|
|
2187
|
+
},
|
|
2188
|
+
"budget": {
|
|
2189
|
+
"description": "New spend budget in USD",
|
|
2190
|
+
"name": "budget",
|
|
2191
|
+
"hasDynamicHelp": false,
|
|
2192
|
+
"multiple": false,
|
|
2193
|
+
"type": "option"
|
|
2194
|
+
},
|
|
2195
|
+
"reset-spent": {
|
|
2196
|
+
"description": "Reset spent amount to zero",
|
|
2197
|
+
"name": "reset-spent",
|
|
2198
|
+
"allowNo": false,
|
|
2199
|
+
"type": "boolean"
|
|
2200
|
+
}
|
|
2201
|
+
},
|
|
2202
|
+
"hasDynamicHelp": false,
|
|
2203
|
+
"hiddenAliases": [],
|
|
2204
|
+
"id": "keys:update",
|
|
2205
|
+
"pluginAlias": "faces-cli",
|
|
2206
|
+
"pluginName": "faces-cli",
|
|
2207
|
+
"pluginType": "core",
|
|
2208
|
+
"strict": true,
|
|
2209
|
+
"enableJsonFlag": true,
|
|
2210
|
+
"isESM": true,
|
|
2211
|
+
"relativePath": [
|
|
2212
|
+
"dist",
|
|
2213
|
+
"commands",
|
|
2214
|
+
"keys",
|
|
2215
|
+
"update.js"
|
|
2216
|
+
]
|
|
2217
|
+
},
|
|
2218
|
+
"face:attributes": {
|
|
2219
|
+
"aliases": [],
|
|
2220
|
+
"args": {},
|
|
2221
|
+
"description": "List all supported attribute keys",
|
|
2222
|
+
"flags": {
|
|
2223
|
+
"json": {
|
|
2224
|
+
"description": "Format output as json.",
|
|
2225
|
+
"helpGroup": "GLOBAL",
|
|
2226
|
+
"name": "json",
|
|
2227
|
+
"allowNo": false,
|
|
2228
|
+
"type": "boolean"
|
|
2229
|
+
},
|
|
2230
|
+
"base-url": {
|
|
2231
|
+
"description": "API base URL",
|
|
2232
|
+
"env": "FACES_BASE_URL",
|
|
2233
|
+
"name": "base-url",
|
|
2234
|
+
"hasDynamicHelp": false,
|
|
2235
|
+
"multiple": false,
|
|
2236
|
+
"type": "option"
|
|
2237
|
+
},
|
|
2238
|
+
"token": {
|
|
2239
|
+
"description": "JWT bearer token",
|
|
2240
|
+
"env": "FACES_TOKEN",
|
|
2241
|
+
"name": "token",
|
|
2242
|
+
"hasDynamicHelp": false,
|
|
2243
|
+
"multiple": false,
|
|
2244
|
+
"type": "option"
|
|
2245
|
+
},
|
|
2246
|
+
"api-key": {
|
|
2247
|
+
"description": "API key",
|
|
2248
|
+
"env": "FACES_API_KEY",
|
|
2249
|
+
"name": "api-key",
|
|
2250
|
+
"hasDynamicHelp": false,
|
|
2251
|
+
"multiple": false,
|
|
2252
|
+
"type": "option"
|
|
2253
|
+
}
|
|
2254
|
+
},
|
|
2255
|
+
"hasDynamicHelp": false,
|
|
2256
|
+
"hiddenAliases": [],
|
|
2257
|
+
"id": "face:attributes",
|
|
2258
|
+
"pluginAlias": "faces-cli",
|
|
2259
|
+
"pluginName": "faces-cli",
|
|
2260
|
+
"pluginType": "core",
|
|
2261
|
+
"strict": true,
|
|
2262
|
+
"enableJsonFlag": true,
|
|
2263
|
+
"isESM": true,
|
|
2264
|
+
"relativePath": [
|
|
2265
|
+
"dist",
|
|
2266
|
+
"commands",
|
|
2267
|
+
"face",
|
|
2268
|
+
"attributes.js"
|
|
2269
|
+
]
|
|
2270
|
+
},
|
|
2271
|
+
"face:create": {
|
|
2272
|
+
"aliases": [],
|
|
2273
|
+
"args": {},
|
|
2274
|
+
"description": "Create a new face",
|
|
2275
|
+
"flags": {
|
|
2276
|
+
"json": {
|
|
2277
|
+
"description": "Format output as json.",
|
|
2278
|
+
"helpGroup": "GLOBAL",
|
|
2279
|
+
"name": "json",
|
|
2280
|
+
"allowNo": false,
|
|
2281
|
+
"type": "boolean"
|
|
2282
|
+
},
|
|
2283
|
+
"base-url": {
|
|
2284
|
+
"description": "API base URL",
|
|
2285
|
+
"env": "FACES_BASE_URL",
|
|
2286
|
+
"name": "base-url",
|
|
2287
|
+
"hasDynamicHelp": false,
|
|
2288
|
+
"multiple": false,
|
|
2289
|
+
"type": "option"
|
|
2290
|
+
},
|
|
2291
|
+
"token": {
|
|
2292
|
+
"description": "JWT bearer token",
|
|
2293
|
+
"env": "FACES_TOKEN",
|
|
2294
|
+
"name": "token",
|
|
2295
|
+
"hasDynamicHelp": false,
|
|
2296
|
+
"multiple": false,
|
|
2297
|
+
"type": "option"
|
|
2298
|
+
},
|
|
2299
|
+
"api-key": {
|
|
2300
|
+
"description": "API key",
|
|
2301
|
+
"env": "FACES_API_KEY",
|
|
2302
|
+
"name": "api-key",
|
|
2303
|
+
"hasDynamicHelp": false,
|
|
2304
|
+
"multiple": false,
|
|
2305
|
+
"type": "option"
|
|
2306
|
+
},
|
|
2307
|
+
"name": {
|
|
2308
|
+
"description": "Display name",
|
|
2309
|
+
"name": "name",
|
|
2310
|
+
"required": true,
|
|
2311
|
+
"hasDynamicHelp": false,
|
|
2312
|
+
"multiple": false,
|
|
2313
|
+
"type": "option"
|
|
2314
|
+
},
|
|
2315
|
+
"alias": {
|
|
2316
|
+
"description": "Unique alias slug",
|
|
2317
|
+
"name": "alias",
|
|
2318
|
+
"required": true,
|
|
2319
|
+
"hasDynamicHelp": false,
|
|
2320
|
+
"multiple": false,
|
|
2321
|
+
"type": "option"
|
|
2322
|
+
},
|
|
2323
|
+
"description": {
|
|
2324
|
+
"description": "Description for local catalog",
|
|
2325
|
+
"name": "description",
|
|
2326
|
+
"hasDynamicHelp": false,
|
|
2327
|
+
"multiple": false,
|
|
2328
|
+
"type": "option"
|
|
2329
|
+
},
|
|
2330
|
+
"default-model": {
|
|
2331
|
+
"description": "Default LLM for chat (e.g. gpt-4o-mini, claude-sonnet-4-6)",
|
|
2332
|
+
"name": "default-model",
|
|
2333
|
+
"hasDynamicHelp": false,
|
|
2334
|
+
"multiple": false,
|
|
2335
|
+
"type": "option"
|
|
2336
|
+
},
|
|
2337
|
+
"formula": {
|
|
2338
|
+
"description": "Boolean formula over owned concrete face aliases (e.g. \"a | b\", \"(a | b) - c\"). Creates a composite face.",
|
|
2339
|
+
"name": "formula",
|
|
2340
|
+
"hasDynamicHelp": false,
|
|
2341
|
+
"multiple": false,
|
|
2342
|
+
"type": "option"
|
|
2343
|
+
},
|
|
2344
|
+
"attr": {
|
|
2345
|
+
"description": "Attribute KEY=VALUE (repeatable)",
|
|
2346
|
+
"name": "attr",
|
|
2347
|
+
"hasDynamicHelp": false,
|
|
2348
|
+
"multiple": true,
|
|
2349
|
+
"type": "option"
|
|
2350
|
+
},
|
|
2351
|
+
"tool": {
|
|
2352
|
+
"description": "Tool name to enable (repeatable)",
|
|
2353
|
+
"name": "tool",
|
|
2354
|
+
"hasDynamicHelp": false,
|
|
2355
|
+
"multiple": true,
|
|
2356
|
+
"type": "option"
|
|
2357
|
+
}
|
|
2358
|
+
},
|
|
2359
|
+
"hasDynamicHelp": false,
|
|
2360
|
+
"hiddenAliases": [],
|
|
2361
|
+
"id": "face:create",
|
|
2362
|
+
"pluginAlias": "faces-cli",
|
|
2363
|
+
"pluginName": "faces-cli",
|
|
2364
|
+
"pluginType": "core",
|
|
2365
|
+
"strict": true,
|
|
2366
|
+
"enableJsonFlag": true,
|
|
2367
|
+
"isESM": true,
|
|
2368
|
+
"relativePath": [
|
|
2369
|
+
"dist",
|
|
2370
|
+
"commands",
|
|
2371
|
+
"face",
|
|
2372
|
+
"create.js"
|
|
2373
|
+
]
|
|
2374
|
+
},
|
|
2375
|
+
"face:delete": {
|
|
2376
|
+
"aliases": [],
|
|
2377
|
+
"args": {
|
|
2378
|
+
"face_id": {
|
|
2379
|
+
"description": "Face alias",
|
|
2380
|
+
"name": "face_id",
|
|
2381
|
+
"required": true
|
|
2382
|
+
}
|
|
2383
|
+
},
|
|
2384
|
+
"description": "Delete a face permanently",
|
|
2385
|
+
"flags": {
|
|
2386
|
+
"json": {
|
|
2387
|
+
"description": "Format output as json.",
|
|
2388
|
+
"helpGroup": "GLOBAL",
|
|
2389
|
+
"name": "json",
|
|
2390
|
+
"allowNo": false,
|
|
2391
|
+
"type": "boolean"
|
|
2392
|
+
},
|
|
2393
|
+
"base-url": {
|
|
2394
|
+
"description": "API base URL",
|
|
2395
|
+
"env": "FACES_BASE_URL",
|
|
2396
|
+
"name": "base-url",
|
|
2397
|
+
"hasDynamicHelp": false,
|
|
2398
|
+
"multiple": false,
|
|
2399
|
+
"type": "option"
|
|
2400
|
+
},
|
|
2401
|
+
"token": {
|
|
2402
|
+
"description": "JWT bearer token",
|
|
2403
|
+
"env": "FACES_TOKEN",
|
|
2404
|
+
"name": "token",
|
|
2405
|
+
"hasDynamicHelp": false,
|
|
2406
|
+
"multiple": false,
|
|
2407
|
+
"type": "option"
|
|
2408
|
+
},
|
|
2409
|
+
"api-key": {
|
|
2410
|
+
"description": "API key",
|
|
2411
|
+
"env": "FACES_API_KEY",
|
|
2412
|
+
"name": "api-key",
|
|
2413
|
+
"hasDynamicHelp": false,
|
|
2414
|
+
"multiple": false,
|
|
2415
|
+
"type": "option"
|
|
2416
|
+
},
|
|
2417
|
+
"yes": {
|
|
2418
|
+
"description": "Skip confirmation",
|
|
2419
|
+
"name": "yes",
|
|
2420
|
+
"allowNo": false,
|
|
2421
|
+
"type": "boolean"
|
|
2422
|
+
}
|
|
2423
|
+
},
|
|
2424
|
+
"hasDynamicHelp": false,
|
|
2425
|
+
"hiddenAliases": [],
|
|
2087
2426
|
"id": "face:delete",
|
|
2088
2427
|
"pluginAlias": "faces-cli",
|
|
2089
2428
|
"pluginName": "faces-cli",
|
|
@@ -2616,10 +2955,16 @@
|
|
|
2616
2955
|
"upload.js"
|
|
2617
2956
|
]
|
|
2618
2957
|
},
|
|
2619
|
-
"
|
|
2958
|
+
"compile:thread:create": {
|
|
2620
2959
|
"aliases": [],
|
|
2621
|
-
"args": {
|
|
2622
|
-
|
|
2960
|
+
"args": {
|
|
2961
|
+
"face_id": {
|
|
2962
|
+
"description": "Face alias",
|
|
2963
|
+
"name": "face_id",
|
|
2964
|
+
"required": true
|
|
2965
|
+
}
|
|
2966
|
+
},
|
|
2967
|
+
"description": "Start a new thread for a face",
|
|
2623
2968
|
"flags": {
|
|
2624
2969
|
"json": {
|
|
2625
2970
|
"description": "Format output as json.",
|
|
@@ -2652,46 +2997,17 @@
|
|
|
2652
2997
|
"multiple": false,
|
|
2653
2998
|
"type": "option"
|
|
2654
2999
|
},
|
|
2655
|
-
"
|
|
2656
|
-
"description": "
|
|
2657
|
-
"name": "
|
|
2658
|
-
"required": true,
|
|
2659
|
-
"hasDynamicHelp": false,
|
|
2660
|
-
"multiple": false,
|
|
2661
|
-
"type": "option"
|
|
2662
|
-
},
|
|
2663
|
-
"expires-days": {
|
|
2664
|
-
"description": "Expiry in days (omit for no expiry)",
|
|
2665
|
-
"name": "expires-days",
|
|
2666
|
-
"hasDynamicHelp": false,
|
|
2667
|
-
"multiple": false,
|
|
2668
|
-
"type": "option"
|
|
2669
|
-
},
|
|
2670
|
-
"budget": {
|
|
2671
|
-
"description": "Spend budget in USD",
|
|
2672
|
-
"name": "budget",
|
|
3000
|
+
"label": {
|
|
3001
|
+
"description": "Thread label",
|
|
3002
|
+
"name": "label",
|
|
2673
3003
|
"hasDynamicHelp": false,
|
|
2674
3004
|
"multiple": false,
|
|
2675
3005
|
"type": "option"
|
|
2676
|
-
},
|
|
2677
|
-
"face": {
|
|
2678
|
-
"description": "Allowed face alias (repeatable)",
|
|
2679
|
-
"name": "face",
|
|
2680
|
-
"hasDynamicHelp": false,
|
|
2681
|
-
"multiple": true,
|
|
2682
|
-
"type": "option"
|
|
2683
|
-
},
|
|
2684
|
-
"model": {
|
|
2685
|
-
"description": "Allowed model name (repeatable)",
|
|
2686
|
-
"name": "model",
|
|
2687
|
-
"hasDynamicHelp": false,
|
|
2688
|
-
"multiple": true,
|
|
2689
|
-
"type": "option"
|
|
2690
3006
|
}
|
|
2691
3007
|
},
|
|
2692
3008
|
"hasDynamicHelp": false,
|
|
2693
3009
|
"hiddenAliases": [],
|
|
2694
|
-
"id": "
|
|
3010
|
+
"id": "compile:thread:create",
|
|
2695
3011
|
"pluginAlias": "faces-cli",
|
|
2696
3012
|
"pluginName": "faces-cli",
|
|
2697
3013
|
"pluginType": "core",
|
|
@@ -2701,73 +3017,21 @@
|
|
|
2701
3017
|
"relativePath": [
|
|
2702
3018
|
"dist",
|
|
2703
3019
|
"commands",
|
|
2704
|
-
"
|
|
3020
|
+
"compile",
|
|
3021
|
+
"thread",
|
|
2705
3022
|
"create.js"
|
|
2706
3023
|
]
|
|
2707
3024
|
},
|
|
2708
|
-
"
|
|
2709
|
-
"aliases": [],
|
|
2710
|
-
"args": {},
|
|
2711
|
-
"description": "List all API keys (JWT required)",
|
|
2712
|
-
"flags": {
|
|
2713
|
-
"json": {
|
|
2714
|
-
"description": "Format output as json.",
|
|
2715
|
-
"helpGroup": "GLOBAL",
|
|
2716
|
-
"name": "json",
|
|
2717
|
-
"allowNo": false,
|
|
2718
|
-
"type": "boolean"
|
|
2719
|
-
},
|
|
2720
|
-
"base-url": {
|
|
2721
|
-
"description": "API base URL",
|
|
2722
|
-
"env": "FACES_BASE_URL",
|
|
2723
|
-
"name": "base-url",
|
|
2724
|
-
"hasDynamicHelp": false,
|
|
2725
|
-
"multiple": false,
|
|
2726
|
-
"type": "option"
|
|
2727
|
-
},
|
|
2728
|
-
"token": {
|
|
2729
|
-
"description": "JWT bearer token",
|
|
2730
|
-
"env": "FACES_TOKEN",
|
|
2731
|
-
"name": "token",
|
|
2732
|
-
"hasDynamicHelp": false,
|
|
2733
|
-
"multiple": false,
|
|
2734
|
-
"type": "option"
|
|
2735
|
-
},
|
|
2736
|
-
"api-key": {
|
|
2737
|
-
"description": "API key",
|
|
2738
|
-
"env": "FACES_API_KEY",
|
|
2739
|
-
"name": "api-key",
|
|
2740
|
-
"hasDynamicHelp": false,
|
|
2741
|
-
"multiple": false,
|
|
2742
|
-
"type": "option"
|
|
2743
|
-
}
|
|
2744
|
-
},
|
|
2745
|
-
"hasDynamicHelp": false,
|
|
2746
|
-
"hiddenAliases": [],
|
|
2747
|
-
"id": "keys:list",
|
|
2748
|
-
"pluginAlias": "faces-cli",
|
|
2749
|
-
"pluginName": "faces-cli",
|
|
2750
|
-
"pluginType": "core",
|
|
2751
|
-
"strict": true,
|
|
2752
|
-
"enableJsonFlag": true,
|
|
2753
|
-
"isESM": true,
|
|
2754
|
-
"relativePath": [
|
|
2755
|
-
"dist",
|
|
2756
|
-
"commands",
|
|
2757
|
-
"keys",
|
|
2758
|
-
"list.js"
|
|
2759
|
-
]
|
|
2760
|
-
},
|
|
2761
|
-
"keys:revoke": {
|
|
3025
|
+
"compile:thread:delete": {
|
|
2762
3026
|
"aliases": [],
|
|
2763
3027
|
"args": {
|
|
2764
|
-
"
|
|
2765
|
-
"description": "
|
|
2766
|
-
"name": "
|
|
3028
|
+
"thread_id": {
|
|
3029
|
+
"description": "Thread ID",
|
|
3030
|
+
"name": "thread_id",
|
|
2767
3031
|
"required": true
|
|
2768
3032
|
}
|
|
2769
3033
|
},
|
|
2770
|
-
"description": "
|
|
3034
|
+
"description": "Delete a thread",
|
|
2771
3035
|
"flags": {
|
|
2772
3036
|
"json": {
|
|
2773
3037
|
"description": "Format output as json.",
|
|
@@ -2809,86 +3073,7 @@
|
|
|
2809
3073
|
},
|
|
2810
3074
|
"hasDynamicHelp": false,
|
|
2811
3075
|
"hiddenAliases": [],
|
|
2812
|
-
"id": "
|
|
2813
|
-
"pluginAlias": "faces-cli",
|
|
2814
|
-
"pluginName": "faces-cli",
|
|
2815
|
-
"pluginType": "core",
|
|
2816
|
-
"strict": true,
|
|
2817
|
-
"enableJsonFlag": true,
|
|
2818
|
-
"isESM": true,
|
|
2819
|
-
"relativePath": [
|
|
2820
|
-
"dist",
|
|
2821
|
-
"commands",
|
|
2822
|
-
"keys",
|
|
2823
|
-
"revoke.js"
|
|
2824
|
-
]
|
|
2825
|
-
},
|
|
2826
|
-
"keys:update": {
|
|
2827
|
-
"aliases": [],
|
|
2828
|
-
"args": {
|
|
2829
|
-
"key_id": {
|
|
2830
|
-
"description": "Key ID",
|
|
2831
|
-
"name": "key_id",
|
|
2832
|
-
"required": true
|
|
2833
|
-
}
|
|
2834
|
-
},
|
|
2835
|
-
"description": "Update API key metadata (JWT required)",
|
|
2836
|
-
"flags": {
|
|
2837
|
-
"json": {
|
|
2838
|
-
"description": "Format output as json.",
|
|
2839
|
-
"helpGroup": "GLOBAL",
|
|
2840
|
-
"name": "json",
|
|
2841
|
-
"allowNo": false,
|
|
2842
|
-
"type": "boolean"
|
|
2843
|
-
},
|
|
2844
|
-
"base-url": {
|
|
2845
|
-
"description": "API base URL",
|
|
2846
|
-
"env": "FACES_BASE_URL",
|
|
2847
|
-
"name": "base-url",
|
|
2848
|
-
"hasDynamicHelp": false,
|
|
2849
|
-
"multiple": false,
|
|
2850
|
-
"type": "option"
|
|
2851
|
-
},
|
|
2852
|
-
"token": {
|
|
2853
|
-
"description": "JWT bearer token",
|
|
2854
|
-
"env": "FACES_TOKEN",
|
|
2855
|
-
"name": "token",
|
|
2856
|
-
"hasDynamicHelp": false,
|
|
2857
|
-
"multiple": false,
|
|
2858
|
-
"type": "option"
|
|
2859
|
-
},
|
|
2860
|
-
"api-key": {
|
|
2861
|
-
"description": "API key",
|
|
2862
|
-
"env": "FACES_API_KEY",
|
|
2863
|
-
"name": "api-key",
|
|
2864
|
-
"hasDynamicHelp": false,
|
|
2865
|
-
"multiple": false,
|
|
2866
|
-
"type": "option"
|
|
2867
|
-
},
|
|
2868
|
-
"name": {
|
|
2869
|
-
"description": "New key name",
|
|
2870
|
-
"name": "name",
|
|
2871
|
-
"hasDynamicHelp": false,
|
|
2872
|
-
"multiple": false,
|
|
2873
|
-
"type": "option"
|
|
2874
|
-
},
|
|
2875
|
-
"budget": {
|
|
2876
|
-
"description": "New spend budget in USD",
|
|
2877
|
-
"name": "budget",
|
|
2878
|
-
"hasDynamicHelp": false,
|
|
2879
|
-
"multiple": false,
|
|
2880
|
-
"type": "option"
|
|
2881
|
-
},
|
|
2882
|
-
"reset-spent": {
|
|
2883
|
-
"description": "Reset spent amount to zero",
|
|
2884
|
-
"name": "reset-spent",
|
|
2885
|
-
"allowNo": false,
|
|
2886
|
-
"type": "boolean"
|
|
2887
|
-
}
|
|
2888
|
-
},
|
|
2889
|
-
"hasDynamicHelp": false,
|
|
2890
|
-
"hiddenAliases": [],
|
|
2891
|
-
"id": "keys:update",
|
|
3076
|
+
"id": "compile:thread:delete",
|
|
2892
3077
|
"pluginAlias": "faces-cli",
|
|
2893
3078
|
"pluginName": "faces-cli",
|
|
2894
3079
|
"pluginType": "core",
|
|
@@ -2898,20 +3083,21 @@
|
|
|
2898
3083
|
"relativePath": [
|
|
2899
3084
|
"dist",
|
|
2900
3085
|
"commands",
|
|
2901
|
-
"
|
|
2902
|
-
"
|
|
3086
|
+
"compile",
|
|
3087
|
+
"thread",
|
|
3088
|
+
"delete.js"
|
|
2903
3089
|
]
|
|
2904
3090
|
},
|
|
2905
|
-
"compile:
|
|
3091
|
+
"compile:thread:edit": {
|
|
2906
3092
|
"aliases": [],
|
|
2907
3093
|
"args": {
|
|
2908
|
-
"
|
|
2909
|
-
"description": "
|
|
2910
|
-
"name": "
|
|
3094
|
+
"thread_id": {
|
|
3095
|
+
"description": "Thread ID",
|
|
3096
|
+
"name": "thread_id",
|
|
2911
3097
|
"required": true
|
|
2912
3098
|
}
|
|
2913
3099
|
},
|
|
2914
|
-
"description": "
|
|
3100
|
+
"description": "Edit a thread (label and/or reassign face speaker)",
|
|
2915
3101
|
"flags": {
|
|
2916
3102
|
"json": {
|
|
2917
3103
|
"description": "Format output as json.",
|
|
@@ -2945,94 +3131,15 @@
|
|
|
2945
3131
|
"type": "option"
|
|
2946
3132
|
},
|
|
2947
3133
|
"label": {
|
|
2948
|
-
"description": "
|
|
3134
|
+
"description": "New thread label",
|
|
2949
3135
|
"name": "label",
|
|
2950
3136
|
"hasDynamicHelp": false,
|
|
2951
3137
|
"multiple": false,
|
|
2952
3138
|
"type": "option"
|
|
2953
3139
|
},
|
|
2954
|
-
"
|
|
2955
|
-
"description": "
|
|
2956
|
-
"name": "
|
|
2957
|
-
"hasDynamicHelp": false,
|
|
2958
|
-
"multiple": false,
|
|
2959
|
-
"type": "option"
|
|
2960
|
-
},
|
|
2961
|
-
"file": {
|
|
2962
|
-
"description": "Read content from file",
|
|
2963
|
-
"name": "file",
|
|
2964
|
-
"hasDynamicHelp": false,
|
|
2965
|
-
"multiple": false,
|
|
2966
|
-
"type": "option"
|
|
2967
|
-
},
|
|
2968
|
-
"perspective": {
|
|
2969
|
-
"description": "Perspective (first-person or third-person)",
|
|
2970
|
-
"name": "perspective",
|
|
2971
|
-
"default": "first-person",
|
|
2972
|
-
"hasDynamicHelp": false,
|
|
2973
|
-
"multiple": false,
|
|
2974
|
-
"options": [
|
|
2975
|
-
"first-person",
|
|
2976
|
-
"third-person"
|
|
2977
|
-
],
|
|
2978
|
-
"type": "option"
|
|
2979
|
-
}
|
|
2980
|
-
},
|
|
2981
|
-
"hasDynamicHelp": false,
|
|
2982
|
-
"hiddenAliases": [],
|
|
2983
|
-
"id": "compile:doc:create",
|
|
2984
|
-
"pluginAlias": "faces-cli",
|
|
2985
|
-
"pluginName": "faces-cli",
|
|
2986
|
-
"pluginType": "core",
|
|
2987
|
-
"strict": true,
|
|
2988
|
-
"enableJsonFlag": true,
|
|
2989
|
-
"isESM": true,
|
|
2990
|
-
"relativePath": [
|
|
2991
|
-
"dist",
|
|
2992
|
-
"commands",
|
|
2993
|
-
"compile",
|
|
2994
|
-
"doc",
|
|
2995
|
-
"create.js"
|
|
2996
|
-
]
|
|
2997
|
-
},
|
|
2998
|
-
"compile:doc:delete": {
|
|
2999
|
-
"aliases": [],
|
|
3000
|
-
"args": {
|
|
3001
|
-
"doc_id": {
|
|
3002
|
-
"description": "Document ID",
|
|
3003
|
-
"name": "doc_id",
|
|
3004
|
-
"required": true
|
|
3005
|
-
}
|
|
3006
|
-
},
|
|
3007
|
-
"description": "Delete a document",
|
|
3008
|
-
"flags": {
|
|
3009
|
-
"json": {
|
|
3010
|
-
"description": "Format output as json.",
|
|
3011
|
-
"helpGroup": "GLOBAL",
|
|
3012
|
-
"name": "json",
|
|
3013
|
-
"allowNo": false,
|
|
3014
|
-
"type": "boolean"
|
|
3015
|
-
},
|
|
3016
|
-
"base-url": {
|
|
3017
|
-
"description": "API base URL",
|
|
3018
|
-
"env": "FACES_BASE_URL",
|
|
3019
|
-
"name": "base-url",
|
|
3020
|
-
"hasDynamicHelp": false,
|
|
3021
|
-
"multiple": false,
|
|
3022
|
-
"type": "option"
|
|
3023
|
-
},
|
|
3024
|
-
"token": {
|
|
3025
|
-
"description": "JWT bearer token",
|
|
3026
|
-
"env": "FACES_TOKEN",
|
|
3027
|
-
"name": "token",
|
|
3028
|
-
"hasDynamicHelp": false,
|
|
3029
|
-
"multiple": false,
|
|
3030
|
-
"type": "option"
|
|
3031
|
-
},
|
|
3032
|
-
"api-key": {
|
|
3033
|
-
"description": "API key",
|
|
3034
|
-
"env": "FACES_API_KEY",
|
|
3035
|
-
"name": "api-key",
|
|
3140
|
+
"face-speaker": {
|
|
3141
|
+
"description": "Reassign face speaker: set this speaker to role=user, all others to role=assistant",
|
|
3142
|
+
"name": "face-speaker",
|
|
3036
3143
|
"hasDynamicHelp": false,
|
|
3037
3144
|
"multiple": false,
|
|
3038
3145
|
"type": "option"
|
|
@@ -3040,7 +3147,7 @@
|
|
|
3040
3147
|
},
|
|
3041
3148
|
"hasDynamicHelp": false,
|
|
3042
3149
|
"hiddenAliases": [],
|
|
3043
|
-
"id": "compile:
|
|
3150
|
+
"id": "compile:thread:edit",
|
|
3044
3151
|
"pluginAlias": "faces-cli",
|
|
3045
3152
|
"pluginName": "faces-cli",
|
|
3046
3153
|
"pluginType": "core",
|
|
@@ -3051,20 +3158,20 @@
|
|
|
3051
3158
|
"dist",
|
|
3052
3159
|
"commands",
|
|
3053
3160
|
"compile",
|
|
3054
|
-
"
|
|
3055
|
-
"
|
|
3161
|
+
"thread",
|
|
3162
|
+
"edit.js"
|
|
3056
3163
|
]
|
|
3057
3164
|
},
|
|
3058
|
-
"compile:
|
|
3165
|
+
"compile:thread:get": {
|
|
3059
3166
|
"aliases": [],
|
|
3060
3167
|
"args": {
|
|
3061
|
-
"
|
|
3062
|
-
"description": "
|
|
3063
|
-
"name": "
|
|
3168
|
+
"thread_id": {
|
|
3169
|
+
"description": "Thread ID",
|
|
3170
|
+
"name": "thread_id",
|
|
3064
3171
|
"required": true
|
|
3065
3172
|
}
|
|
3066
3173
|
},
|
|
3067
|
-
"description": "
|
|
3174
|
+
"description": "Get a thread by ID",
|
|
3068
3175
|
"flags": {
|
|
3069
3176
|
"json": {
|
|
3070
3177
|
"description": "Format output as json.",
|
|
@@ -3096,43 +3203,11 @@
|
|
|
3096
3203
|
"hasDynamicHelp": false,
|
|
3097
3204
|
"multiple": false,
|
|
3098
3205
|
"type": "option"
|
|
3099
|
-
},
|
|
3100
|
-
"label": {
|
|
3101
|
-
"description": "New label/title",
|
|
3102
|
-
"name": "label",
|
|
3103
|
-
"hasDynamicHelp": false,
|
|
3104
|
-
"multiple": false,
|
|
3105
|
-
"type": "option"
|
|
3106
|
-
},
|
|
3107
|
-
"content": {
|
|
3108
|
-
"description": "New inline text content",
|
|
3109
|
-
"name": "content",
|
|
3110
|
-
"hasDynamicHelp": false,
|
|
3111
|
-
"multiple": false,
|
|
3112
|
-
"type": "option"
|
|
3113
|
-
},
|
|
3114
|
-
"file": {
|
|
3115
|
-
"description": "Read new content from file",
|
|
3116
|
-
"name": "file",
|
|
3117
|
-
"hasDynamicHelp": false,
|
|
3118
|
-
"multiple": false,
|
|
3119
|
-
"type": "option"
|
|
3120
|
-
},
|
|
3121
|
-
"perspective": {
|
|
3122
|
-
"description": "Perspective (first-person or third-person)",
|
|
3123
|
-
"name": "perspective",
|
|
3124
|
-
"hasDynamicHelp": false,
|
|
3125
|
-
"multiple": false,
|
|
3126
|
-
"options": [
|
|
3127
|
-
"first-person",
|
|
3128
|
-
"third-person"
|
|
3129
|
-
],
|
|
3130
|
-
"type": "option"
|
|
3131
3206
|
}
|
|
3132
3207
|
},
|
|
3133
3208
|
"hasDynamicHelp": false,
|
|
3134
3209
|
"hiddenAliases": [],
|
|
3135
|
-
"id": "compile:
|
|
3210
|
+
"id": "compile:thread:get",
|
|
3136
3211
|
"pluginAlias": "faces-cli",
|
|
3137
3212
|
"pluginName": "faces-cli",
|
|
3138
3213
|
"pluginType": "core",
|
|
@@ -3143,20 +3218,20 @@
|
|
|
3143
3218
|
"dist",
|
|
3144
3219
|
"commands",
|
|
3145
3220
|
"compile",
|
|
3146
|
-
"
|
|
3147
|
-
"
|
|
3221
|
+
"thread",
|
|
3222
|
+
"get.js"
|
|
3148
3223
|
]
|
|
3149
3224
|
},
|
|
3150
|
-
"compile:
|
|
3225
|
+
"compile:thread:list": {
|
|
3151
3226
|
"aliases": [],
|
|
3152
3227
|
"args": {
|
|
3153
|
-
"
|
|
3154
|
-
"description": "
|
|
3155
|
-
"name": "
|
|
3228
|
+
"face_id": {
|
|
3229
|
+
"description": "Face alias",
|
|
3230
|
+
"name": "face_id",
|
|
3156
3231
|
"required": true
|
|
3157
3232
|
}
|
|
3158
3233
|
},
|
|
3159
|
-
"description": "
|
|
3234
|
+
"description": "List threads for a face",
|
|
3160
3235
|
"flags": {
|
|
3161
3236
|
"json": {
|
|
3162
3237
|
"description": "Format output as json.",
|
|
@@ -3192,7 +3267,7 @@
|
|
|
3192
3267
|
},
|
|
3193
3268
|
"hasDynamicHelp": false,
|
|
3194
3269
|
"hiddenAliases": [],
|
|
3195
|
-
"id": "compile:
|
|
3270
|
+
"id": "compile:thread:list",
|
|
3196
3271
|
"pluginAlias": "faces-cli",
|
|
3197
3272
|
"pluginName": "faces-cli",
|
|
3198
3273
|
"pluginType": "core",
|
|
@@ -3203,20 +3278,20 @@
|
|
|
3203
3278
|
"dist",
|
|
3204
3279
|
"commands",
|
|
3205
3280
|
"compile",
|
|
3206
|
-
"
|
|
3207
|
-
"
|
|
3281
|
+
"thread",
|
|
3282
|
+
"list.js"
|
|
3208
3283
|
]
|
|
3209
3284
|
},
|
|
3210
|
-
"compile:
|
|
3285
|
+
"compile:thread:make": {
|
|
3211
3286
|
"aliases": [],
|
|
3212
3287
|
"args": {
|
|
3213
|
-
"
|
|
3214
|
-
"description": "
|
|
3215
|
-
"name": "
|
|
3288
|
+
"thread_id": {
|
|
3289
|
+
"description": "Thread ID",
|
|
3290
|
+
"name": "thread_id",
|
|
3216
3291
|
"required": true
|
|
3217
3292
|
}
|
|
3218
3293
|
},
|
|
3219
|
-
"description": "Compile
|
|
3294
|
+
"description": "Compile an existing thread (prepare + sync in one step)",
|
|
3220
3295
|
"flags": {
|
|
3221
3296
|
"json": {
|
|
3222
3297
|
"description": "Format output as json.",
|
|
@@ -3249,39 +3324,6 @@
|
|
|
3249
3324
|
"multiple": false,
|
|
3250
3325
|
"type": "option"
|
|
3251
3326
|
},
|
|
3252
|
-
"label": {
|
|
3253
|
-
"description": "Document label/title",
|
|
3254
|
-
"name": "label",
|
|
3255
|
-
"hasDynamicHelp": false,
|
|
3256
|
-
"multiple": false,
|
|
3257
|
-
"type": "option"
|
|
3258
|
-
},
|
|
3259
|
-
"content": {
|
|
3260
|
-
"description": "Inline text content",
|
|
3261
|
-
"name": "content",
|
|
3262
|
-
"hasDynamicHelp": false,
|
|
3263
|
-
"multiple": false,
|
|
3264
|
-
"type": "option"
|
|
3265
|
-
},
|
|
3266
|
-
"file": {
|
|
3267
|
-
"description": "Read content from file",
|
|
3268
|
-
"name": "file",
|
|
3269
|
-
"hasDynamicHelp": false,
|
|
3270
|
-
"multiple": false,
|
|
3271
|
-
"type": "option"
|
|
3272
|
-
},
|
|
3273
|
-
"perspective": {
|
|
3274
|
-
"description": "Perspective",
|
|
3275
|
-
"name": "perspective",
|
|
3276
|
-
"default": "first-person",
|
|
3277
|
-
"hasDynamicHelp": false,
|
|
3278
|
-
"multiple": false,
|
|
3279
|
-
"options": [
|
|
3280
|
-
"first-person",
|
|
3281
|
-
"third-person"
|
|
3282
|
-
],
|
|
3283
|
-
"type": "option"
|
|
3284
|
-
},
|
|
3285
3327
|
"timeout": {
|
|
3286
3328
|
"description": "Compile timeout in seconds (default: 600)",
|
|
3287
3329
|
"name": "timeout",
|
|
@@ -3291,7 +3333,7 @@
|
|
|
3291
3333
|
"type": "option"
|
|
3292
3334
|
},
|
|
3293
3335
|
"no-wait": {
|
|
3294
|
-
"description": "
|
|
3336
|
+
"description": "Return immediately after triggering compilation. Prints the thread ID for manual polling.",
|
|
3295
3337
|
"name": "no-wait",
|
|
3296
3338
|
"allowNo": false,
|
|
3297
3339
|
"type": "boolean"
|
|
@@ -3299,7 +3341,7 @@
|
|
|
3299
3341
|
},
|
|
3300
3342
|
"hasDynamicHelp": false,
|
|
3301
3343
|
"hiddenAliases": [],
|
|
3302
|
-
"id": "compile:
|
|
3344
|
+
"id": "compile:thread:make",
|
|
3303
3345
|
"pluginAlias": "faces-cli",
|
|
3304
3346
|
"pluginName": "faces-cli",
|
|
3305
3347
|
"pluginType": "core",
|
|
@@ -3310,20 +3352,20 @@
|
|
|
3310
3352
|
"dist",
|
|
3311
3353
|
"commands",
|
|
3312
3354
|
"compile",
|
|
3313
|
-
"
|
|
3314
|
-
"
|
|
3355
|
+
"thread",
|
|
3356
|
+
"make.js"
|
|
3315
3357
|
]
|
|
3316
3358
|
},
|
|
3317
|
-
"compile:
|
|
3359
|
+
"compile:thread:message": {
|
|
3318
3360
|
"aliases": [],
|
|
3319
3361
|
"args": {
|
|
3320
|
-
"
|
|
3321
|
-
"description": "
|
|
3322
|
-
"name": "
|
|
3362
|
+
"thread_id": {
|
|
3363
|
+
"description": "Thread ID",
|
|
3364
|
+
"name": "thread_id",
|
|
3323
3365
|
"required": true
|
|
3324
3366
|
}
|
|
3325
3367
|
},
|
|
3326
|
-
"description": "
|
|
3368
|
+
"description": "Send a user message to a thread",
|
|
3327
3369
|
"flags": {
|
|
3328
3370
|
"json": {
|
|
3329
3371
|
"description": "Format output as json.",
|
|
@@ -3355,11 +3397,20 @@
|
|
|
3355
3397
|
"hasDynamicHelp": false,
|
|
3356
3398
|
"multiple": false,
|
|
3357
3399
|
"type": "option"
|
|
3400
|
+
},
|
|
3401
|
+
"message": {
|
|
3402
|
+
"char": "m",
|
|
3403
|
+
"description": "User message to append",
|
|
3404
|
+
"name": "message",
|
|
3405
|
+
"required": true,
|
|
3406
|
+
"hasDynamicHelp": false,
|
|
3407
|
+
"multiple": false,
|
|
3408
|
+
"type": "option"
|
|
3358
3409
|
}
|
|
3359
3410
|
},
|
|
3360
3411
|
"hasDynamicHelp": false,
|
|
3361
3412
|
"hiddenAliases": [],
|
|
3362
|
-
"id": "compile:
|
|
3413
|
+
"id": "compile:thread:message",
|
|
3363
3414
|
"pluginAlias": "faces-cli",
|
|
3364
3415
|
"pluginName": "faces-cli",
|
|
3365
3416
|
"pluginType": "core",
|
|
@@ -3370,20 +3421,20 @@
|
|
|
3370
3421
|
"dist",
|
|
3371
3422
|
"commands",
|
|
3372
3423
|
"compile",
|
|
3373
|
-
"
|
|
3374
|
-
"
|
|
3424
|
+
"thread",
|
|
3425
|
+
"message.js"
|
|
3375
3426
|
]
|
|
3376
3427
|
},
|
|
3377
|
-
"compile:
|
|
3428
|
+
"compile:thread:pause": {
|
|
3378
3429
|
"aliases": [],
|
|
3379
3430
|
"args": {
|
|
3380
|
-
"
|
|
3381
|
-
"description": "
|
|
3382
|
-
"name": "
|
|
3431
|
+
"thread_id": {
|
|
3432
|
+
"description": "Thread ID",
|
|
3433
|
+
"name": "thread_id",
|
|
3383
3434
|
"required": true
|
|
3384
3435
|
}
|
|
3385
3436
|
},
|
|
3386
|
-
"description": "
|
|
3437
|
+
"description": "Pause a running thread compilation (preserves progress, resume with make)",
|
|
3387
3438
|
"flags": {
|
|
3388
3439
|
"json": {
|
|
3389
3440
|
"description": "Format output as json.",
|
|
@@ -3415,25 +3466,11 @@
|
|
|
3415
3466
|
"hasDynamicHelp": false,
|
|
3416
3467
|
"multiple": false,
|
|
3417
3468
|
"type": "option"
|
|
3418
|
-
},
|
|
3419
|
-
"timeout": {
|
|
3420
|
-
"description": "Compile timeout in seconds (default: 600)",
|
|
3421
|
-
"name": "timeout",
|
|
3422
|
-
"default": 600,
|
|
3423
|
-
"hasDynamicHelp": false,
|
|
3424
|
-
"multiple": false,
|
|
3425
|
-
"type": "option"
|
|
3426
|
-
},
|
|
3427
|
-
"no-wait": {
|
|
3428
|
-
"description": "Return immediately after triggering compilation. Prints the document ID for manual polling.",
|
|
3429
|
-
"name": "no-wait",
|
|
3430
|
-
"allowNo": false,
|
|
3431
|
-
"type": "boolean"
|
|
3432
3469
|
}
|
|
3433
3470
|
},
|
|
3434
3471
|
"hasDynamicHelp": false,
|
|
3435
3472
|
"hiddenAliases": [],
|
|
3436
|
-
"id": "compile:
|
|
3473
|
+
"id": "compile:thread:pause",
|
|
3437
3474
|
"pluginAlias": "faces-cli",
|
|
3438
3475
|
"pluginName": "faces-cli",
|
|
3439
3476
|
"pluginType": "core",
|
|
@@ -3444,20 +3481,20 @@
|
|
|
3444
3481
|
"dist",
|
|
3445
3482
|
"commands",
|
|
3446
3483
|
"compile",
|
|
3447
|
-
"
|
|
3448
|
-
"
|
|
3484
|
+
"thread",
|
|
3485
|
+
"pause.js"
|
|
3449
3486
|
]
|
|
3450
3487
|
},
|
|
3451
|
-
"compile:
|
|
3488
|
+
"compile:thread:reset": {
|
|
3452
3489
|
"aliases": [],
|
|
3453
3490
|
"args": {
|
|
3454
|
-
"
|
|
3455
|
-
"description": "
|
|
3456
|
-
"name": "
|
|
3491
|
+
"thread_id": {
|
|
3492
|
+
"description": "Thread ID",
|
|
3493
|
+
"name": "thread_id",
|
|
3457
3494
|
"required": true
|
|
3458
3495
|
}
|
|
3459
3496
|
},
|
|
3460
|
-
"description": "
|
|
3497
|
+
"description": "Reset thread compilation progress (wipe extraction, keep source messages)",
|
|
3461
3498
|
"flags": {
|
|
3462
3499
|
"json": {
|
|
3463
3500
|
"description": "Format output as json.",
|
|
@@ -3489,11 +3526,17 @@
|
|
|
3489
3526
|
"hasDynamicHelp": false,
|
|
3490
3527
|
"multiple": false,
|
|
3491
3528
|
"type": "option"
|
|
3529
|
+
},
|
|
3530
|
+
"yes": {
|
|
3531
|
+
"description": "Skip confirmation",
|
|
3532
|
+
"name": "yes",
|
|
3533
|
+
"allowNo": false,
|
|
3534
|
+
"type": "boolean"
|
|
3492
3535
|
}
|
|
3493
3536
|
},
|
|
3494
3537
|
"hasDynamicHelp": false,
|
|
3495
3538
|
"hiddenAliases": [],
|
|
3496
|
-
"id": "compile:
|
|
3539
|
+
"id": "compile:thread:reset",
|
|
3497
3540
|
"pluginAlias": "faces-cli",
|
|
3498
3541
|
"pluginName": "faces-cli",
|
|
3499
3542
|
"pluginType": "core",
|
|
@@ -3504,20 +3547,20 @@
|
|
|
3504
3547
|
"dist",
|
|
3505
3548
|
"commands",
|
|
3506
3549
|
"compile",
|
|
3507
|
-
"
|
|
3508
|
-
"
|
|
3550
|
+
"thread",
|
|
3551
|
+
"reset.js"
|
|
3509
3552
|
]
|
|
3510
3553
|
},
|
|
3511
|
-
"compile:
|
|
3554
|
+
"compile:thread:sync": {
|
|
3512
3555
|
"aliases": [],
|
|
3513
3556
|
"args": {
|
|
3514
|
-
"
|
|
3515
|
-
"description": "
|
|
3516
|
-
"name": "
|
|
3557
|
+
"thread_id": {
|
|
3558
|
+
"description": "Thread ID",
|
|
3559
|
+
"name": "thread_id",
|
|
3517
3560
|
"required": true
|
|
3518
3561
|
}
|
|
3519
3562
|
},
|
|
3520
|
-
"description": "
|
|
3563
|
+
"description": "Archive and sync a thread into a face",
|
|
3521
3564
|
"flags": {
|
|
3522
3565
|
"json": {
|
|
3523
3566
|
"description": "Format output as json.",
|
|
@@ -3549,17 +3592,11 @@
|
|
|
3549
3592
|
"hasDynamicHelp": false,
|
|
3550
3593
|
"multiple": false,
|
|
3551
3594
|
"type": "option"
|
|
3552
|
-
},
|
|
3553
|
-
"yes": {
|
|
3554
|
-
"description": "Skip confirmation",
|
|
3555
|
-
"name": "yes",
|
|
3556
|
-
"allowNo": false,
|
|
3557
|
-
"type": "boolean"
|
|
3558
3595
|
}
|
|
3559
3596
|
},
|
|
3560
3597
|
"hasDynamicHelp": false,
|
|
3561
3598
|
"hiddenAliases": [],
|
|
3562
|
-
"id": "compile:
|
|
3599
|
+
"id": "compile:thread:sync",
|
|
3563
3600
|
"pluginAlias": "faces-cli",
|
|
3564
3601
|
"pluginName": "faces-cli",
|
|
3565
3602
|
"pluginType": "core",
|
|
@@ -3570,11 +3607,11 @@
|
|
|
3570
3607
|
"dist",
|
|
3571
3608
|
"commands",
|
|
3572
3609
|
"compile",
|
|
3573
|
-
"
|
|
3574
|
-
"
|
|
3610
|
+
"thread",
|
|
3611
|
+
"sync.js"
|
|
3575
3612
|
]
|
|
3576
3613
|
},
|
|
3577
|
-
"compile:
|
|
3614
|
+
"compile:doc:create": {
|
|
3578
3615
|
"aliases": [],
|
|
3579
3616
|
"args": {
|
|
3580
3617
|
"face_id": {
|
|
@@ -3583,7 +3620,7 @@
|
|
|
3583
3620
|
"required": true
|
|
3584
3621
|
}
|
|
3585
3622
|
},
|
|
3586
|
-
"description": "
|
|
3623
|
+
"description": "Submit a document to a face",
|
|
3587
3624
|
"flags": {
|
|
3588
3625
|
"json": {
|
|
3589
3626
|
"description": "Format output as json.",
|
|
@@ -3617,16 +3654,42 @@
|
|
|
3617
3654
|
"type": "option"
|
|
3618
3655
|
},
|
|
3619
3656
|
"label": {
|
|
3620
|
-
"description": "
|
|
3657
|
+
"description": "Document label/title",
|
|
3621
3658
|
"name": "label",
|
|
3622
3659
|
"hasDynamicHelp": false,
|
|
3623
3660
|
"multiple": false,
|
|
3624
3661
|
"type": "option"
|
|
3662
|
+
},
|
|
3663
|
+
"content": {
|
|
3664
|
+
"description": "Inline text content",
|
|
3665
|
+
"name": "content",
|
|
3666
|
+
"hasDynamicHelp": false,
|
|
3667
|
+
"multiple": false,
|
|
3668
|
+
"type": "option"
|
|
3669
|
+
},
|
|
3670
|
+
"file": {
|
|
3671
|
+
"description": "Read content from file",
|
|
3672
|
+
"name": "file",
|
|
3673
|
+
"hasDynamicHelp": false,
|
|
3674
|
+
"multiple": false,
|
|
3675
|
+
"type": "option"
|
|
3676
|
+
},
|
|
3677
|
+
"perspective": {
|
|
3678
|
+
"description": "Perspective (first-person or third-person)",
|
|
3679
|
+
"name": "perspective",
|
|
3680
|
+
"default": "first-person",
|
|
3681
|
+
"hasDynamicHelp": false,
|
|
3682
|
+
"multiple": false,
|
|
3683
|
+
"options": [
|
|
3684
|
+
"first-person",
|
|
3685
|
+
"third-person"
|
|
3686
|
+
],
|
|
3687
|
+
"type": "option"
|
|
3625
3688
|
}
|
|
3626
3689
|
},
|
|
3627
3690
|
"hasDynamicHelp": false,
|
|
3628
3691
|
"hiddenAliases": [],
|
|
3629
|
-
"id": "compile:
|
|
3692
|
+
"id": "compile:doc:create",
|
|
3630
3693
|
"pluginAlias": "faces-cli",
|
|
3631
3694
|
"pluginName": "faces-cli",
|
|
3632
3695
|
"pluginType": "core",
|
|
@@ -3637,20 +3700,20 @@
|
|
|
3637
3700
|
"dist",
|
|
3638
3701
|
"commands",
|
|
3639
3702
|
"compile",
|
|
3640
|
-
"
|
|
3703
|
+
"doc",
|
|
3641
3704
|
"create.js"
|
|
3642
3705
|
]
|
|
3643
3706
|
},
|
|
3644
|
-
"compile:
|
|
3707
|
+
"compile:doc:delete": {
|
|
3645
3708
|
"aliases": [],
|
|
3646
3709
|
"args": {
|
|
3647
|
-
"
|
|
3648
|
-
"description": "
|
|
3649
|
-
"name": "
|
|
3710
|
+
"doc_id": {
|
|
3711
|
+
"description": "Document ID",
|
|
3712
|
+
"name": "doc_id",
|
|
3650
3713
|
"required": true
|
|
3651
3714
|
}
|
|
3652
3715
|
},
|
|
3653
|
-
"description": "Delete a
|
|
3716
|
+
"description": "Delete a document",
|
|
3654
3717
|
"flags": {
|
|
3655
3718
|
"json": {
|
|
3656
3719
|
"description": "Format output as json.",
|
|
@@ -3682,17 +3745,11 @@
|
|
|
3682
3745
|
"hasDynamicHelp": false,
|
|
3683
3746
|
"multiple": false,
|
|
3684
3747
|
"type": "option"
|
|
3685
|
-
},
|
|
3686
|
-
"yes": {
|
|
3687
|
-
"description": "Skip confirmation",
|
|
3688
|
-
"name": "yes",
|
|
3689
|
-
"allowNo": false,
|
|
3690
|
-
"type": "boolean"
|
|
3691
3748
|
}
|
|
3692
3749
|
},
|
|
3693
3750
|
"hasDynamicHelp": false,
|
|
3694
3751
|
"hiddenAliases": [],
|
|
3695
|
-
"id": "compile:
|
|
3752
|
+
"id": "compile:doc:delete",
|
|
3696
3753
|
"pluginAlias": "faces-cli",
|
|
3697
3754
|
"pluginName": "faces-cli",
|
|
3698
3755
|
"pluginType": "core",
|
|
@@ -3703,20 +3760,20 @@
|
|
|
3703
3760
|
"dist",
|
|
3704
3761
|
"commands",
|
|
3705
3762
|
"compile",
|
|
3706
|
-
"
|
|
3763
|
+
"doc",
|
|
3707
3764
|
"delete.js"
|
|
3708
3765
|
]
|
|
3709
3766
|
},
|
|
3710
|
-
"compile:
|
|
3767
|
+
"compile:doc:edit": {
|
|
3711
3768
|
"aliases": [],
|
|
3712
3769
|
"args": {
|
|
3713
|
-
"
|
|
3714
|
-
"description": "
|
|
3715
|
-
"name": "
|
|
3770
|
+
"doc_id": {
|
|
3771
|
+
"description": "Document ID",
|
|
3772
|
+
"name": "doc_id",
|
|
3716
3773
|
"required": true
|
|
3717
3774
|
}
|
|
3718
3775
|
},
|
|
3719
|
-
"description": "Edit a
|
|
3776
|
+
"description": "Edit a document (label, content, or perspective)",
|
|
3720
3777
|
"flags": {
|
|
3721
3778
|
"json": {
|
|
3722
3779
|
"description": "Format output as json.",
|
|
@@ -3750,23 +3807,41 @@
|
|
|
3750
3807
|
"type": "option"
|
|
3751
3808
|
},
|
|
3752
3809
|
"label": {
|
|
3753
|
-
"description": "New
|
|
3810
|
+
"description": "New label/title",
|
|
3754
3811
|
"name": "label",
|
|
3755
3812
|
"hasDynamicHelp": false,
|
|
3756
3813
|
"multiple": false,
|
|
3757
3814
|
"type": "option"
|
|
3758
3815
|
},
|
|
3759
|
-
"
|
|
3760
|
-
"description": "
|
|
3761
|
-
"name": "
|
|
3816
|
+
"content": {
|
|
3817
|
+
"description": "New inline text content",
|
|
3818
|
+
"name": "content",
|
|
3819
|
+
"hasDynamicHelp": false,
|
|
3820
|
+
"multiple": false,
|
|
3821
|
+
"type": "option"
|
|
3822
|
+
},
|
|
3823
|
+
"file": {
|
|
3824
|
+
"description": "Read new content from file",
|
|
3825
|
+
"name": "file",
|
|
3826
|
+
"hasDynamicHelp": false,
|
|
3827
|
+
"multiple": false,
|
|
3828
|
+
"type": "option"
|
|
3829
|
+
},
|
|
3830
|
+
"perspective": {
|
|
3831
|
+
"description": "Perspective (first-person or third-person)",
|
|
3832
|
+
"name": "perspective",
|
|
3762
3833
|
"hasDynamicHelp": false,
|
|
3763
3834
|
"multiple": false,
|
|
3835
|
+
"options": [
|
|
3836
|
+
"first-person",
|
|
3837
|
+
"third-person"
|
|
3838
|
+
],
|
|
3764
3839
|
"type": "option"
|
|
3765
3840
|
}
|
|
3766
3841
|
},
|
|
3767
3842
|
"hasDynamicHelp": false,
|
|
3768
3843
|
"hiddenAliases": [],
|
|
3769
|
-
"id": "compile:
|
|
3844
|
+
"id": "compile:doc:edit",
|
|
3770
3845
|
"pluginAlias": "faces-cli",
|
|
3771
3846
|
"pluginName": "faces-cli",
|
|
3772
3847
|
"pluginType": "core",
|
|
@@ -3777,20 +3852,20 @@
|
|
|
3777
3852
|
"dist",
|
|
3778
3853
|
"commands",
|
|
3779
3854
|
"compile",
|
|
3780
|
-
"
|
|
3855
|
+
"doc",
|
|
3781
3856
|
"edit.js"
|
|
3782
3857
|
]
|
|
3783
3858
|
},
|
|
3784
|
-
"compile:
|
|
3859
|
+
"compile:doc:get": {
|
|
3785
3860
|
"aliases": [],
|
|
3786
3861
|
"args": {
|
|
3787
|
-
"
|
|
3788
|
-
"description": "
|
|
3789
|
-
"name": "
|
|
3862
|
+
"doc_id": {
|
|
3863
|
+
"description": "Document ID",
|
|
3864
|
+
"name": "doc_id",
|
|
3790
3865
|
"required": true
|
|
3791
3866
|
}
|
|
3792
3867
|
},
|
|
3793
|
-
"description": "Get a
|
|
3868
|
+
"description": "Get a document by ID",
|
|
3794
3869
|
"flags": {
|
|
3795
3870
|
"json": {
|
|
3796
3871
|
"description": "Format output as json.",
|
|
@@ -3826,7 +3901,7 @@
|
|
|
3826
3901
|
},
|
|
3827
3902
|
"hasDynamicHelp": false,
|
|
3828
3903
|
"hiddenAliases": [],
|
|
3829
|
-
"id": "compile:
|
|
3904
|
+
"id": "compile:doc:get",
|
|
3830
3905
|
"pluginAlias": "faces-cli",
|
|
3831
3906
|
"pluginName": "faces-cli",
|
|
3832
3907
|
"pluginType": "core",
|
|
@@ -3837,11 +3912,11 @@
|
|
|
3837
3912
|
"dist",
|
|
3838
3913
|
"commands",
|
|
3839
3914
|
"compile",
|
|
3840
|
-
"
|
|
3915
|
+
"doc",
|
|
3841
3916
|
"get.js"
|
|
3842
3917
|
]
|
|
3843
3918
|
},
|
|
3844
|
-
"compile:
|
|
3919
|
+
"compile:doc": {
|
|
3845
3920
|
"aliases": [],
|
|
3846
3921
|
"args": {
|
|
3847
3922
|
"face_id": {
|
|
@@ -3850,7 +3925,7 @@
|
|
|
3850
3925
|
"required": true
|
|
3851
3926
|
}
|
|
3852
3927
|
},
|
|
3853
|
-
"description": "
|
|
3928
|
+
"description": "Compile a document into a face (create → make in one step)",
|
|
3854
3929
|
"flags": {
|
|
3855
3930
|
"json": {
|
|
3856
3931
|
"description": "Format output as json.",
|
|
@@ -3882,65 +3957,38 @@
|
|
|
3882
3957
|
"hasDynamicHelp": false,
|
|
3883
3958
|
"multiple": false,
|
|
3884
3959
|
"type": "option"
|
|
3885
|
-
}
|
|
3886
|
-
},
|
|
3887
|
-
"hasDynamicHelp": false,
|
|
3888
|
-
"hiddenAliases": [],
|
|
3889
|
-
"id": "compile:thread:list",
|
|
3890
|
-
"pluginAlias": "faces-cli",
|
|
3891
|
-
"pluginName": "faces-cli",
|
|
3892
|
-
"pluginType": "core",
|
|
3893
|
-
"strict": true,
|
|
3894
|
-
"enableJsonFlag": true,
|
|
3895
|
-
"isESM": true,
|
|
3896
|
-
"relativePath": [
|
|
3897
|
-
"dist",
|
|
3898
|
-
"commands",
|
|
3899
|
-
"compile",
|
|
3900
|
-
"thread",
|
|
3901
|
-
"list.js"
|
|
3902
|
-
]
|
|
3903
|
-
},
|
|
3904
|
-
"compile:thread:make": {
|
|
3905
|
-
"aliases": [],
|
|
3906
|
-
"args": {
|
|
3907
|
-
"thread_id": {
|
|
3908
|
-
"description": "Thread ID",
|
|
3909
|
-
"name": "thread_id",
|
|
3910
|
-
"required": true
|
|
3911
|
-
}
|
|
3912
|
-
},
|
|
3913
|
-
"description": "Compile an existing thread (prepare + sync in one step)",
|
|
3914
|
-
"flags": {
|
|
3915
|
-
"json": {
|
|
3916
|
-
"description": "Format output as json.",
|
|
3917
|
-
"helpGroup": "GLOBAL",
|
|
3918
|
-
"name": "json",
|
|
3919
|
-
"allowNo": false,
|
|
3920
|
-
"type": "boolean"
|
|
3921
3960
|
},
|
|
3922
|
-
"
|
|
3923
|
-
"description": "
|
|
3924
|
-
"
|
|
3925
|
-
"name": "base-url",
|
|
3961
|
+
"label": {
|
|
3962
|
+
"description": "Document label/title",
|
|
3963
|
+
"name": "label",
|
|
3926
3964
|
"hasDynamicHelp": false,
|
|
3927
3965
|
"multiple": false,
|
|
3928
3966
|
"type": "option"
|
|
3929
3967
|
},
|
|
3930
|
-
"
|
|
3931
|
-
"description": "
|
|
3932
|
-
"
|
|
3933
|
-
"name": "token",
|
|
3968
|
+
"content": {
|
|
3969
|
+
"description": "Inline text content",
|
|
3970
|
+
"name": "content",
|
|
3934
3971
|
"hasDynamicHelp": false,
|
|
3935
3972
|
"multiple": false,
|
|
3936
3973
|
"type": "option"
|
|
3937
3974
|
},
|
|
3938
|
-
"
|
|
3939
|
-
"description": "
|
|
3940
|
-
"
|
|
3941
|
-
"
|
|
3975
|
+
"file": {
|
|
3976
|
+
"description": "Read content from file",
|
|
3977
|
+
"name": "file",
|
|
3978
|
+
"hasDynamicHelp": false,
|
|
3979
|
+
"multiple": false,
|
|
3980
|
+
"type": "option"
|
|
3981
|
+
},
|
|
3982
|
+
"perspective": {
|
|
3983
|
+
"description": "Perspective",
|
|
3984
|
+
"name": "perspective",
|
|
3985
|
+
"default": "first-person",
|
|
3942
3986
|
"hasDynamicHelp": false,
|
|
3943
3987
|
"multiple": false,
|
|
3988
|
+
"options": [
|
|
3989
|
+
"first-person",
|
|
3990
|
+
"third-person"
|
|
3991
|
+
],
|
|
3944
3992
|
"type": "option"
|
|
3945
3993
|
},
|
|
3946
3994
|
"timeout": {
|
|
@@ -3952,7 +4000,7 @@
|
|
|
3952
4000
|
"type": "option"
|
|
3953
4001
|
},
|
|
3954
4002
|
"no-wait": {
|
|
3955
|
-
"description": "
|
|
4003
|
+
"description": "Create and trigger compilation, then return immediately without polling.",
|
|
3956
4004
|
"name": "no-wait",
|
|
3957
4005
|
"allowNo": false,
|
|
3958
4006
|
"type": "boolean"
|
|
@@ -3960,7 +4008,7 @@
|
|
|
3960
4008
|
},
|
|
3961
4009
|
"hasDynamicHelp": false,
|
|
3962
4010
|
"hiddenAliases": [],
|
|
3963
|
-
"id": "compile:
|
|
4011
|
+
"id": "compile:doc",
|
|
3964
4012
|
"pluginAlias": "faces-cli",
|
|
3965
4013
|
"pluginName": "faces-cli",
|
|
3966
4014
|
"pluginType": "core",
|
|
@@ -3971,20 +4019,20 @@
|
|
|
3971
4019
|
"dist",
|
|
3972
4020
|
"commands",
|
|
3973
4021
|
"compile",
|
|
3974
|
-
"
|
|
3975
|
-
"
|
|
4022
|
+
"doc",
|
|
4023
|
+
"index.js"
|
|
3976
4024
|
]
|
|
3977
4025
|
},
|
|
3978
|
-
"compile:
|
|
4026
|
+
"compile:doc:list": {
|
|
3979
4027
|
"aliases": [],
|
|
3980
4028
|
"args": {
|
|
3981
|
-
"
|
|
3982
|
-
"description": "
|
|
3983
|
-
"name": "
|
|
4029
|
+
"face_id": {
|
|
4030
|
+
"description": "Face alias",
|
|
4031
|
+
"name": "face_id",
|
|
3984
4032
|
"required": true
|
|
3985
4033
|
}
|
|
3986
4034
|
},
|
|
3987
|
-
"description": "
|
|
4035
|
+
"description": "List documents for a face",
|
|
3988
4036
|
"flags": {
|
|
3989
4037
|
"json": {
|
|
3990
4038
|
"description": "Format output as json.",
|
|
@@ -4016,20 +4064,11 @@
|
|
|
4016
4064
|
"hasDynamicHelp": false,
|
|
4017
4065
|
"multiple": false,
|
|
4018
4066
|
"type": "option"
|
|
4019
|
-
},
|
|
4020
|
-
"message": {
|
|
4021
|
-
"char": "m",
|
|
4022
|
-
"description": "User message to append",
|
|
4023
|
-
"name": "message",
|
|
4024
|
-
"required": true,
|
|
4025
|
-
"hasDynamicHelp": false,
|
|
4026
|
-
"multiple": false,
|
|
4027
|
-
"type": "option"
|
|
4028
4067
|
}
|
|
4029
4068
|
},
|
|
4030
4069
|
"hasDynamicHelp": false,
|
|
4031
4070
|
"hiddenAliases": [],
|
|
4032
|
-
"id": "compile:
|
|
4071
|
+
"id": "compile:doc:list",
|
|
4033
4072
|
"pluginAlias": "faces-cli",
|
|
4034
4073
|
"pluginName": "faces-cli",
|
|
4035
4074
|
"pluginType": "core",
|
|
@@ -4040,20 +4079,20 @@
|
|
|
4040
4079
|
"dist",
|
|
4041
4080
|
"commands",
|
|
4042
4081
|
"compile",
|
|
4043
|
-
"
|
|
4044
|
-
"
|
|
4082
|
+
"doc",
|
|
4083
|
+
"list.js"
|
|
4045
4084
|
]
|
|
4046
4085
|
},
|
|
4047
|
-
"compile:
|
|
4086
|
+
"compile:doc:make": {
|
|
4048
4087
|
"aliases": [],
|
|
4049
4088
|
"args": {
|
|
4050
|
-
"
|
|
4051
|
-
"description": "
|
|
4052
|
-
"name": "
|
|
4089
|
+
"doc_id": {
|
|
4090
|
+
"description": "Document ID",
|
|
4091
|
+
"name": "doc_id",
|
|
4053
4092
|
"required": true
|
|
4054
4093
|
}
|
|
4055
4094
|
},
|
|
4056
|
-
"description": "
|
|
4095
|
+
"description": "Compile an existing document (prepare + sync in one step)",
|
|
4057
4096
|
"flags": {
|
|
4058
4097
|
"json": {
|
|
4059
4098
|
"description": "Format output as json.",
|
|
@@ -4085,11 +4124,25 @@
|
|
|
4085
4124
|
"hasDynamicHelp": false,
|
|
4086
4125
|
"multiple": false,
|
|
4087
4126
|
"type": "option"
|
|
4127
|
+
},
|
|
4128
|
+
"timeout": {
|
|
4129
|
+
"description": "Compile timeout in seconds (default: 600)",
|
|
4130
|
+
"name": "timeout",
|
|
4131
|
+
"default": 600,
|
|
4132
|
+
"hasDynamicHelp": false,
|
|
4133
|
+
"multiple": false,
|
|
4134
|
+
"type": "option"
|
|
4135
|
+
},
|
|
4136
|
+
"no-wait": {
|
|
4137
|
+
"description": "Return immediately after triggering compilation. Prints the document ID for manual polling.",
|
|
4138
|
+
"name": "no-wait",
|
|
4139
|
+
"allowNo": false,
|
|
4140
|
+
"type": "boolean"
|
|
4088
4141
|
}
|
|
4089
4142
|
},
|
|
4090
4143
|
"hasDynamicHelp": false,
|
|
4091
4144
|
"hiddenAliases": [],
|
|
4092
|
-
"id": "compile:
|
|
4145
|
+
"id": "compile:doc:make",
|
|
4093
4146
|
"pluginAlias": "faces-cli",
|
|
4094
4147
|
"pluginName": "faces-cli",
|
|
4095
4148
|
"pluginType": "core",
|
|
@@ -4100,20 +4153,20 @@
|
|
|
4100
4153
|
"dist",
|
|
4101
4154
|
"commands",
|
|
4102
4155
|
"compile",
|
|
4103
|
-
"
|
|
4104
|
-
"
|
|
4156
|
+
"doc",
|
|
4157
|
+
"make.js"
|
|
4105
4158
|
]
|
|
4106
4159
|
},
|
|
4107
|
-
"compile:
|
|
4160
|
+
"compile:doc:pause": {
|
|
4108
4161
|
"aliases": [],
|
|
4109
4162
|
"args": {
|
|
4110
|
-
"
|
|
4111
|
-
"description": "
|
|
4112
|
-
"name": "
|
|
4163
|
+
"doc_id": {
|
|
4164
|
+
"description": "Document ID",
|
|
4165
|
+
"name": "doc_id",
|
|
4113
4166
|
"required": true
|
|
4114
4167
|
}
|
|
4115
4168
|
},
|
|
4116
|
-
"description": "
|
|
4169
|
+
"description": "Pause a running document compilation (preserves progress, resume with make)",
|
|
4117
4170
|
"flags": {
|
|
4118
4171
|
"json": {
|
|
4119
4172
|
"description": "Format output as json.",
|
|
@@ -4145,17 +4198,11 @@
|
|
|
4145
4198
|
"hasDynamicHelp": false,
|
|
4146
4199
|
"multiple": false,
|
|
4147
4200
|
"type": "option"
|
|
4148
|
-
},
|
|
4149
|
-
"yes": {
|
|
4150
|
-
"description": "Skip confirmation",
|
|
4151
|
-
"name": "yes",
|
|
4152
|
-
"allowNo": false,
|
|
4153
|
-
"type": "boolean"
|
|
4154
4201
|
}
|
|
4155
4202
|
},
|
|
4156
4203
|
"hasDynamicHelp": false,
|
|
4157
4204
|
"hiddenAliases": [],
|
|
4158
|
-
"id": "compile:
|
|
4205
|
+
"id": "compile:doc:pause",
|
|
4159
4206
|
"pluginAlias": "faces-cli",
|
|
4160
4207
|
"pluginName": "faces-cli",
|
|
4161
4208
|
"pluginType": "core",
|
|
@@ -4166,20 +4213,20 @@
|
|
|
4166
4213
|
"dist",
|
|
4167
4214
|
"commands",
|
|
4168
4215
|
"compile",
|
|
4169
|
-
"
|
|
4170
|
-
"
|
|
4216
|
+
"doc",
|
|
4217
|
+
"pause.js"
|
|
4171
4218
|
]
|
|
4172
4219
|
},
|
|
4173
|
-
"compile:
|
|
4220
|
+
"compile:doc:reset": {
|
|
4174
4221
|
"aliases": [],
|
|
4175
4222
|
"args": {
|
|
4176
|
-
"
|
|
4177
|
-
"description": "
|
|
4178
|
-
"name": "
|
|
4223
|
+
"doc_id": {
|
|
4224
|
+
"description": "Document ID",
|
|
4225
|
+
"name": "doc_id",
|
|
4179
4226
|
"required": true
|
|
4180
4227
|
}
|
|
4181
4228
|
},
|
|
4182
|
-
"description": "
|
|
4229
|
+
"description": "Reset document compilation progress (wipe extraction, keep content)",
|
|
4183
4230
|
"flags": {
|
|
4184
4231
|
"json": {
|
|
4185
4232
|
"description": "Format output as json.",
|
|
@@ -4211,11 +4258,17 @@
|
|
|
4211
4258
|
"hasDynamicHelp": false,
|
|
4212
4259
|
"multiple": false,
|
|
4213
4260
|
"type": "option"
|
|
4261
|
+
},
|
|
4262
|
+
"yes": {
|
|
4263
|
+
"description": "Skip confirmation",
|
|
4264
|
+
"name": "yes",
|
|
4265
|
+
"allowNo": false,
|
|
4266
|
+
"type": "boolean"
|
|
4214
4267
|
}
|
|
4215
4268
|
},
|
|
4216
4269
|
"hasDynamicHelp": false,
|
|
4217
4270
|
"hiddenAliases": [],
|
|
4218
|
-
"id": "compile:
|
|
4271
|
+
"id": "compile:doc:reset",
|
|
4219
4272
|
"pluginAlias": "faces-cli",
|
|
4220
4273
|
"pluginName": "faces-cli",
|
|
4221
4274
|
"pluginType": "core",
|
|
@@ -4226,10 +4279,10 @@
|
|
|
4226
4279
|
"dist",
|
|
4227
4280
|
"commands",
|
|
4228
4281
|
"compile",
|
|
4229
|
-
"
|
|
4230
|
-
"
|
|
4282
|
+
"doc",
|
|
4283
|
+
"reset.js"
|
|
4231
4284
|
]
|
|
4232
4285
|
}
|
|
4233
4286
|
},
|
|
4234
|
-
"version": "1.5.
|
|
4287
|
+
"version": "1.5.14"
|
|
4235
4288
|
}
|