faces-cli 1.8.6 → 1.8.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/catalog.js +1 -1
- package/dist/commands/auth/connect.js +3 -3
- package/dist/commands/auth/connections.js +1 -1
- package/dist/commands/billing/subscription/activate.js +2 -2
- package/dist/commands/catalog/doctor.js +1 -1
- package/dist/commands/catalog/list.js +1 -1
- package/dist/commands/chat/chat.d.ts +1 -0
- package/dist/commands/chat/chat.js +38 -2
- package/dist/commands/chat/thread.js +2 -2
- package/dist/commands/compile/all.js +1 -1
- package/dist/commands/compile/doc/index.js +3 -3
- package/dist/commands/compile/doc/pause.js +2 -2
- package/dist/commands/compile/import.js +1 -1
- package/dist/commands/compile/thread/pause.js +2 -2
- package/dist/commands/face/diff.js +1 -1
- package/dist/commands/face/lock.js +2 -2
- package/dist/commands/face/neighbors.js +1 -1
- package/dist/commands/face/share.js +1 -1
- package/dist/commands/face/unlock.js +2 -2
- package/dist/commands/face/unpublish.js +1 -1
- package/dist/commands/face/unshare.js +1 -1
- package/dist/commands/keys/create.js +3 -3
- package/dist/commands/style/delete.js +1 -13
- package/dist/commands/style/make.js +18 -5
- package/dist/style.d.ts +3 -3
- package/dist/style.js +16 -8
- package/dist/utils.js +2 -2
- package/oclif.manifest.json +827 -819
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -1265,14 +1265,15 @@
|
|
|
1265
1265
|
"aliases": [],
|
|
1266
1266
|
"args": {
|
|
1267
1267
|
"face_username": {
|
|
1268
|
-
"description": "Face alias (alias@model, owner:alias@model for a published face, or a composite formula like \"(a | b)@model\"). Omit when using --formula.",
|
|
1268
|
+
"description": "Face alias (alias@model, owner:alias@model for a published face, or a composite formula like \"(a | b)@model\"). Prefix with + to use the face's captured style. Omit when using --formula.",
|
|
1269
1269
|
"name": "face_username",
|
|
1270
1270
|
"required": false
|
|
1271
1271
|
}
|
|
1272
1272
|
},
|
|
1273
|
-
"description": "Chat via a face. Auto-routes to the correct API endpoint based on the model catalog.",
|
|
1273
|
+
"description": "Chat via a face. Auto-routes to the correct API endpoint based on the model catalog. Prefix the alias with + to answer in the style the face captured, e.g. +alice; without it the face uses its ordinary voice.",
|
|
1274
1274
|
"examples": [
|
|
1275
1275
|
"<%= config.bin %> <%= command.id %> socrates -m \"What is virtue?\"",
|
|
1276
|
+
"<%= config.bin %> <%= command.id %> +alice -m \"Reply to the note below.\" --medium email",
|
|
1276
1277
|
"<%= config.bin %> <%= command.id %> \"(socrates | nietzsche)@claude-sonnet-4-6\" -m \"What is virtue?\"",
|
|
1277
1278
|
"<%= config.bin %> <%= command.id %> --formula \"socrates | nietzsche\" --llm claude-sonnet-4-6 -m \"What is virtue?\""
|
|
1278
1279
|
],
|
|
@@ -1372,12 +1373,19 @@
|
|
|
1372
1373
|
"type": "boolean"
|
|
1373
1374
|
},
|
|
1374
1375
|
"medium": {
|
|
1375
|
-
"description": "What sort of writing this is
|
|
1376
|
+
"description": "What sort of writing this is, e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not.",
|
|
1376
1377
|
"name": "medium",
|
|
1377
1378
|
"hasDynamicHelp": false,
|
|
1378
1379
|
"multiple": false,
|
|
1379
1380
|
"type": "option"
|
|
1380
1381
|
},
|
|
1382
|
+
"best-of": {
|
|
1383
|
+
"description": "Write N replies and serve the one closest to the captured style (1-5, default 1). Only meaningful with a + alias, and it multiplies the cost of the request by N. Cannot be streamed.",
|
|
1384
|
+
"name": "best-of",
|
|
1385
|
+
"hasDynamicHelp": false,
|
|
1386
|
+
"multiple": false,
|
|
1387
|
+
"type": "option"
|
|
1388
|
+
},
|
|
1381
1389
|
"oauth-only": {
|
|
1382
1390
|
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
1383
1391
|
"name": "oauth-only",
|
|
@@ -1474,7 +1482,7 @@
|
|
|
1474
1482
|
"type": "option"
|
|
1475
1483
|
},
|
|
1476
1484
|
"medium": {
|
|
1477
|
-
"description": "What sort of writing this is
|
|
1485
|
+
"description": "What sort of writing this is, e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not.",
|
|
1478
1486
|
"name": "medium",
|
|
1479
1487
|
"hasDynamicHelp": false,
|
|
1480
1488
|
"multiple": false,
|
|
@@ -1568,7 +1576,7 @@
|
|
|
1568
1576
|
"type": "boolean"
|
|
1569
1577
|
},
|
|
1570
1578
|
"medium": {
|
|
1571
|
-
"description": "What sort of writing this is
|
|
1579
|
+
"description": "What sort of writing this is, e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not.",
|
|
1572
1580
|
"name": "medium",
|
|
1573
1581
|
"hasDynamicHelp": false,
|
|
1574
1582
|
"multiple": false,
|
|
@@ -1601,12 +1609,12 @@
|
|
|
1601
1609
|
"aliases": [],
|
|
1602
1610
|
"args": {
|
|
1603
1611
|
"face_username": {
|
|
1604
|
-
"description": "Face alias (alias@model, or owner:alias@model for a published face)
|
|
1612
|
+
"description": "Face alias (alias@model, or owner:alias@model for a published face). Required when starting a new thread",
|
|
1605
1613
|
"name": "face_username",
|
|
1606
1614
|
"required": false
|
|
1607
1615
|
}
|
|
1608
1616
|
},
|
|
1609
|
-
"description": "Multi-turn chat thread. Conversation history is stored under ~/.faces/threads/<id>.json
|
|
1617
|
+
"description": "Multi-turn chat thread. Conversation history is stored under ~/.faces/threads/<id>.json. Resume any thread later with --id.",
|
|
1610
1618
|
"examples": [
|
|
1611
1619
|
"<%= config.bin %> <%= command.id %> socrates -m \"What is justice?\"",
|
|
1612
1620
|
"<%= config.bin %> <%= command.id %> --id t_abc123 -m \"Say more about that\"",
|
|
@@ -1703,7 +1711,7 @@
|
|
|
1703
1711
|
"type": "boolean"
|
|
1704
1712
|
},
|
|
1705
1713
|
"medium": {
|
|
1706
|
-
"description": "What sort of writing this is
|
|
1714
|
+
"description": "What sort of writing this is, e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not.",
|
|
1707
1715
|
"name": "medium",
|
|
1708
1716
|
"hasDynamicHelp": false,
|
|
1709
1717
|
"multiple": false,
|
|
@@ -1750,6 +1758,182 @@
|
|
|
1750
1758
|
"thread.js"
|
|
1751
1759
|
]
|
|
1752
1760
|
},
|
|
1761
|
+
"config:clear": {
|
|
1762
|
+
"aliases": [],
|
|
1763
|
+
"args": {},
|
|
1764
|
+
"description": "Delete all saved credentials and config",
|
|
1765
|
+
"flags": {
|
|
1766
|
+
"json": {
|
|
1767
|
+
"description": "Format output as json.",
|
|
1768
|
+
"helpGroup": "GLOBAL",
|
|
1769
|
+
"name": "json",
|
|
1770
|
+
"allowNo": false,
|
|
1771
|
+
"type": "boolean"
|
|
1772
|
+
},
|
|
1773
|
+
"base-url": {
|
|
1774
|
+
"description": "API base URL",
|
|
1775
|
+
"env": "FACES_BASE_URL",
|
|
1776
|
+
"name": "base-url",
|
|
1777
|
+
"hasDynamicHelp": false,
|
|
1778
|
+
"multiple": false,
|
|
1779
|
+
"type": "option"
|
|
1780
|
+
},
|
|
1781
|
+
"token": {
|
|
1782
|
+
"description": "JWT bearer token",
|
|
1783
|
+
"env": "FACES_TOKEN",
|
|
1784
|
+
"name": "token",
|
|
1785
|
+
"hasDynamicHelp": false,
|
|
1786
|
+
"multiple": false,
|
|
1787
|
+
"type": "option"
|
|
1788
|
+
},
|
|
1789
|
+
"api-key": {
|
|
1790
|
+
"description": "API key",
|
|
1791
|
+
"env": "FACES_API_KEY",
|
|
1792
|
+
"name": "api-key",
|
|
1793
|
+
"hasDynamicHelp": false,
|
|
1794
|
+
"multiple": false,
|
|
1795
|
+
"type": "option"
|
|
1796
|
+
},
|
|
1797
|
+
"yes": {
|
|
1798
|
+
"description": "Skip confirmation",
|
|
1799
|
+
"name": "yes",
|
|
1800
|
+
"allowNo": false,
|
|
1801
|
+
"type": "boolean"
|
|
1802
|
+
}
|
|
1803
|
+
},
|
|
1804
|
+
"hasDynamicHelp": false,
|
|
1805
|
+
"hiddenAliases": [],
|
|
1806
|
+
"id": "config:clear",
|
|
1807
|
+
"pluginAlias": "faces-cli",
|
|
1808
|
+
"pluginName": "faces-cli",
|
|
1809
|
+
"pluginType": "core",
|
|
1810
|
+
"strict": true,
|
|
1811
|
+
"enableJsonFlag": true,
|
|
1812
|
+
"isESM": true,
|
|
1813
|
+
"relativePath": [
|
|
1814
|
+
"dist",
|
|
1815
|
+
"commands",
|
|
1816
|
+
"config",
|
|
1817
|
+
"clear.js"
|
|
1818
|
+
]
|
|
1819
|
+
},
|
|
1820
|
+
"config:set": {
|
|
1821
|
+
"aliases": [],
|
|
1822
|
+
"args": {
|
|
1823
|
+
"key": {
|
|
1824
|
+
"description": "Config key",
|
|
1825
|
+
"name": "key",
|
|
1826
|
+
"required": true
|
|
1827
|
+
},
|
|
1828
|
+
"value": {
|
|
1829
|
+
"description": "Config value",
|
|
1830
|
+
"name": "value",
|
|
1831
|
+
"required": true
|
|
1832
|
+
}
|
|
1833
|
+
},
|
|
1834
|
+
"description": "Set a config value (e.g. base_url, api_key, token)",
|
|
1835
|
+
"flags": {
|
|
1836
|
+
"json": {
|
|
1837
|
+
"description": "Format output as json.",
|
|
1838
|
+
"helpGroup": "GLOBAL",
|
|
1839
|
+
"name": "json",
|
|
1840
|
+
"allowNo": false,
|
|
1841
|
+
"type": "boolean"
|
|
1842
|
+
},
|
|
1843
|
+
"base-url": {
|
|
1844
|
+
"description": "API base URL",
|
|
1845
|
+
"env": "FACES_BASE_URL",
|
|
1846
|
+
"name": "base-url",
|
|
1847
|
+
"hasDynamicHelp": false,
|
|
1848
|
+
"multiple": false,
|
|
1849
|
+
"type": "option"
|
|
1850
|
+
},
|
|
1851
|
+
"token": {
|
|
1852
|
+
"description": "JWT bearer token",
|
|
1853
|
+
"env": "FACES_TOKEN",
|
|
1854
|
+
"name": "token",
|
|
1855
|
+
"hasDynamicHelp": false,
|
|
1856
|
+
"multiple": false,
|
|
1857
|
+
"type": "option"
|
|
1858
|
+
},
|
|
1859
|
+
"api-key": {
|
|
1860
|
+
"description": "API key",
|
|
1861
|
+
"env": "FACES_API_KEY",
|
|
1862
|
+
"name": "api-key",
|
|
1863
|
+
"hasDynamicHelp": false,
|
|
1864
|
+
"multiple": false,
|
|
1865
|
+
"type": "option"
|
|
1866
|
+
}
|
|
1867
|
+
},
|
|
1868
|
+
"hasDynamicHelp": false,
|
|
1869
|
+
"hiddenAliases": [],
|
|
1870
|
+
"id": "config:set",
|
|
1871
|
+
"pluginAlias": "faces-cli",
|
|
1872
|
+
"pluginName": "faces-cli",
|
|
1873
|
+
"pluginType": "core",
|
|
1874
|
+
"strict": true,
|
|
1875
|
+
"enableJsonFlag": true,
|
|
1876
|
+
"isESM": true,
|
|
1877
|
+
"relativePath": [
|
|
1878
|
+
"dist",
|
|
1879
|
+
"commands",
|
|
1880
|
+
"config",
|
|
1881
|
+
"set.js"
|
|
1882
|
+
]
|
|
1883
|
+
},
|
|
1884
|
+
"config:show": {
|
|
1885
|
+
"aliases": [],
|
|
1886
|
+
"args": {},
|
|
1887
|
+
"description": "Print current config (credentials are masked)",
|
|
1888
|
+
"flags": {
|
|
1889
|
+
"json": {
|
|
1890
|
+
"description": "Format output as json.",
|
|
1891
|
+
"helpGroup": "GLOBAL",
|
|
1892
|
+
"name": "json",
|
|
1893
|
+
"allowNo": false,
|
|
1894
|
+
"type": "boolean"
|
|
1895
|
+
},
|
|
1896
|
+
"base-url": {
|
|
1897
|
+
"description": "API base URL",
|
|
1898
|
+
"env": "FACES_BASE_URL",
|
|
1899
|
+
"name": "base-url",
|
|
1900
|
+
"hasDynamicHelp": false,
|
|
1901
|
+
"multiple": false,
|
|
1902
|
+
"type": "option"
|
|
1903
|
+
},
|
|
1904
|
+
"token": {
|
|
1905
|
+
"description": "JWT bearer token",
|
|
1906
|
+
"env": "FACES_TOKEN",
|
|
1907
|
+
"name": "token",
|
|
1908
|
+
"hasDynamicHelp": false,
|
|
1909
|
+
"multiple": false,
|
|
1910
|
+
"type": "option"
|
|
1911
|
+
},
|
|
1912
|
+
"api-key": {
|
|
1913
|
+
"description": "API key",
|
|
1914
|
+
"env": "FACES_API_KEY",
|
|
1915
|
+
"name": "api-key",
|
|
1916
|
+
"hasDynamicHelp": false,
|
|
1917
|
+
"multiple": false,
|
|
1918
|
+
"type": "option"
|
|
1919
|
+
}
|
|
1920
|
+
},
|
|
1921
|
+
"hasDynamicHelp": false,
|
|
1922
|
+
"hiddenAliases": [],
|
|
1923
|
+
"id": "config:show",
|
|
1924
|
+
"pluginAlias": "faces-cli",
|
|
1925
|
+
"pluginName": "faces-cli",
|
|
1926
|
+
"pluginType": "core",
|
|
1927
|
+
"strict": true,
|
|
1928
|
+
"enableJsonFlag": true,
|
|
1929
|
+
"isESM": true,
|
|
1930
|
+
"relativePath": [
|
|
1931
|
+
"dist",
|
|
1932
|
+
"commands",
|
|
1933
|
+
"config",
|
|
1934
|
+
"show.js"
|
|
1935
|
+
]
|
|
1936
|
+
},
|
|
1753
1937
|
"compile:all": {
|
|
1754
1938
|
"aliases": [],
|
|
1755
1939
|
"args": {},
|
|
@@ -2043,7 +2227,7 @@
|
|
|
2043
2227
|
"type": "option"
|
|
2044
2228
|
},
|
|
2045
2229
|
"medium": {
|
|
2046
|
-
"description": "What sort of writing this is
|
|
2230
|
+
"description": "What sort of writing this is, e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not. Only valid with --kind document.",
|
|
2047
2231
|
"name": "medium",
|
|
2048
2232
|
"hasDynamicHelp": false,
|
|
2049
2233
|
"multiple": false,
|
|
@@ -2079,10 +2263,10 @@
|
|
|
2079
2263
|
"upload.js"
|
|
2080
2264
|
]
|
|
2081
2265
|
},
|
|
2082
|
-
"
|
|
2266
|
+
"keys:create": {
|
|
2083
2267
|
"aliases": [],
|
|
2084
2268
|
"args": {},
|
|
2085
|
-
"description": "
|
|
2269
|
+
"description": "Create a new API key (JWT required). The new key is saved to ~/.faces/config.json as api_key by default; pass --no-save to skip.",
|
|
2086
2270
|
"flags": {
|
|
2087
2271
|
"json": {
|
|
2088
2272
|
"description": "Format output as json.",
|
|
@@ -2115,16 +2299,52 @@
|
|
|
2115
2299
|
"multiple": false,
|
|
2116
2300
|
"type": "option"
|
|
2117
2301
|
},
|
|
2118
|
-
"
|
|
2119
|
-
"description": "
|
|
2120
|
-
"name": "
|
|
2121
|
-
"
|
|
2302
|
+
"name": {
|
|
2303
|
+
"description": "Key name/label",
|
|
2304
|
+
"name": "name",
|
|
2305
|
+
"required": true,
|
|
2306
|
+
"hasDynamicHelp": false,
|
|
2307
|
+
"multiple": false,
|
|
2308
|
+
"type": "option"
|
|
2309
|
+
},
|
|
2310
|
+
"expires-days": {
|
|
2311
|
+
"description": "Expiry in days (omit for no expiry)",
|
|
2312
|
+
"name": "expires-days",
|
|
2313
|
+
"hasDynamicHelp": false,
|
|
2314
|
+
"multiple": false,
|
|
2315
|
+
"type": "option"
|
|
2316
|
+
},
|
|
2317
|
+
"budget": {
|
|
2318
|
+
"description": "Spend budget in USD",
|
|
2319
|
+
"name": "budget",
|
|
2320
|
+
"hasDynamicHelp": false,
|
|
2321
|
+
"multiple": false,
|
|
2322
|
+
"type": "option"
|
|
2323
|
+
},
|
|
2324
|
+
"face": {
|
|
2325
|
+
"description": "Allowed face alias (repeatable)",
|
|
2326
|
+
"name": "face",
|
|
2327
|
+
"hasDynamicHelp": false,
|
|
2328
|
+
"multiple": true,
|
|
2329
|
+
"type": "option"
|
|
2330
|
+
},
|
|
2331
|
+
"model": {
|
|
2332
|
+
"description": "Allowed model name (repeatable)",
|
|
2333
|
+
"name": "model",
|
|
2334
|
+
"hasDynamicHelp": false,
|
|
2335
|
+
"multiple": true,
|
|
2336
|
+
"type": "option"
|
|
2337
|
+
},
|
|
2338
|
+
"save": {
|
|
2339
|
+
"description": "Save the new key to ~/.faces/config.json as api_key (default: true; use --no-save to skip)",
|
|
2340
|
+
"name": "save",
|
|
2341
|
+
"allowNo": true,
|
|
2122
2342
|
"type": "boolean"
|
|
2123
2343
|
}
|
|
2124
2344
|
},
|
|
2125
2345
|
"hasDynamicHelp": false,
|
|
2126
2346
|
"hiddenAliases": [],
|
|
2127
|
-
"id": "
|
|
2347
|
+
"id": "keys:create",
|
|
2128
2348
|
"pluginAlias": "faces-cli",
|
|
2129
2349
|
"pluginName": "faces-cli",
|
|
2130
2350
|
"pluginType": "core",
|
|
@@ -2134,25 +2354,14 @@
|
|
|
2134
2354
|
"relativePath": [
|
|
2135
2355
|
"dist",
|
|
2136
2356
|
"commands",
|
|
2137
|
-
"
|
|
2138
|
-
"
|
|
2357
|
+
"keys",
|
|
2358
|
+
"create.js"
|
|
2139
2359
|
]
|
|
2140
2360
|
},
|
|
2141
|
-
"
|
|
2361
|
+
"keys:list": {
|
|
2142
2362
|
"aliases": [],
|
|
2143
|
-
"args": {
|
|
2144
|
-
|
|
2145
|
-
"description": "Config key",
|
|
2146
|
-
"name": "key",
|
|
2147
|
-
"required": true
|
|
2148
|
-
},
|
|
2149
|
-
"value": {
|
|
2150
|
-
"description": "Config value",
|
|
2151
|
-
"name": "value",
|
|
2152
|
-
"required": true
|
|
2153
|
-
}
|
|
2154
|
-
},
|
|
2155
|
-
"description": "Set a config value (e.g. base_url, api_key, token)",
|
|
2363
|
+
"args": {},
|
|
2364
|
+
"description": "List all API keys (JWT required)",
|
|
2156
2365
|
"flags": {
|
|
2157
2366
|
"json": {
|
|
2158
2367
|
"description": "Format output as json.",
|
|
@@ -2188,7 +2397,7 @@
|
|
|
2188
2397
|
},
|
|
2189
2398
|
"hasDynamicHelp": false,
|
|
2190
2399
|
"hiddenAliases": [],
|
|
2191
|
-
"id": "
|
|
2400
|
+
"id": "keys:list",
|
|
2192
2401
|
"pluginAlias": "faces-cli",
|
|
2193
2402
|
"pluginName": "faces-cli",
|
|
2194
2403
|
"pluginType": "core",
|
|
@@ -2198,14 +2407,20 @@
|
|
|
2198
2407
|
"relativePath": [
|
|
2199
2408
|
"dist",
|
|
2200
2409
|
"commands",
|
|
2201
|
-
"
|
|
2202
|
-
"
|
|
2410
|
+
"keys",
|
|
2411
|
+
"list.js"
|
|
2203
2412
|
]
|
|
2204
2413
|
},
|
|
2205
|
-
"
|
|
2414
|
+
"keys:revoke": {
|
|
2206
2415
|
"aliases": [],
|
|
2207
|
-
"args": {
|
|
2208
|
-
|
|
2416
|
+
"args": {
|
|
2417
|
+
"key_id": {
|
|
2418
|
+
"description": "Key ID",
|
|
2419
|
+
"name": "key_id",
|
|
2420
|
+
"required": true
|
|
2421
|
+
}
|
|
2422
|
+
},
|
|
2423
|
+
"description": "Revoke an API key (JWT required)",
|
|
2209
2424
|
"flags": {
|
|
2210
2425
|
"json": {
|
|
2211
2426
|
"description": "Format output as json.",
|
|
@@ -2237,11 +2452,17 @@
|
|
|
2237
2452
|
"hasDynamicHelp": false,
|
|
2238
2453
|
"multiple": false,
|
|
2239
2454
|
"type": "option"
|
|
2455
|
+
},
|
|
2456
|
+
"yes": {
|
|
2457
|
+
"description": "Skip confirmation",
|
|
2458
|
+
"name": "yes",
|
|
2459
|
+
"allowNo": false,
|
|
2460
|
+
"type": "boolean"
|
|
2240
2461
|
}
|
|
2241
2462
|
},
|
|
2242
2463
|
"hasDynamicHelp": false,
|
|
2243
2464
|
"hiddenAliases": [],
|
|
2244
|
-
"id": "
|
|
2465
|
+
"id": "keys:revoke",
|
|
2245
2466
|
"pluginAlias": "faces-cli",
|
|
2246
2467
|
"pluginName": "faces-cli",
|
|
2247
2468
|
"pluginType": "core",
|
|
@@ -2251,8 +2472,87 @@
|
|
|
2251
2472
|
"relativePath": [
|
|
2252
2473
|
"dist",
|
|
2253
2474
|
"commands",
|
|
2254
|
-
"
|
|
2255
|
-
"
|
|
2475
|
+
"keys",
|
|
2476
|
+
"revoke.js"
|
|
2477
|
+
]
|
|
2478
|
+
},
|
|
2479
|
+
"keys:update": {
|
|
2480
|
+
"aliases": [],
|
|
2481
|
+
"args": {
|
|
2482
|
+
"key_id": {
|
|
2483
|
+
"description": "Key ID",
|
|
2484
|
+
"name": "key_id",
|
|
2485
|
+
"required": true
|
|
2486
|
+
}
|
|
2487
|
+
},
|
|
2488
|
+
"description": "Update API key metadata (JWT required)",
|
|
2489
|
+
"flags": {
|
|
2490
|
+
"json": {
|
|
2491
|
+
"description": "Format output as json.",
|
|
2492
|
+
"helpGroup": "GLOBAL",
|
|
2493
|
+
"name": "json",
|
|
2494
|
+
"allowNo": false,
|
|
2495
|
+
"type": "boolean"
|
|
2496
|
+
},
|
|
2497
|
+
"base-url": {
|
|
2498
|
+
"description": "API base URL",
|
|
2499
|
+
"env": "FACES_BASE_URL",
|
|
2500
|
+
"name": "base-url",
|
|
2501
|
+
"hasDynamicHelp": false,
|
|
2502
|
+
"multiple": false,
|
|
2503
|
+
"type": "option"
|
|
2504
|
+
},
|
|
2505
|
+
"token": {
|
|
2506
|
+
"description": "JWT bearer token",
|
|
2507
|
+
"env": "FACES_TOKEN",
|
|
2508
|
+
"name": "token",
|
|
2509
|
+
"hasDynamicHelp": false,
|
|
2510
|
+
"multiple": false,
|
|
2511
|
+
"type": "option"
|
|
2512
|
+
},
|
|
2513
|
+
"api-key": {
|
|
2514
|
+
"description": "API key",
|
|
2515
|
+
"env": "FACES_API_KEY",
|
|
2516
|
+
"name": "api-key",
|
|
2517
|
+
"hasDynamicHelp": false,
|
|
2518
|
+
"multiple": false,
|
|
2519
|
+
"type": "option"
|
|
2520
|
+
},
|
|
2521
|
+
"name": {
|
|
2522
|
+
"description": "New key name",
|
|
2523
|
+
"name": "name",
|
|
2524
|
+
"hasDynamicHelp": false,
|
|
2525
|
+
"multiple": false,
|
|
2526
|
+
"type": "option"
|
|
2527
|
+
},
|
|
2528
|
+
"budget": {
|
|
2529
|
+
"description": "New spend budget in USD",
|
|
2530
|
+
"name": "budget",
|
|
2531
|
+
"hasDynamicHelp": false,
|
|
2532
|
+
"multiple": false,
|
|
2533
|
+
"type": "option"
|
|
2534
|
+
},
|
|
2535
|
+
"reset-spent": {
|
|
2536
|
+
"description": "Reset spent amount to zero",
|
|
2537
|
+
"name": "reset-spent",
|
|
2538
|
+
"allowNo": false,
|
|
2539
|
+
"type": "boolean"
|
|
2540
|
+
}
|
|
2541
|
+
},
|
|
2542
|
+
"hasDynamicHelp": false,
|
|
2543
|
+
"hiddenAliases": [],
|
|
2544
|
+
"id": "keys:update",
|
|
2545
|
+
"pluginAlias": "faces-cli",
|
|
2546
|
+
"pluginName": "faces-cli",
|
|
2547
|
+
"pluginType": "core",
|
|
2548
|
+
"strict": true,
|
|
2549
|
+
"enableJsonFlag": true,
|
|
2550
|
+
"isESM": true,
|
|
2551
|
+
"relativePath": [
|
|
2552
|
+
"dist",
|
|
2553
|
+
"commands",
|
|
2554
|
+
"keys",
|
|
2555
|
+
"update.js"
|
|
2256
2556
|
]
|
|
2257
2557
|
},
|
|
2258
2558
|
"face:attributes": {
|
|
@@ -2890,7 +3190,7 @@
|
|
|
2890
3190
|
"required": true
|
|
2891
3191
|
}
|
|
2892
3192
|
},
|
|
2893
|
-
"description": "Lock a face (read-only). A locked face still reads and chats normally, but it
|
|
3193
|
+
"description": "Lock a face (read-only). A locked face still reads and chats normally, but it, and everything it owns (documents, threads, captured style), cannot be changed until unlocked.",
|
|
2894
3194
|
"examples": [
|
|
2895
3195
|
"<%= config.bin %> <%= command.id %> socrates"
|
|
2896
3196
|
],
|
|
@@ -2986,7 +3286,7 @@
|
|
|
2986
3286
|
"type": "option"
|
|
2987
3287
|
},
|
|
2988
3288
|
"k": {
|
|
2989
|
-
"description": "Number of results (1
|
|
3289
|
+
"description": "Number of results (1-20)",
|
|
2990
3290
|
"name": "k",
|
|
2991
3291
|
"default": 5,
|
|
2992
3292
|
"hasDynamicHelp": false,
|
|
@@ -3153,7 +3453,7 @@
|
|
|
3153
3453
|
"type": "boolean"
|
|
3154
3454
|
},
|
|
3155
3455
|
"add": {
|
|
3156
|
-
"description": "Add an account, keeping everyone already on the list
|
|
3456
|
+
"description": "Add an account, keeping everyone already on the list. Username or email (repeatable)",
|
|
3157
3457
|
"exclusive": [
|
|
3158
3458
|
"with",
|
|
3159
3459
|
"none"
|
|
@@ -3411,7 +3711,7 @@
|
|
|
3411
3711
|
"required": true
|
|
3412
3712
|
}
|
|
3413
3713
|
},
|
|
3414
|
-
"description": "Unlock a face (make it writable again). Thaws the face and everything it owns (documents, threads,
|
|
3714
|
+
"description": "Unlock a face (make it writable again). Thaws the face and everything it owns (documents, threads, captured style).",
|
|
3415
3715
|
"examples": [
|
|
3416
3716
|
"<%= config.bin %> <%= command.id %> socrates"
|
|
3417
3717
|
],
|
|
@@ -3473,7 +3773,7 @@
|
|
|
3473
3773
|
"required": true
|
|
3474
3774
|
}
|
|
3475
3775
|
},
|
|
3476
|
-
"description": "Stop publishing a face. Anyone it is individually shared with keeps their access
|
|
3776
|
+
"description": "Stop publishing a face. Anyone it is individually shared with keeps their access. Publishing is an override on top of sharing, not a replacement for it.",
|
|
3477
3777
|
"flags": {
|
|
3478
3778
|
"json": {
|
|
3479
3779
|
"description": "Format output as json.",
|
|
@@ -3532,7 +3832,7 @@
|
|
|
3532
3832
|
"required": true
|
|
3533
3833
|
}
|
|
3534
3834
|
},
|
|
3535
|
-
"description": "Revoke access to a shared face. Takes effect immediately
|
|
3835
|
+
"description": "Revoke access to a shared face. Takes effect immediately. There is no grace period.",
|
|
3536
3836
|
"examples": [
|
|
3537
3837
|
"<%= config.bin %> <%= command.id %> alice --from dana --yes",
|
|
3538
3838
|
"<%= config.bin %> <%= command.id %> alice --all --yes"
|
|
@@ -3611,10 +3911,20 @@
|
|
|
3611
3911
|
"unshare.js"
|
|
3612
3912
|
]
|
|
3613
3913
|
},
|
|
3614
|
-
"
|
|
3914
|
+
"style:delete": {
|
|
3615
3915
|
"aliases": [],
|
|
3616
|
-
"args": {
|
|
3617
|
-
|
|
3916
|
+
"args": {
|
|
3917
|
+
"alias": {
|
|
3918
|
+
"description": "Face alias",
|
|
3919
|
+
"name": "alias",
|
|
3920
|
+
"required": true
|
|
3921
|
+
}
|
|
3922
|
+
},
|
|
3923
|
+
"description": "Delete a face's captured style. The material it was learned from is kept, so the style can be captured again without re-uploading. This never deletes documents or threads: remove those with compile:doc:delete or compile:thread:delete.",
|
|
3924
|
+
"examples": [
|
|
3925
|
+
"<%= config.bin %> <%= command.id %> alice",
|
|
3926
|
+
"<%= config.bin %> <%= command.id %> alice --yes"
|
|
3927
|
+
],
|
|
3618
3928
|
"flags": {
|
|
3619
3929
|
"json": {
|
|
3620
3930
|
"description": "Format output as json.",
|
|
@@ -3647,52 +3957,16 @@
|
|
|
3647
3957
|
"multiple": false,
|
|
3648
3958
|
"type": "option"
|
|
3649
3959
|
},
|
|
3650
|
-
"
|
|
3651
|
-
"description": "
|
|
3652
|
-
"name": "
|
|
3653
|
-
"
|
|
3654
|
-
"hasDynamicHelp": false,
|
|
3655
|
-
"multiple": false,
|
|
3656
|
-
"type": "option"
|
|
3657
|
-
},
|
|
3658
|
-
"expires-days": {
|
|
3659
|
-
"description": "Expiry in days (omit for no expiry)",
|
|
3660
|
-
"name": "expires-days",
|
|
3661
|
-
"hasDynamicHelp": false,
|
|
3662
|
-
"multiple": false,
|
|
3663
|
-
"type": "option"
|
|
3664
|
-
},
|
|
3665
|
-
"budget": {
|
|
3666
|
-
"description": "Spend budget in USD",
|
|
3667
|
-
"name": "budget",
|
|
3668
|
-
"hasDynamicHelp": false,
|
|
3669
|
-
"multiple": false,
|
|
3670
|
-
"type": "option"
|
|
3671
|
-
},
|
|
3672
|
-
"face": {
|
|
3673
|
-
"description": "Allowed face alias (repeatable)",
|
|
3674
|
-
"name": "face",
|
|
3675
|
-
"hasDynamicHelp": false,
|
|
3676
|
-
"multiple": true,
|
|
3677
|
-
"type": "option"
|
|
3678
|
-
},
|
|
3679
|
-
"model": {
|
|
3680
|
-
"description": "Allowed model name (repeatable)",
|
|
3681
|
-
"name": "model",
|
|
3682
|
-
"hasDynamicHelp": false,
|
|
3683
|
-
"multiple": true,
|
|
3684
|
-
"type": "option"
|
|
3685
|
-
},
|
|
3686
|
-
"save": {
|
|
3687
|
-
"description": "Save the new key to ~/.faces/config.json as api_key (default: true; use --no-save to skip)",
|
|
3688
|
-
"name": "save",
|
|
3689
|
-
"allowNo": true,
|
|
3960
|
+
"yes": {
|
|
3961
|
+
"description": "Skip confirmation",
|
|
3962
|
+
"name": "yes",
|
|
3963
|
+
"allowNo": false,
|
|
3690
3964
|
"type": "boolean"
|
|
3691
3965
|
}
|
|
3692
3966
|
},
|
|
3693
3967
|
"hasDynamicHelp": false,
|
|
3694
3968
|
"hiddenAliases": [],
|
|
3695
|
-
"id": "
|
|
3969
|
+
"id": "style:delete",
|
|
3696
3970
|
"pluginAlias": "faces-cli",
|
|
3697
3971
|
"pluginName": "faces-cli",
|
|
3698
3972
|
"pluginType": "core",
|
|
@@ -3702,14 +3976,26 @@
|
|
|
3702
3976
|
"relativePath": [
|
|
3703
3977
|
"dist",
|
|
3704
3978
|
"commands",
|
|
3705
|
-
"
|
|
3706
|
-
"
|
|
3979
|
+
"style",
|
|
3980
|
+
"delete.js"
|
|
3707
3981
|
]
|
|
3708
3982
|
},
|
|
3709
|
-
"
|
|
3983
|
+
"style:make": {
|
|
3710
3984
|
"aliases": [],
|
|
3711
|
-
"args": {
|
|
3712
|
-
|
|
3985
|
+
"args": {
|
|
3986
|
+
"alias": {
|
|
3987
|
+
"description": "Face alias",
|
|
3988
|
+
"name": "alias",
|
|
3989
|
+
"required": true
|
|
3990
|
+
}
|
|
3991
|
+
},
|
|
3992
|
+
"description": "Capture how a face writes, from its own material, and install it. This is style, not knowledge: compile teaches a face what it knows, style teaches it how it sounds. Name the sources to learn from with --source, or take everything ready with --all.",
|
|
3993
|
+
"examples": [
|
|
3994
|
+
"<%= config.bin %> <%= command.id %> alice --all",
|
|
3995
|
+
"<%= config.bin %> <%= command.id %> alice --source 1a2b3c4d --source 5e6f7a8b",
|
|
3996
|
+
"<%= config.bin %> <%= command.id %> alice --source 1a2b3c4d:essay",
|
|
3997
|
+
"<%= config.bin %> <%= command.id %> alice --all --medium essay --no-wait"
|
|
3998
|
+
],
|
|
3713
3999
|
"flags": {
|
|
3714
4000
|
"json": {
|
|
3715
4001
|
"description": "Format output as json.",
|
|
@@ -3741,11 +4027,71 @@
|
|
|
3741
4027
|
"hasDynamicHelp": false,
|
|
3742
4028
|
"multiple": false,
|
|
3743
4029
|
"type": "option"
|
|
4030
|
+
},
|
|
4031
|
+
"source": {
|
|
4032
|
+
"description": "A document or thread to learn from, by id (repeatable). Append :<medium> to declare what it is, e.g. --source 1a2b3c4d:essay, when the source does not already say.",
|
|
4033
|
+
"name": "source",
|
|
4034
|
+
"hasDynamicHelp": false,
|
|
4035
|
+
"multiple": true,
|
|
4036
|
+
"type": "option"
|
|
4037
|
+
},
|
|
4038
|
+
"all": {
|
|
4039
|
+
"description": "Use every source on the face that is ready. Anything skipped is listed.",
|
|
4040
|
+
"name": "all",
|
|
4041
|
+
"allowNo": false,
|
|
4042
|
+
"type": "boolean"
|
|
4043
|
+
},
|
|
4044
|
+
"medium": {
|
|
4045
|
+
"description": "Medium for selected sources that do not already declare one. It does not override a source that does. Each medium is analysed on its own, so an essay never teaches a rule about email.",
|
|
4046
|
+
"name": "medium",
|
|
4047
|
+
"hasDynamicHelp": false,
|
|
4048
|
+
"multiple": false,
|
|
4049
|
+
"type": "option"
|
|
4050
|
+
},
|
|
4051
|
+
"model": {
|
|
4052
|
+
"description": "Analyst model (default: gpt-5.6-terra)",
|
|
4053
|
+
"name": "model",
|
|
4054
|
+
"hasDynamicHelp": false,
|
|
4055
|
+
"multiple": false,
|
|
4056
|
+
"type": "option"
|
|
4057
|
+
},
|
|
4058
|
+
"allow-paid": {
|
|
4059
|
+
"description": "Permit a build that bills. Without this a build is free or it does not run. Needed for any model outside the free tier, and to allow the paid route when a free quota is exhausted.",
|
|
4060
|
+
"name": "allow-paid",
|
|
4061
|
+
"allowNo": false,
|
|
4062
|
+
"type": "boolean"
|
|
4063
|
+
},
|
|
4064
|
+
"compile": {
|
|
4065
|
+
"description": "Compile any named source that is not compiled yet, before capturing style. On by default. --no-compile captures style from what is already compiled and never bills for compilation.",
|
|
4066
|
+
"name": "compile",
|
|
4067
|
+
"allowNo": true,
|
|
4068
|
+
"type": "boolean"
|
|
4069
|
+
},
|
|
4070
|
+
"best-of": {
|
|
4071
|
+
"description": "Generate N candidates and keep the best (1-5, default 1)",
|
|
4072
|
+
"name": "best-of",
|
|
4073
|
+
"hasDynamicHelp": false,
|
|
4074
|
+
"multiple": false,
|
|
4075
|
+
"type": "option"
|
|
4076
|
+
},
|
|
4077
|
+
"no-wait": {
|
|
4078
|
+
"description": "Start the build and return the job id without polling.",
|
|
4079
|
+
"name": "no-wait",
|
|
4080
|
+
"allowNo": false,
|
|
4081
|
+
"type": "boolean"
|
|
4082
|
+
},
|
|
4083
|
+
"timeout": {
|
|
4084
|
+
"description": "How long to wait, in seconds (default: 3600)",
|
|
4085
|
+
"name": "timeout",
|
|
4086
|
+
"default": 3600,
|
|
4087
|
+
"hasDynamicHelp": false,
|
|
4088
|
+
"multiple": false,
|
|
4089
|
+
"type": "option"
|
|
3744
4090
|
}
|
|
3745
4091
|
},
|
|
3746
4092
|
"hasDynamicHelp": false,
|
|
3747
4093
|
"hiddenAliases": [],
|
|
3748
|
-
"id": "
|
|
4094
|
+
"id": "style:make",
|
|
3749
4095
|
"pluginAlias": "faces-cli",
|
|
3750
4096
|
"pluginName": "faces-cli",
|
|
3751
4097
|
"pluginType": "core",
|
|
@@ -3755,346 +4101,8 @@
|
|
|
3755
4101
|
"relativePath": [
|
|
3756
4102
|
"dist",
|
|
3757
4103
|
"commands",
|
|
3758
|
-
"
|
|
3759
|
-
"
|
|
3760
|
-
]
|
|
3761
|
-
},
|
|
3762
|
-
"keys:revoke": {
|
|
3763
|
-
"aliases": [],
|
|
3764
|
-
"args": {
|
|
3765
|
-
"key_id": {
|
|
3766
|
-
"description": "Key ID",
|
|
3767
|
-
"name": "key_id",
|
|
3768
|
-
"required": true
|
|
3769
|
-
}
|
|
3770
|
-
},
|
|
3771
|
-
"description": "Revoke an API key (JWT required)",
|
|
3772
|
-
"flags": {
|
|
3773
|
-
"json": {
|
|
3774
|
-
"description": "Format output as json.",
|
|
3775
|
-
"helpGroup": "GLOBAL",
|
|
3776
|
-
"name": "json",
|
|
3777
|
-
"allowNo": false,
|
|
3778
|
-
"type": "boolean"
|
|
3779
|
-
},
|
|
3780
|
-
"base-url": {
|
|
3781
|
-
"description": "API base URL",
|
|
3782
|
-
"env": "FACES_BASE_URL",
|
|
3783
|
-
"name": "base-url",
|
|
3784
|
-
"hasDynamicHelp": false,
|
|
3785
|
-
"multiple": false,
|
|
3786
|
-
"type": "option"
|
|
3787
|
-
},
|
|
3788
|
-
"token": {
|
|
3789
|
-
"description": "JWT bearer token",
|
|
3790
|
-
"env": "FACES_TOKEN",
|
|
3791
|
-
"name": "token",
|
|
3792
|
-
"hasDynamicHelp": false,
|
|
3793
|
-
"multiple": false,
|
|
3794
|
-
"type": "option"
|
|
3795
|
-
},
|
|
3796
|
-
"api-key": {
|
|
3797
|
-
"description": "API key",
|
|
3798
|
-
"env": "FACES_API_KEY",
|
|
3799
|
-
"name": "api-key",
|
|
3800
|
-
"hasDynamicHelp": false,
|
|
3801
|
-
"multiple": false,
|
|
3802
|
-
"type": "option"
|
|
3803
|
-
},
|
|
3804
|
-
"yes": {
|
|
3805
|
-
"description": "Skip confirmation",
|
|
3806
|
-
"name": "yes",
|
|
3807
|
-
"allowNo": false,
|
|
3808
|
-
"type": "boolean"
|
|
3809
|
-
}
|
|
3810
|
-
},
|
|
3811
|
-
"hasDynamicHelp": false,
|
|
3812
|
-
"hiddenAliases": [],
|
|
3813
|
-
"id": "keys:revoke",
|
|
3814
|
-
"pluginAlias": "faces-cli",
|
|
3815
|
-
"pluginName": "faces-cli",
|
|
3816
|
-
"pluginType": "core",
|
|
3817
|
-
"strict": true,
|
|
3818
|
-
"enableJsonFlag": true,
|
|
3819
|
-
"isESM": true,
|
|
3820
|
-
"relativePath": [
|
|
3821
|
-
"dist",
|
|
3822
|
-
"commands",
|
|
3823
|
-
"keys",
|
|
3824
|
-
"revoke.js"
|
|
3825
|
-
]
|
|
3826
|
-
},
|
|
3827
|
-
"keys:update": {
|
|
3828
|
-
"aliases": [],
|
|
3829
|
-
"args": {
|
|
3830
|
-
"key_id": {
|
|
3831
|
-
"description": "Key ID",
|
|
3832
|
-
"name": "key_id",
|
|
3833
|
-
"required": true
|
|
3834
|
-
}
|
|
3835
|
-
},
|
|
3836
|
-
"description": "Update API key metadata (JWT required)",
|
|
3837
|
-
"flags": {
|
|
3838
|
-
"json": {
|
|
3839
|
-
"description": "Format output as json.",
|
|
3840
|
-
"helpGroup": "GLOBAL",
|
|
3841
|
-
"name": "json",
|
|
3842
|
-
"allowNo": false,
|
|
3843
|
-
"type": "boolean"
|
|
3844
|
-
},
|
|
3845
|
-
"base-url": {
|
|
3846
|
-
"description": "API base URL",
|
|
3847
|
-
"env": "FACES_BASE_URL",
|
|
3848
|
-
"name": "base-url",
|
|
3849
|
-
"hasDynamicHelp": false,
|
|
3850
|
-
"multiple": false,
|
|
3851
|
-
"type": "option"
|
|
3852
|
-
},
|
|
3853
|
-
"token": {
|
|
3854
|
-
"description": "JWT bearer token",
|
|
3855
|
-
"env": "FACES_TOKEN",
|
|
3856
|
-
"name": "token",
|
|
3857
|
-
"hasDynamicHelp": false,
|
|
3858
|
-
"multiple": false,
|
|
3859
|
-
"type": "option"
|
|
3860
|
-
},
|
|
3861
|
-
"api-key": {
|
|
3862
|
-
"description": "API key",
|
|
3863
|
-
"env": "FACES_API_KEY",
|
|
3864
|
-
"name": "api-key",
|
|
3865
|
-
"hasDynamicHelp": false,
|
|
3866
|
-
"multiple": false,
|
|
3867
|
-
"type": "option"
|
|
3868
|
-
},
|
|
3869
|
-
"name": {
|
|
3870
|
-
"description": "New key name",
|
|
3871
|
-
"name": "name",
|
|
3872
|
-
"hasDynamicHelp": false,
|
|
3873
|
-
"multiple": false,
|
|
3874
|
-
"type": "option"
|
|
3875
|
-
},
|
|
3876
|
-
"budget": {
|
|
3877
|
-
"description": "New spend budget in USD",
|
|
3878
|
-
"name": "budget",
|
|
3879
|
-
"hasDynamicHelp": false,
|
|
3880
|
-
"multiple": false,
|
|
3881
|
-
"type": "option"
|
|
3882
|
-
},
|
|
3883
|
-
"reset-spent": {
|
|
3884
|
-
"description": "Reset spent amount to zero",
|
|
3885
|
-
"name": "reset-spent",
|
|
3886
|
-
"allowNo": false,
|
|
3887
|
-
"type": "boolean"
|
|
3888
|
-
}
|
|
3889
|
-
},
|
|
3890
|
-
"hasDynamicHelp": false,
|
|
3891
|
-
"hiddenAliases": [],
|
|
3892
|
-
"id": "keys:update",
|
|
3893
|
-
"pluginAlias": "faces-cli",
|
|
3894
|
-
"pluginName": "faces-cli",
|
|
3895
|
-
"pluginType": "core",
|
|
3896
|
-
"strict": true,
|
|
3897
|
-
"enableJsonFlag": true,
|
|
3898
|
-
"isESM": true,
|
|
3899
|
-
"relativePath": [
|
|
3900
|
-
"dist",
|
|
3901
|
-
"commands",
|
|
3902
|
-
"keys",
|
|
3903
|
-
"update.js"
|
|
3904
|
-
]
|
|
3905
|
-
},
|
|
3906
|
-
"style:delete": {
|
|
3907
|
-
"aliases": [],
|
|
3908
|
-
"args": {
|
|
3909
|
-
"alias": {
|
|
3910
|
-
"description": "Face alias",
|
|
3911
|
-
"name": "alias",
|
|
3912
|
-
"required": true
|
|
3913
|
-
}
|
|
3914
|
-
},
|
|
3915
|
-
"description": "Delete a face's captured style. The material it was learned from is kept, so the style can be captured again without re-uploading. This never deletes documents or threads: remove those with compile:doc:delete or compile:thread:delete.",
|
|
3916
|
-
"examples": [
|
|
3917
|
-
"<%= config.bin %> <%= command.id %> alice",
|
|
3918
|
-
"<%= config.bin %> <%= command.id %> alice --yes"
|
|
3919
|
-
],
|
|
3920
|
-
"flags": {
|
|
3921
|
-
"json": {
|
|
3922
|
-
"description": "Format output as json.",
|
|
3923
|
-
"helpGroup": "GLOBAL",
|
|
3924
|
-
"name": "json",
|
|
3925
|
-
"allowNo": false,
|
|
3926
|
-
"type": "boolean"
|
|
3927
|
-
},
|
|
3928
|
-
"base-url": {
|
|
3929
|
-
"description": "API base URL",
|
|
3930
|
-
"env": "FACES_BASE_URL",
|
|
3931
|
-
"name": "base-url",
|
|
3932
|
-
"hasDynamicHelp": false,
|
|
3933
|
-
"multiple": false,
|
|
3934
|
-
"type": "option"
|
|
3935
|
-
},
|
|
3936
|
-
"token": {
|
|
3937
|
-
"description": "JWT bearer token",
|
|
3938
|
-
"env": "FACES_TOKEN",
|
|
3939
|
-
"name": "token",
|
|
3940
|
-
"hasDynamicHelp": false,
|
|
3941
|
-
"multiple": false,
|
|
3942
|
-
"type": "option"
|
|
3943
|
-
},
|
|
3944
|
-
"api-key": {
|
|
3945
|
-
"description": "API key",
|
|
3946
|
-
"env": "FACES_API_KEY",
|
|
3947
|
-
"name": "api-key",
|
|
3948
|
-
"hasDynamicHelp": false,
|
|
3949
|
-
"multiple": false,
|
|
3950
|
-
"type": "option"
|
|
3951
|
-
},
|
|
3952
|
-
"yes": {
|
|
3953
|
-
"description": "Skip confirmation",
|
|
3954
|
-
"name": "yes",
|
|
3955
|
-
"allowNo": false,
|
|
3956
|
-
"type": "boolean"
|
|
3957
|
-
}
|
|
3958
|
-
},
|
|
3959
|
-
"hasDynamicHelp": false,
|
|
3960
|
-
"hiddenAliases": [],
|
|
3961
|
-
"id": "style:delete",
|
|
3962
|
-
"pluginAlias": "faces-cli",
|
|
3963
|
-
"pluginName": "faces-cli",
|
|
3964
|
-
"pluginType": "core",
|
|
3965
|
-
"strict": true,
|
|
3966
|
-
"enableJsonFlag": true,
|
|
3967
|
-
"isESM": true,
|
|
3968
|
-
"relativePath": [
|
|
3969
|
-
"dist",
|
|
3970
|
-
"commands",
|
|
3971
|
-
"style",
|
|
3972
|
-
"delete.js"
|
|
3973
|
-
]
|
|
3974
|
-
},
|
|
3975
|
-
"style:make": {
|
|
3976
|
-
"aliases": [],
|
|
3977
|
-
"args": {
|
|
3978
|
-
"alias": {
|
|
3979
|
-
"description": "Face alias",
|
|
3980
|
-
"name": "alias",
|
|
3981
|
-
"required": true
|
|
3982
|
-
}
|
|
3983
|
-
},
|
|
3984
|
-
"description": "Capture how a face writes, from its own material, and install it. This is style, not knowledge: compile teaches a face what it knows, style teaches it how it sounds. Name the sources to learn from with --source, or take everything ready with --all.",
|
|
3985
|
-
"examples": [
|
|
3986
|
-
"<%= config.bin %> <%= command.id %> alice --all",
|
|
3987
|
-
"<%= config.bin %> <%= command.id %> alice --source 1a2b3c4d --source 5e6f7a8b",
|
|
3988
|
-
"<%= config.bin %> <%= command.id %> alice --source 1a2b3c4d:essay",
|
|
3989
|
-
"<%= config.bin %> <%= command.id %> alice --all --medium essay --no-wait"
|
|
3990
|
-
],
|
|
3991
|
-
"flags": {
|
|
3992
|
-
"json": {
|
|
3993
|
-
"description": "Format output as json.",
|
|
3994
|
-
"helpGroup": "GLOBAL",
|
|
3995
|
-
"name": "json",
|
|
3996
|
-
"allowNo": false,
|
|
3997
|
-
"type": "boolean"
|
|
3998
|
-
},
|
|
3999
|
-
"base-url": {
|
|
4000
|
-
"description": "API base URL",
|
|
4001
|
-
"env": "FACES_BASE_URL",
|
|
4002
|
-
"name": "base-url",
|
|
4003
|
-
"hasDynamicHelp": false,
|
|
4004
|
-
"multiple": false,
|
|
4005
|
-
"type": "option"
|
|
4006
|
-
},
|
|
4007
|
-
"token": {
|
|
4008
|
-
"description": "JWT bearer token",
|
|
4009
|
-
"env": "FACES_TOKEN",
|
|
4010
|
-
"name": "token",
|
|
4011
|
-
"hasDynamicHelp": false,
|
|
4012
|
-
"multiple": false,
|
|
4013
|
-
"type": "option"
|
|
4014
|
-
},
|
|
4015
|
-
"api-key": {
|
|
4016
|
-
"description": "API key",
|
|
4017
|
-
"env": "FACES_API_KEY",
|
|
4018
|
-
"name": "api-key",
|
|
4019
|
-
"hasDynamicHelp": false,
|
|
4020
|
-
"multiple": false,
|
|
4021
|
-
"type": "option"
|
|
4022
|
-
},
|
|
4023
|
-
"source": {
|
|
4024
|
-
"description": "A document or thread to learn from, by id (repeatable). Append :<medium> to declare what it is, e.g. --source 1a2b3c4d:essay, when the source does not already say.",
|
|
4025
|
-
"name": "source",
|
|
4026
|
-
"hasDynamicHelp": false,
|
|
4027
|
-
"multiple": true,
|
|
4028
|
-
"type": "option"
|
|
4029
|
-
},
|
|
4030
|
-
"all": {
|
|
4031
|
-
"description": "Use every source on the face that is ready. Anything skipped is listed.",
|
|
4032
|
-
"name": "all",
|
|
4033
|
-
"allowNo": false,
|
|
4034
|
-
"type": "boolean"
|
|
4035
|
-
},
|
|
4036
|
-
"medium": {
|
|
4037
|
-
"description": "Medium for selected sources that do not already declare one. It does not override a source that does. Each medium is analysed on its own, so an essay never teaches a rule about email.",
|
|
4038
|
-
"name": "medium",
|
|
4039
|
-
"hasDynamicHelp": false,
|
|
4040
|
-
"multiple": false,
|
|
4041
|
-
"type": "option"
|
|
4042
|
-
},
|
|
4043
|
-
"model": {
|
|
4044
|
-
"description": "Analyst model (default: gpt-5.6-terra)",
|
|
4045
|
-
"name": "model",
|
|
4046
|
-
"hasDynamicHelp": false,
|
|
4047
|
-
"multiple": false,
|
|
4048
|
-
"type": "option"
|
|
4049
|
-
},
|
|
4050
|
-
"allow-paid": {
|
|
4051
|
-
"description": "Permit a build that bills. Without this a build is free or it does not run. Needed for any model outside the free tier, and to allow the paid route when a free quota is exhausted.",
|
|
4052
|
-
"name": "allow-paid",
|
|
4053
|
-
"allowNo": false,
|
|
4054
|
-
"type": "boolean"
|
|
4055
|
-
},
|
|
4056
|
-
"compile": {
|
|
4057
|
-
"description": "Compile any named source that is not compiled yet, before capturing style. On by default. --no-compile captures style from what is already compiled and never bills for compilation.",
|
|
4058
|
-
"name": "compile",
|
|
4059
|
-
"allowNo": true,
|
|
4060
|
-
"type": "boolean"
|
|
4061
|
-
},
|
|
4062
|
-
"best-of": {
|
|
4063
|
-
"description": "Generate N candidates and keep the best (1-5, default 1)",
|
|
4064
|
-
"name": "best-of",
|
|
4065
|
-
"hasDynamicHelp": false,
|
|
4066
|
-
"multiple": false,
|
|
4067
|
-
"type": "option"
|
|
4068
|
-
},
|
|
4069
|
-
"no-wait": {
|
|
4070
|
-
"description": "Start the build and return the job id without polling.",
|
|
4071
|
-
"name": "no-wait",
|
|
4072
|
-
"allowNo": false,
|
|
4073
|
-
"type": "boolean"
|
|
4074
|
-
},
|
|
4075
|
-
"timeout": {
|
|
4076
|
-
"description": "How long to wait, in seconds (default: 3600)",
|
|
4077
|
-
"name": "timeout",
|
|
4078
|
-
"default": 3600,
|
|
4079
|
-
"hasDynamicHelp": false,
|
|
4080
|
-
"multiple": false,
|
|
4081
|
-
"type": "option"
|
|
4082
|
-
}
|
|
4083
|
-
},
|
|
4084
|
-
"hasDynamicHelp": false,
|
|
4085
|
-
"hiddenAliases": [],
|
|
4086
|
-
"id": "style:make",
|
|
4087
|
-
"pluginAlias": "faces-cli",
|
|
4088
|
-
"pluginName": "faces-cli",
|
|
4089
|
-
"pluginType": "core",
|
|
4090
|
-
"strict": true,
|
|
4091
|
-
"enableJsonFlag": true,
|
|
4092
|
-
"isESM": true,
|
|
4093
|
-
"relativePath": [
|
|
4094
|
-
"dist",
|
|
4095
|
-
"commands",
|
|
4096
|
-
"style",
|
|
4097
|
-
"make.js"
|
|
4104
|
+
"style",
|
|
4105
|
+
"make.js"
|
|
4098
4106
|
]
|
|
4099
4107
|
},
|
|
4100
4108
|
"style:revert": {
|
|
@@ -5154,7 +5162,7 @@
|
|
|
5154
5162
|
"index.js"
|
|
5155
5163
|
]
|
|
5156
5164
|
},
|
|
5157
|
-
"compile:
|
|
5165
|
+
"compile:thread:create": {
|
|
5158
5166
|
"aliases": [],
|
|
5159
5167
|
"args": {
|
|
5160
5168
|
"face_id": {
|
|
@@ -5163,7 +5171,7 @@
|
|
|
5163
5171
|
"required": true
|
|
5164
5172
|
}
|
|
5165
5173
|
},
|
|
5166
|
-
"description": "
|
|
5174
|
+
"description": "Start a new thread for a face",
|
|
5167
5175
|
"flags": {
|
|
5168
5176
|
"json": {
|
|
5169
5177
|
"description": "Format output as json.",
|
|
@@ -5197,49 +5205,22 @@
|
|
|
5197
5205
|
"type": "option"
|
|
5198
5206
|
},
|
|
5199
5207
|
"label": {
|
|
5200
|
-
"description": "
|
|
5208
|
+
"description": "Thread label",
|
|
5201
5209
|
"name": "label",
|
|
5202
5210
|
"hasDynamicHelp": false,
|
|
5203
5211
|
"multiple": false,
|
|
5204
5212
|
"type": "option"
|
|
5205
5213
|
},
|
|
5206
|
-
"
|
|
5207
|
-
"description": "
|
|
5208
|
-
"name": "
|
|
5209
|
-
"
|
|
5210
|
-
"
|
|
5211
|
-
"type": "option"
|
|
5212
|
-
},
|
|
5213
|
-
"file": {
|
|
5214
|
-
"description": "Read content from file",
|
|
5215
|
-
"name": "file",
|
|
5216
|
-
"hasDynamicHelp": false,
|
|
5217
|
-
"multiple": false,
|
|
5218
|
-
"type": "option"
|
|
5219
|
-
},
|
|
5220
|
-
"medium": {
|
|
5221
|
-
"description": "What sort of writing this is — e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not.",
|
|
5222
|
-
"name": "medium",
|
|
5223
|
-
"hasDynamicHelp": false,
|
|
5224
|
-
"multiple": false,
|
|
5225
|
-
"type": "option"
|
|
5226
|
-
},
|
|
5227
|
-
"perspective": {
|
|
5228
|
-
"description": "Perspective (first-person or third-person)",
|
|
5229
|
-
"name": "perspective",
|
|
5230
|
-
"default": "first-person",
|
|
5231
|
-
"hasDynamicHelp": false,
|
|
5232
|
-
"multiple": false,
|
|
5233
|
-
"options": [
|
|
5234
|
-
"first-person",
|
|
5235
|
-
"third-person"
|
|
5236
|
-
],
|
|
5237
|
-
"type": "option"
|
|
5214
|
+
"oauth-only": {
|
|
5215
|
+
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
5216
|
+
"name": "oauth-only",
|
|
5217
|
+
"allowNo": false,
|
|
5218
|
+
"type": "boolean"
|
|
5238
5219
|
}
|
|
5239
5220
|
},
|
|
5240
5221
|
"hasDynamicHelp": false,
|
|
5241
5222
|
"hiddenAliases": [],
|
|
5242
|
-
"id": "compile:
|
|
5223
|
+
"id": "compile:thread:create",
|
|
5243
5224
|
"pluginAlias": "faces-cli",
|
|
5244
5225
|
"pluginName": "faces-cli",
|
|
5245
5226
|
"pluginType": "core",
|
|
@@ -5250,20 +5231,20 @@
|
|
|
5250
5231
|
"dist",
|
|
5251
5232
|
"commands",
|
|
5252
5233
|
"compile",
|
|
5253
|
-
"
|
|
5234
|
+
"thread",
|
|
5254
5235
|
"create.js"
|
|
5255
5236
|
]
|
|
5256
5237
|
},
|
|
5257
|
-
"compile:
|
|
5238
|
+
"compile:thread:delete": {
|
|
5258
5239
|
"aliases": [],
|
|
5259
5240
|
"args": {
|
|
5260
|
-
"
|
|
5261
|
-
"description": "
|
|
5262
|
-
"name": "
|
|
5241
|
+
"thread_id": {
|
|
5242
|
+
"description": "Thread ID",
|
|
5243
|
+
"name": "thread_id",
|
|
5263
5244
|
"required": true
|
|
5264
5245
|
}
|
|
5265
5246
|
},
|
|
5266
|
-
"description": "Delete a
|
|
5247
|
+
"description": "Delete a thread",
|
|
5267
5248
|
"flags": {
|
|
5268
5249
|
"json": {
|
|
5269
5250
|
"description": "Format output as json.",
|
|
@@ -5295,11 +5276,17 @@
|
|
|
5295
5276
|
"hasDynamicHelp": false,
|
|
5296
5277
|
"multiple": false,
|
|
5297
5278
|
"type": "option"
|
|
5279
|
+
},
|
|
5280
|
+
"yes": {
|
|
5281
|
+
"description": "Skip confirmation",
|
|
5282
|
+
"name": "yes",
|
|
5283
|
+
"allowNo": false,
|
|
5284
|
+
"type": "boolean"
|
|
5298
5285
|
}
|
|
5299
5286
|
},
|
|
5300
5287
|
"hasDynamicHelp": false,
|
|
5301
5288
|
"hiddenAliases": [],
|
|
5302
|
-
"id": "compile:
|
|
5289
|
+
"id": "compile:thread:delete",
|
|
5303
5290
|
"pluginAlias": "faces-cli",
|
|
5304
5291
|
"pluginName": "faces-cli",
|
|
5305
5292
|
"pluginType": "core",
|
|
@@ -5310,20 +5297,25 @@
|
|
|
5310
5297
|
"dist",
|
|
5311
5298
|
"commands",
|
|
5312
5299
|
"compile",
|
|
5313
|
-
"
|
|
5300
|
+
"thread",
|
|
5314
5301
|
"delete.js"
|
|
5315
5302
|
]
|
|
5316
5303
|
},
|
|
5317
|
-
"compile:
|
|
5304
|
+
"compile:thread:edit": {
|
|
5318
5305
|
"aliases": [],
|
|
5319
5306
|
"args": {
|
|
5320
|
-
"
|
|
5321
|
-
"description": "
|
|
5322
|
-
"name": "
|
|
5307
|
+
"thread_id": {
|
|
5308
|
+
"description": "Thread ID",
|
|
5309
|
+
"name": "thread_id",
|
|
5323
5310
|
"required": true
|
|
5324
5311
|
}
|
|
5325
5312
|
},
|
|
5326
|
-
"description": "Edit a
|
|
5313
|
+
"description": "Edit a thread: its label, what medium it is read as, and/or which speaker is the face.",
|
|
5314
|
+
"examples": [
|
|
5315
|
+
"<%= config.bin %> <%= command.id %> THREAD_ID --label \"Interview\"",
|
|
5316
|
+
"<%= config.bin %> <%= command.id %> THREAD_ID --medium lecture",
|
|
5317
|
+
"<%= config.bin %> <%= command.id %> THREAD_ID --clear-medium"
|
|
5318
|
+
],
|
|
5327
5319
|
"flags": {
|
|
5328
5320
|
"json": {
|
|
5329
5321
|
"description": "Format output as json.",
|
|
@@ -5357,108 +5349,42 @@
|
|
|
5357
5349
|
"type": "option"
|
|
5358
5350
|
},
|
|
5359
5351
|
"label": {
|
|
5360
|
-
"description": "New label
|
|
5352
|
+
"description": "New thread label",
|
|
5361
5353
|
"name": "label",
|
|
5362
5354
|
"hasDynamicHelp": false,
|
|
5363
5355
|
"multiple": false,
|
|
5364
5356
|
"type": "option"
|
|
5365
5357
|
},
|
|
5366
|
-
"
|
|
5367
|
-
"description": "
|
|
5368
|
-
"name": "
|
|
5369
|
-
"hasDynamicHelp": false,
|
|
5370
|
-
"multiple": false,
|
|
5371
|
-
"type": "option"
|
|
5372
|
-
},
|
|
5373
|
-
"file": {
|
|
5374
|
-
"description": "Read new content from file",
|
|
5375
|
-
"name": "file",
|
|
5358
|
+
"face-speaker": {
|
|
5359
|
+
"description": "Reassign face speaker: set this speaker to role=user, all others to role=assistant",
|
|
5360
|
+
"name": "face-speaker",
|
|
5376
5361
|
"hasDynamicHelp": false,
|
|
5377
5362
|
"multiple": false,
|
|
5378
5363
|
"type": "option"
|
|
5379
5364
|
},
|
|
5380
5365
|
"medium": {
|
|
5381
|
-
"description": "What sort of writing this is
|
|
5366
|
+
"description": "What this thread should be read as. What sort of writing this is, e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not. This is a correction that sticks: it overrides what an imported corpus arrived as, without changing the record of what that was.",
|
|
5367
|
+
"exclusive": [
|
|
5368
|
+
"clear-medium"
|
|
5369
|
+
],
|
|
5382
5370
|
"name": "medium",
|
|
5383
5371
|
"hasDynamicHelp": false,
|
|
5384
5372
|
"multiple": false,
|
|
5385
5373
|
"type": "option"
|
|
5386
5374
|
},
|
|
5387
|
-
"
|
|
5388
|
-
"description": "
|
|
5389
|
-
"
|
|
5390
|
-
|
|
5391
|
-
"multiple": false,
|
|
5392
|
-
"options": [
|
|
5393
|
-
"first-person",
|
|
5394
|
-
"third-person"
|
|
5375
|
+
"clear-medium": {
|
|
5376
|
+
"description": "Remove a medium correction, so the thread is read as whatever it arrived as.",
|
|
5377
|
+
"exclusive": [
|
|
5378
|
+
"medium"
|
|
5395
5379
|
],
|
|
5396
|
-
"
|
|
5397
|
-
}
|
|
5398
|
-
},
|
|
5399
|
-
"hasDynamicHelp": false,
|
|
5400
|
-
"hiddenAliases": [],
|
|
5401
|
-
"id": "compile:doc:edit",
|
|
5402
|
-
"pluginAlias": "faces-cli",
|
|
5403
|
-
"pluginName": "faces-cli",
|
|
5404
|
-
"pluginType": "core",
|
|
5405
|
-
"strict": true,
|
|
5406
|
-
"enableJsonFlag": true,
|
|
5407
|
-
"isESM": true,
|
|
5408
|
-
"relativePath": [
|
|
5409
|
-
"dist",
|
|
5410
|
-
"commands",
|
|
5411
|
-
"compile",
|
|
5412
|
-
"doc",
|
|
5413
|
-
"edit.js"
|
|
5414
|
-
]
|
|
5415
|
-
},
|
|
5416
|
-
"compile:doc:get": {
|
|
5417
|
-
"aliases": [],
|
|
5418
|
-
"args": {
|
|
5419
|
-
"doc_id": {
|
|
5420
|
-
"description": "Document ID",
|
|
5421
|
-
"name": "doc_id",
|
|
5422
|
-
"required": true
|
|
5423
|
-
}
|
|
5424
|
-
},
|
|
5425
|
-
"description": "Get a document by ID",
|
|
5426
|
-
"flags": {
|
|
5427
|
-
"json": {
|
|
5428
|
-
"description": "Format output as json.",
|
|
5429
|
-
"helpGroup": "GLOBAL",
|
|
5430
|
-
"name": "json",
|
|
5380
|
+
"name": "clear-medium",
|
|
5431
5381
|
"allowNo": false,
|
|
5432
5382
|
"type": "boolean"
|
|
5433
|
-
},
|
|
5434
|
-
"base-url": {
|
|
5435
|
-
"description": "API base URL",
|
|
5436
|
-
"env": "FACES_BASE_URL",
|
|
5437
|
-
"name": "base-url",
|
|
5438
|
-
"hasDynamicHelp": false,
|
|
5439
|
-
"multiple": false,
|
|
5440
|
-
"type": "option"
|
|
5441
|
-
},
|
|
5442
|
-
"token": {
|
|
5443
|
-
"description": "JWT bearer token",
|
|
5444
|
-
"env": "FACES_TOKEN",
|
|
5445
|
-
"name": "token",
|
|
5446
|
-
"hasDynamicHelp": false,
|
|
5447
|
-
"multiple": false,
|
|
5448
|
-
"type": "option"
|
|
5449
|
-
},
|
|
5450
|
-
"api-key": {
|
|
5451
|
-
"description": "API key",
|
|
5452
|
-
"env": "FACES_API_KEY",
|
|
5453
|
-
"name": "api-key",
|
|
5454
|
-
"hasDynamicHelp": false,
|
|
5455
|
-
"multiple": false,
|
|
5456
|
-
"type": "option"
|
|
5457
5383
|
}
|
|
5458
5384
|
},
|
|
5459
5385
|
"hasDynamicHelp": false,
|
|
5460
5386
|
"hiddenAliases": [],
|
|
5461
|
-
"id": "compile:
|
|
5387
|
+
"id": "compile:thread:edit",
|
|
5462
5388
|
"pluginAlias": "faces-cli",
|
|
5463
5389
|
"pluginName": "faces-cli",
|
|
5464
5390
|
"pluginType": "core",
|
|
@@ -5469,24 +5395,20 @@
|
|
|
5469
5395
|
"dist",
|
|
5470
5396
|
"commands",
|
|
5471
5397
|
"compile",
|
|
5472
|
-
"
|
|
5473
|
-
"
|
|
5398
|
+
"thread",
|
|
5399
|
+
"edit.js"
|
|
5474
5400
|
]
|
|
5475
5401
|
},
|
|
5476
|
-
"compile:
|
|
5402
|
+
"compile:thread:get": {
|
|
5477
5403
|
"aliases": [],
|
|
5478
5404
|
"args": {
|
|
5479
|
-
"
|
|
5480
|
-
"description": "
|
|
5481
|
-
"name": "
|
|
5405
|
+
"thread_id": {
|
|
5406
|
+
"description": "Thread ID",
|
|
5407
|
+
"name": "thread_id",
|
|
5482
5408
|
"required": true
|
|
5483
5409
|
}
|
|
5484
5410
|
},
|
|
5485
|
-
"description": "
|
|
5486
|
-
"examples": [
|
|
5487
|
-
"<%= config.bin %> <%= command.id %> alice --file notes.txt",
|
|
5488
|
-
"<%= config.bin %> <%= command.id %> alice --file a.txt --file b.txt --file c.txt --no-wait --json"
|
|
5489
|
-
],
|
|
5411
|
+
"description": "Get a thread by ID",
|
|
5490
5412
|
"flags": {
|
|
5491
5413
|
"json": {
|
|
5492
5414
|
"description": "Format output as json.",
|
|
@@ -5518,68 +5440,11 @@
|
|
|
5518
5440
|
"hasDynamicHelp": false,
|
|
5519
5441
|
"multiple": false,
|
|
5520
5442
|
"type": "option"
|
|
5521
|
-
},
|
|
5522
|
-
"label": {
|
|
5523
|
-
"description": "Document label/title (single document only; with several files each is labelled by its filename)",
|
|
5524
|
-
"name": "label",
|
|
5525
|
-
"hasDynamicHelp": false,
|
|
5526
|
-
"multiple": false,
|
|
5527
|
-
"type": "option"
|
|
5528
|
-
},
|
|
5529
|
-
"content": {
|
|
5530
|
-
"description": "Inline text content",
|
|
5531
|
-
"exclusive": [
|
|
5532
|
-
"file"
|
|
5533
|
-
],
|
|
5534
|
-
"name": "content",
|
|
5535
|
-
"hasDynamicHelp": false,
|
|
5536
|
-
"multiple": false,
|
|
5537
|
-
"type": "option"
|
|
5538
|
-
},
|
|
5539
|
-
"file": {
|
|
5540
|
-
"description": "Read content from file (repeatable — each file becomes its own document)",
|
|
5541
|
-
"name": "file",
|
|
5542
|
-
"hasDynamicHelp": false,
|
|
5543
|
-
"multiple": true,
|
|
5544
|
-
"type": "option"
|
|
5545
|
-
},
|
|
5546
|
-
"medium": {
|
|
5547
|
-
"description": "What sort of writing this is — e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not.",
|
|
5548
|
-
"name": "medium",
|
|
5549
|
-
"hasDynamicHelp": false,
|
|
5550
|
-
"multiple": false,
|
|
5551
|
-
"type": "option"
|
|
5552
|
-
},
|
|
5553
|
-
"perspective": {
|
|
5554
|
-
"description": "Perspective",
|
|
5555
|
-
"name": "perspective",
|
|
5556
|
-
"default": "first-person",
|
|
5557
|
-
"hasDynamicHelp": false,
|
|
5558
|
-
"multiple": false,
|
|
5559
|
-
"options": [
|
|
5560
|
-
"first-person",
|
|
5561
|
-
"third-person"
|
|
5562
|
-
],
|
|
5563
|
-
"type": "option"
|
|
5564
|
-
},
|
|
5565
|
-
"timeout": {
|
|
5566
|
-
"description": "Compile timeout in seconds, per document (default: 600)",
|
|
5567
|
-
"name": "timeout",
|
|
5568
|
-
"default": 600,
|
|
5569
|
-
"hasDynamicHelp": false,
|
|
5570
|
-
"multiple": false,
|
|
5571
|
-
"type": "option"
|
|
5572
|
-
},
|
|
5573
|
-
"no-wait": {
|
|
5574
|
-
"description": "Create and trigger compilation, then return immediately without polling.",
|
|
5575
|
-
"name": "no-wait",
|
|
5576
|
-
"allowNo": false,
|
|
5577
|
-
"type": "boolean"
|
|
5578
5443
|
}
|
|
5579
5444
|
},
|
|
5580
5445
|
"hasDynamicHelp": false,
|
|
5581
5446
|
"hiddenAliases": [],
|
|
5582
|
-
"id": "compile:
|
|
5447
|
+
"id": "compile:thread:get",
|
|
5583
5448
|
"pluginAlias": "faces-cli",
|
|
5584
5449
|
"pluginName": "faces-cli",
|
|
5585
5450
|
"pluginType": "core",
|
|
@@ -5590,11 +5455,11 @@
|
|
|
5590
5455
|
"dist",
|
|
5591
5456
|
"commands",
|
|
5592
5457
|
"compile",
|
|
5593
|
-
"
|
|
5594
|
-
"
|
|
5458
|
+
"thread",
|
|
5459
|
+
"get.js"
|
|
5595
5460
|
]
|
|
5596
5461
|
},
|
|
5597
|
-
"compile:
|
|
5462
|
+
"compile:thread:list": {
|
|
5598
5463
|
"aliases": [],
|
|
5599
5464
|
"args": {
|
|
5600
5465
|
"face_id": {
|
|
@@ -5603,7 +5468,7 @@
|
|
|
5603
5468
|
"required": true
|
|
5604
5469
|
}
|
|
5605
5470
|
},
|
|
5606
|
-
"description": "List
|
|
5471
|
+
"description": "List threads for a face",
|
|
5607
5472
|
"flags": {
|
|
5608
5473
|
"json": {
|
|
5609
5474
|
"description": "Format output as json.",
|
|
@@ -5635,17 +5500,11 @@
|
|
|
5635
5500
|
"hasDynamicHelp": false,
|
|
5636
5501
|
"multiple": false,
|
|
5637
5502
|
"type": "option"
|
|
5638
|
-
},
|
|
5639
|
-
"verbose": {
|
|
5640
|
-
"description": "Include each document's full text",
|
|
5641
|
-
"name": "verbose",
|
|
5642
|
-
"allowNo": false,
|
|
5643
|
-
"type": "boolean"
|
|
5644
5503
|
}
|
|
5645
5504
|
},
|
|
5646
5505
|
"hasDynamicHelp": false,
|
|
5647
5506
|
"hiddenAliases": [],
|
|
5648
|
-
"id": "compile:
|
|
5507
|
+
"id": "compile:thread:list",
|
|
5649
5508
|
"pluginAlias": "faces-cli",
|
|
5650
5509
|
"pluginName": "faces-cli",
|
|
5651
5510
|
"pluginType": "core",
|
|
@@ -5656,20 +5515,20 @@
|
|
|
5656
5515
|
"dist",
|
|
5657
5516
|
"commands",
|
|
5658
5517
|
"compile",
|
|
5659
|
-
"
|
|
5518
|
+
"thread",
|
|
5660
5519
|
"list.js"
|
|
5661
5520
|
]
|
|
5662
5521
|
},
|
|
5663
|
-
"compile:
|
|
5522
|
+
"compile:thread:make": {
|
|
5664
5523
|
"aliases": [],
|
|
5665
5524
|
"args": {
|
|
5666
|
-
"
|
|
5667
|
-
"description": "
|
|
5668
|
-
"name": "
|
|
5525
|
+
"thread_id": {
|
|
5526
|
+
"description": "Thread ID",
|
|
5527
|
+
"name": "thread_id",
|
|
5669
5528
|
"required": true
|
|
5670
5529
|
}
|
|
5671
5530
|
},
|
|
5672
|
-
"description": "Compile an existing
|
|
5531
|
+
"description": "Compile an existing thread (prepare + sync in one step)",
|
|
5673
5532
|
"flags": {
|
|
5674
5533
|
"json": {
|
|
5675
5534
|
"description": "Format output as json.",
|
|
@@ -5711,7 +5570,7 @@
|
|
|
5711
5570
|
"type": "option"
|
|
5712
5571
|
},
|
|
5713
5572
|
"no-wait": {
|
|
5714
|
-
"description": "Return immediately after triggering compilation. Prints the
|
|
5573
|
+
"description": "Return immediately after triggering compilation. Prints the thread ID for manual polling.",
|
|
5715
5574
|
"name": "no-wait",
|
|
5716
5575
|
"allowNo": false,
|
|
5717
5576
|
"type": "boolean"
|
|
@@ -5719,7 +5578,7 @@
|
|
|
5719
5578
|
},
|
|
5720
5579
|
"hasDynamicHelp": false,
|
|
5721
5580
|
"hiddenAliases": [],
|
|
5722
|
-
"id": "compile:
|
|
5581
|
+
"id": "compile:thread:make",
|
|
5723
5582
|
"pluginAlias": "faces-cli",
|
|
5724
5583
|
"pluginName": "faces-cli",
|
|
5725
5584
|
"pluginType": "core",
|
|
@@ -5730,20 +5589,20 @@
|
|
|
5730
5589
|
"dist",
|
|
5731
5590
|
"commands",
|
|
5732
5591
|
"compile",
|
|
5733
|
-
"
|
|
5592
|
+
"thread",
|
|
5734
5593
|
"make.js"
|
|
5735
5594
|
]
|
|
5736
5595
|
},
|
|
5737
|
-
"compile:
|
|
5596
|
+
"compile:thread:message": {
|
|
5738
5597
|
"aliases": [],
|
|
5739
5598
|
"args": {
|
|
5740
|
-
"
|
|
5741
|
-
"description": "
|
|
5742
|
-
"name": "
|
|
5599
|
+
"thread_id": {
|
|
5600
|
+
"description": "Thread ID",
|
|
5601
|
+
"name": "thread_id",
|
|
5743
5602
|
"required": true
|
|
5744
5603
|
}
|
|
5745
5604
|
},
|
|
5746
|
-
"description": "
|
|
5605
|
+
"description": "Send a user message to a thread",
|
|
5747
5606
|
"flags": {
|
|
5748
5607
|
"json": {
|
|
5749
5608
|
"description": "Format output as json.",
|
|
@@ -5776,24 +5635,25 @@
|
|
|
5776
5635
|
"multiple": false,
|
|
5777
5636
|
"type": "option"
|
|
5778
5637
|
},
|
|
5779
|
-
"
|
|
5780
|
-
"
|
|
5781
|
-
"
|
|
5782
|
-
"
|
|
5783
|
-
"
|
|
5784
|
-
},
|
|
5785
|
-
"timeout": {
|
|
5786
|
-
"description": "Seconds to wait for the compile to stop (default: 60)",
|
|
5787
|
-
"name": "timeout",
|
|
5788
|
-
"default": 60,
|
|
5638
|
+
"message": {
|
|
5639
|
+
"char": "m",
|
|
5640
|
+
"description": "User message to append",
|
|
5641
|
+
"name": "message",
|
|
5642
|
+
"required": true,
|
|
5789
5643
|
"hasDynamicHelp": false,
|
|
5790
5644
|
"multiple": false,
|
|
5791
5645
|
"type": "option"
|
|
5646
|
+
},
|
|
5647
|
+
"oauth-only": {
|
|
5648
|
+
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
5649
|
+
"name": "oauth-only",
|
|
5650
|
+
"allowNo": false,
|
|
5651
|
+
"type": "boolean"
|
|
5792
5652
|
}
|
|
5793
5653
|
},
|
|
5794
5654
|
"hasDynamicHelp": false,
|
|
5795
5655
|
"hiddenAliases": [],
|
|
5796
|
-
"id": "compile:
|
|
5656
|
+
"id": "compile:thread:message",
|
|
5797
5657
|
"pluginAlias": "faces-cli",
|
|
5798
5658
|
"pluginName": "faces-cli",
|
|
5799
5659
|
"pluginType": "core",
|
|
@@ -5804,20 +5664,20 @@
|
|
|
5804
5664
|
"dist",
|
|
5805
5665
|
"commands",
|
|
5806
5666
|
"compile",
|
|
5807
|
-
"
|
|
5808
|
-
"
|
|
5667
|
+
"thread",
|
|
5668
|
+
"message.js"
|
|
5809
5669
|
]
|
|
5810
5670
|
},
|
|
5811
|
-
"compile:
|
|
5671
|
+
"compile:thread:pause": {
|
|
5812
5672
|
"aliases": [],
|
|
5813
5673
|
"args": {
|
|
5814
|
-
"
|
|
5815
|
-
"description": "
|
|
5816
|
-
"name": "
|
|
5674
|
+
"thread_id": {
|
|
5675
|
+
"description": "Thread ID",
|
|
5676
|
+
"name": "thread_id",
|
|
5817
5677
|
"required": true
|
|
5818
5678
|
}
|
|
5819
5679
|
},
|
|
5820
|
-
"description": "
|
|
5680
|
+
"description": "Ask a running thread compilation to stop (preserves progress, resume with make). The compile stops at the next chunk boundary; this waits for it unless --no-wait.",
|
|
5821
5681
|
"flags": {
|
|
5822
5682
|
"json": {
|
|
5823
5683
|
"description": "Format output as json.",
|
|
@@ -5850,16 +5710,24 @@
|
|
|
5850
5710
|
"multiple": false,
|
|
5851
5711
|
"type": "option"
|
|
5852
5712
|
},
|
|
5853
|
-
"
|
|
5854
|
-
"description": "
|
|
5855
|
-
"name": "
|
|
5713
|
+
"no-wait": {
|
|
5714
|
+
"description": "Return as soon as the pause is accepted, without waiting for the compile to stop.",
|
|
5715
|
+
"name": "no-wait",
|
|
5856
5716
|
"allowNo": false,
|
|
5857
5717
|
"type": "boolean"
|
|
5718
|
+
},
|
|
5719
|
+
"timeout": {
|
|
5720
|
+
"description": "Seconds to wait for the compile to stop (default: 60)",
|
|
5721
|
+
"name": "timeout",
|
|
5722
|
+
"default": 60,
|
|
5723
|
+
"hasDynamicHelp": false,
|
|
5724
|
+
"multiple": false,
|
|
5725
|
+
"type": "option"
|
|
5858
5726
|
}
|
|
5859
5727
|
},
|
|
5860
5728
|
"hasDynamicHelp": false,
|
|
5861
5729
|
"hiddenAliases": [],
|
|
5862
|
-
"id": "compile:
|
|
5730
|
+
"id": "compile:thread:pause",
|
|
5863
5731
|
"pluginAlias": "faces-cli",
|
|
5864
5732
|
"pluginName": "faces-cli",
|
|
5865
5733
|
"pluginType": "core",
|
|
@@ -5870,20 +5738,20 @@
|
|
|
5870
5738
|
"dist",
|
|
5871
5739
|
"commands",
|
|
5872
5740
|
"compile",
|
|
5873
|
-
"
|
|
5874
|
-
"
|
|
5741
|
+
"thread",
|
|
5742
|
+
"pause.js"
|
|
5875
5743
|
]
|
|
5876
5744
|
},
|
|
5877
|
-
"compile:thread:
|
|
5745
|
+
"compile:thread:reset": {
|
|
5878
5746
|
"aliases": [],
|
|
5879
5747
|
"args": {
|
|
5880
|
-
"
|
|
5881
|
-
"description": "
|
|
5882
|
-
"name": "
|
|
5748
|
+
"thread_id": {
|
|
5749
|
+
"description": "Thread ID",
|
|
5750
|
+
"name": "thread_id",
|
|
5883
5751
|
"required": true
|
|
5884
5752
|
}
|
|
5885
5753
|
},
|
|
5886
|
-
"description": "
|
|
5754
|
+
"description": "Reset thread compilation progress (wipe extraction, keep source messages)",
|
|
5887
5755
|
"flags": {
|
|
5888
5756
|
"json": {
|
|
5889
5757
|
"description": "Format output as json.",
|
|
@@ -5916,23 +5784,16 @@
|
|
|
5916
5784
|
"multiple": false,
|
|
5917
5785
|
"type": "option"
|
|
5918
5786
|
},
|
|
5919
|
-
"
|
|
5920
|
-
"description": "
|
|
5921
|
-
"name": "
|
|
5922
|
-
"hasDynamicHelp": false,
|
|
5923
|
-
"multiple": false,
|
|
5924
|
-
"type": "option"
|
|
5925
|
-
},
|
|
5926
|
-
"oauth-only": {
|
|
5927
|
-
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
5928
|
-
"name": "oauth-only",
|
|
5787
|
+
"yes": {
|
|
5788
|
+
"description": "Skip confirmation",
|
|
5789
|
+
"name": "yes",
|
|
5929
5790
|
"allowNo": false,
|
|
5930
5791
|
"type": "boolean"
|
|
5931
5792
|
}
|
|
5932
5793
|
},
|
|
5933
5794
|
"hasDynamicHelp": false,
|
|
5934
5795
|
"hiddenAliases": [],
|
|
5935
|
-
"id": "compile:thread:
|
|
5796
|
+
"id": "compile:thread:reset",
|
|
5936
5797
|
"pluginAlias": "faces-cli",
|
|
5937
5798
|
"pluginName": "faces-cli",
|
|
5938
5799
|
"pluginType": "core",
|
|
@@ -5944,10 +5805,10 @@
|
|
|
5944
5805
|
"commands",
|
|
5945
5806
|
"compile",
|
|
5946
5807
|
"thread",
|
|
5947
|
-
"
|
|
5808
|
+
"reset.js"
|
|
5948
5809
|
]
|
|
5949
5810
|
},
|
|
5950
|
-
"compile:thread:
|
|
5811
|
+
"compile:thread:sync": {
|
|
5951
5812
|
"aliases": [],
|
|
5952
5813
|
"args": {
|
|
5953
5814
|
"thread_id": {
|
|
@@ -5956,7 +5817,7 @@
|
|
|
5956
5817
|
"required": true
|
|
5957
5818
|
}
|
|
5958
5819
|
},
|
|
5959
|
-
"description": "
|
|
5820
|
+
"description": "Archive and sync a thread into a face",
|
|
5960
5821
|
"flags": {
|
|
5961
5822
|
"json": {
|
|
5962
5823
|
"description": "Format output as json.",
|
|
@@ -5988,17 +5849,11 @@
|
|
|
5988
5849
|
"hasDynamicHelp": false,
|
|
5989
5850
|
"multiple": false,
|
|
5990
5851
|
"type": "option"
|
|
5991
|
-
},
|
|
5992
|
-
"yes": {
|
|
5993
|
-
"description": "Skip confirmation",
|
|
5994
|
-
"name": "yes",
|
|
5995
|
-
"allowNo": false,
|
|
5996
|
-
"type": "boolean"
|
|
5997
5852
|
}
|
|
5998
5853
|
},
|
|
5999
5854
|
"hasDynamicHelp": false,
|
|
6000
5855
|
"hiddenAliases": [],
|
|
6001
|
-
"id": "compile:thread:
|
|
5856
|
+
"id": "compile:thread:sync",
|
|
6002
5857
|
"pluginAlias": "faces-cli",
|
|
6003
5858
|
"pluginName": "faces-cli",
|
|
6004
5859
|
"pluginType": "core",
|
|
@@ -6010,24 +5865,19 @@
|
|
|
6010
5865
|
"commands",
|
|
6011
5866
|
"compile",
|
|
6012
5867
|
"thread",
|
|
6013
|
-
"
|
|
5868
|
+
"sync.js"
|
|
6014
5869
|
]
|
|
6015
5870
|
},
|
|
6016
|
-
"compile:
|
|
5871
|
+
"compile:doc:create": {
|
|
6017
5872
|
"aliases": [],
|
|
6018
5873
|
"args": {
|
|
6019
|
-
"
|
|
6020
|
-
"description": "
|
|
6021
|
-
"name": "
|
|
5874
|
+
"face_id": {
|
|
5875
|
+
"description": "Face alias",
|
|
5876
|
+
"name": "face_id",
|
|
6022
5877
|
"required": true
|
|
6023
5878
|
}
|
|
6024
5879
|
},
|
|
6025
|
-
"description": "
|
|
6026
|
-
"examples": [
|
|
6027
|
-
"<%= config.bin %> <%= command.id %> THREAD_ID --label \"Interview\"",
|
|
6028
|
-
"<%= config.bin %> <%= command.id %> THREAD_ID --medium lecture",
|
|
6029
|
-
"<%= config.bin %> <%= command.id %> THREAD_ID --clear-medium"
|
|
6030
|
-
],
|
|
5880
|
+
"description": "Submit a document to a face",
|
|
6031
5881
|
"flags": {
|
|
6032
5882
|
"json": {
|
|
6033
5883
|
"description": "Format output as json.",
|
|
@@ -6061,42 +5911,109 @@
|
|
|
6061
5911
|
"type": "option"
|
|
6062
5912
|
},
|
|
6063
5913
|
"label": {
|
|
6064
|
-
"description": "
|
|
5914
|
+
"description": "Document label/title",
|
|
6065
5915
|
"name": "label",
|
|
6066
5916
|
"hasDynamicHelp": false,
|
|
6067
5917
|
"multiple": false,
|
|
6068
5918
|
"type": "option"
|
|
6069
5919
|
},
|
|
6070
|
-
"
|
|
6071
|
-
"description": "
|
|
6072
|
-
"name": "
|
|
5920
|
+
"content": {
|
|
5921
|
+
"description": "Inline text content",
|
|
5922
|
+
"name": "content",
|
|
5923
|
+
"hasDynamicHelp": false,
|
|
5924
|
+
"multiple": false,
|
|
5925
|
+
"type": "option"
|
|
5926
|
+
},
|
|
5927
|
+
"file": {
|
|
5928
|
+
"description": "Read content from file",
|
|
5929
|
+
"name": "file",
|
|
6073
5930
|
"hasDynamicHelp": false,
|
|
6074
5931
|
"multiple": false,
|
|
6075
5932
|
"type": "option"
|
|
6076
5933
|
},
|
|
6077
5934
|
"medium": {
|
|
6078
|
-
"description": "What
|
|
6079
|
-
"exclusive": [
|
|
6080
|
-
"clear-medium"
|
|
6081
|
-
],
|
|
5935
|
+
"description": "What sort of writing this is, e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not.",
|
|
6082
5936
|
"name": "medium",
|
|
6083
5937
|
"hasDynamicHelp": false,
|
|
6084
5938
|
"multiple": false,
|
|
6085
5939
|
"type": "option"
|
|
6086
5940
|
},
|
|
6087
|
-
"
|
|
6088
|
-
"description": "
|
|
6089
|
-
"
|
|
6090
|
-
|
|
5941
|
+
"perspective": {
|
|
5942
|
+
"description": "Perspective (first-person or third-person)",
|
|
5943
|
+
"name": "perspective",
|
|
5944
|
+
"default": "first-person",
|
|
5945
|
+
"hasDynamicHelp": false,
|
|
5946
|
+
"multiple": false,
|
|
5947
|
+
"options": [
|
|
5948
|
+
"first-person",
|
|
5949
|
+
"third-person"
|
|
6091
5950
|
],
|
|
6092
|
-
"
|
|
5951
|
+
"type": "option"
|
|
5952
|
+
}
|
|
5953
|
+
},
|
|
5954
|
+
"hasDynamicHelp": false,
|
|
5955
|
+
"hiddenAliases": [],
|
|
5956
|
+
"id": "compile:doc:create",
|
|
5957
|
+
"pluginAlias": "faces-cli",
|
|
5958
|
+
"pluginName": "faces-cli",
|
|
5959
|
+
"pluginType": "core",
|
|
5960
|
+
"strict": true,
|
|
5961
|
+
"enableJsonFlag": true,
|
|
5962
|
+
"isESM": true,
|
|
5963
|
+
"relativePath": [
|
|
5964
|
+
"dist",
|
|
5965
|
+
"commands",
|
|
5966
|
+
"compile",
|
|
5967
|
+
"doc",
|
|
5968
|
+
"create.js"
|
|
5969
|
+
]
|
|
5970
|
+
},
|
|
5971
|
+
"compile:doc:delete": {
|
|
5972
|
+
"aliases": [],
|
|
5973
|
+
"args": {
|
|
5974
|
+
"doc_id": {
|
|
5975
|
+
"description": "Document ID",
|
|
5976
|
+
"name": "doc_id",
|
|
5977
|
+
"required": true
|
|
5978
|
+
}
|
|
5979
|
+
},
|
|
5980
|
+
"description": "Delete a document",
|
|
5981
|
+
"flags": {
|
|
5982
|
+
"json": {
|
|
5983
|
+
"description": "Format output as json.",
|
|
5984
|
+
"helpGroup": "GLOBAL",
|
|
5985
|
+
"name": "json",
|
|
6093
5986
|
"allowNo": false,
|
|
6094
5987
|
"type": "boolean"
|
|
5988
|
+
},
|
|
5989
|
+
"base-url": {
|
|
5990
|
+
"description": "API base URL",
|
|
5991
|
+
"env": "FACES_BASE_URL",
|
|
5992
|
+
"name": "base-url",
|
|
5993
|
+
"hasDynamicHelp": false,
|
|
5994
|
+
"multiple": false,
|
|
5995
|
+
"type": "option"
|
|
5996
|
+
},
|
|
5997
|
+
"token": {
|
|
5998
|
+
"description": "JWT bearer token",
|
|
5999
|
+
"env": "FACES_TOKEN",
|
|
6000
|
+
"name": "token",
|
|
6001
|
+
"hasDynamicHelp": false,
|
|
6002
|
+
"multiple": false,
|
|
6003
|
+
"type": "option"
|
|
6004
|
+
},
|
|
6005
|
+
"api-key": {
|
|
6006
|
+
"description": "API key",
|
|
6007
|
+
"env": "FACES_API_KEY",
|
|
6008
|
+
"name": "api-key",
|
|
6009
|
+
"hasDynamicHelp": false,
|
|
6010
|
+
"multiple": false,
|
|
6011
|
+
"type": "option"
|
|
6095
6012
|
}
|
|
6096
6013
|
},
|
|
6097
6014
|
"hasDynamicHelp": false,
|
|
6098
6015
|
"hiddenAliases": [],
|
|
6099
|
-
"id": "compile:
|
|
6016
|
+
"id": "compile:doc:delete",
|
|
6100
6017
|
"pluginAlias": "faces-cli",
|
|
6101
6018
|
"pluginName": "faces-cli",
|
|
6102
6019
|
"pluginType": "core",
|
|
@@ -6107,20 +6024,20 @@
|
|
|
6107
6024
|
"dist",
|
|
6108
6025
|
"commands",
|
|
6109
6026
|
"compile",
|
|
6110
|
-
"
|
|
6111
|
-
"
|
|
6027
|
+
"doc",
|
|
6028
|
+
"delete.js"
|
|
6112
6029
|
]
|
|
6113
6030
|
},
|
|
6114
|
-
"compile:
|
|
6031
|
+
"compile:doc:edit": {
|
|
6115
6032
|
"aliases": [],
|
|
6116
6033
|
"args": {
|
|
6117
|
-
"
|
|
6118
|
-
"description": "
|
|
6119
|
-
"name": "
|
|
6034
|
+
"doc_id": {
|
|
6035
|
+
"description": "Document ID",
|
|
6036
|
+
"name": "doc_id",
|
|
6120
6037
|
"required": true
|
|
6121
6038
|
}
|
|
6122
6039
|
},
|
|
6123
|
-
"description": "
|
|
6040
|
+
"description": "Edit a document (label, content, or perspective)",
|
|
6124
6041
|
"flags": {
|
|
6125
6042
|
"json": {
|
|
6126
6043
|
"description": "Format output as json.",
|
|
@@ -6152,11 +6069,50 @@
|
|
|
6152
6069
|
"hasDynamicHelp": false,
|
|
6153
6070
|
"multiple": false,
|
|
6154
6071
|
"type": "option"
|
|
6072
|
+
},
|
|
6073
|
+
"label": {
|
|
6074
|
+
"description": "New label/title",
|
|
6075
|
+
"name": "label",
|
|
6076
|
+
"hasDynamicHelp": false,
|
|
6077
|
+
"multiple": false,
|
|
6078
|
+
"type": "option"
|
|
6079
|
+
},
|
|
6080
|
+
"content": {
|
|
6081
|
+
"description": "New inline text content",
|
|
6082
|
+
"name": "content",
|
|
6083
|
+
"hasDynamicHelp": false,
|
|
6084
|
+
"multiple": false,
|
|
6085
|
+
"type": "option"
|
|
6086
|
+
},
|
|
6087
|
+
"file": {
|
|
6088
|
+
"description": "Read new content from file",
|
|
6089
|
+
"name": "file",
|
|
6090
|
+
"hasDynamicHelp": false,
|
|
6091
|
+
"multiple": false,
|
|
6092
|
+
"type": "option"
|
|
6093
|
+
},
|
|
6094
|
+
"medium": {
|
|
6095
|
+
"description": "What sort of writing this is, e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not.",
|
|
6096
|
+
"name": "medium",
|
|
6097
|
+
"hasDynamicHelp": false,
|
|
6098
|
+
"multiple": false,
|
|
6099
|
+
"type": "option"
|
|
6100
|
+
},
|
|
6101
|
+
"perspective": {
|
|
6102
|
+
"description": "Perspective (first-person or third-person)",
|
|
6103
|
+
"name": "perspective",
|
|
6104
|
+
"hasDynamicHelp": false,
|
|
6105
|
+
"multiple": false,
|
|
6106
|
+
"options": [
|
|
6107
|
+
"first-person",
|
|
6108
|
+
"third-person"
|
|
6109
|
+
],
|
|
6110
|
+
"type": "option"
|
|
6155
6111
|
}
|
|
6156
6112
|
},
|
|
6157
6113
|
"hasDynamicHelp": false,
|
|
6158
6114
|
"hiddenAliases": [],
|
|
6159
|
-
"id": "compile:
|
|
6115
|
+
"id": "compile:doc:edit",
|
|
6160
6116
|
"pluginAlias": "faces-cli",
|
|
6161
6117
|
"pluginName": "faces-cli",
|
|
6162
6118
|
"pluginType": "core",
|
|
@@ -6167,20 +6123,20 @@
|
|
|
6167
6123
|
"dist",
|
|
6168
6124
|
"commands",
|
|
6169
6125
|
"compile",
|
|
6170
|
-
"
|
|
6171
|
-
"
|
|
6126
|
+
"doc",
|
|
6127
|
+
"edit.js"
|
|
6172
6128
|
]
|
|
6173
6129
|
},
|
|
6174
|
-
"compile:
|
|
6130
|
+
"compile:doc:get": {
|
|
6175
6131
|
"aliases": [],
|
|
6176
6132
|
"args": {
|
|
6177
|
-
"
|
|
6178
|
-
"description": "
|
|
6179
|
-
"name": "
|
|
6133
|
+
"doc_id": {
|
|
6134
|
+
"description": "Document ID",
|
|
6135
|
+
"name": "doc_id",
|
|
6180
6136
|
"required": true
|
|
6181
6137
|
}
|
|
6182
6138
|
},
|
|
6183
|
-
"description": "
|
|
6139
|
+
"description": "Get a document by ID",
|
|
6184
6140
|
"flags": {
|
|
6185
6141
|
"json": {
|
|
6186
6142
|
"description": "Format output as json.",
|
|
@@ -6216,7 +6172,7 @@
|
|
|
6216
6172
|
},
|
|
6217
6173
|
"hasDynamicHelp": false,
|
|
6218
6174
|
"hiddenAliases": [],
|
|
6219
|
-
"id": "compile:
|
|
6175
|
+
"id": "compile:doc:get",
|
|
6220
6176
|
"pluginAlias": "faces-cli",
|
|
6221
6177
|
"pluginName": "faces-cli",
|
|
6222
6178
|
"pluginType": "core",
|
|
@@ -6227,20 +6183,24 @@
|
|
|
6227
6183
|
"dist",
|
|
6228
6184
|
"commands",
|
|
6229
6185
|
"compile",
|
|
6230
|
-
"
|
|
6231
|
-
"
|
|
6186
|
+
"doc",
|
|
6187
|
+
"get.js"
|
|
6232
6188
|
]
|
|
6233
6189
|
},
|
|
6234
|
-
"compile:
|
|
6190
|
+
"compile:doc": {
|
|
6235
6191
|
"aliases": [],
|
|
6236
6192
|
"args": {
|
|
6237
|
-
"
|
|
6238
|
-
"description": "
|
|
6239
|
-
"name": "
|
|
6193
|
+
"face_id": {
|
|
6194
|
+
"description": "Face alias",
|
|
6195
|
+
"name": "face_id",
|
|
6240
6196
|
"required": true
|
|
6241
6197
|
}
|
|
6242
6198
|
},
|
|
6243
|
-
"description": "Compile
|
|
6199
|
+
"description": "Compile one or more documents into a face (create → make in one step). Repeat --file to submit several documents in a single command; each file becomes its own document rather than being concatenated.",
|
|
6200
|
+
"examples": [
|
|
6201
|
+
"<%= config.bin %> <%= command.id %> alice --file notes.txt",
|
|
6202
|
+
"<%= config.bin %> <%= command.id %> alice --file a.txt --file b.txt --file c.txt --no-wait --json"
|
|
6203
|
+
],
|
|
6244
6204
|
"flags": {
|
|
6245
6205
|
"json": {
|
|
6246
6206
|
"description": "Format output as json.",
|
|
@@ -6273,8 +6233,51 @@
|
|
|
6273
6233
|
"multiple": false,
|
|
6274
6234
|
"type": "option"
|
|
6275
6235
|
},
|
|
6236
|
+
"label": {
|
|
6237
|
+
"description": "Document label/title (single document only; with several files each is labelled by its filename)",
|
|
6238
|
+
"name": "label",
|
|
6239
|
+
"hasDynamicHelp": false,
|
|
6240
|
+
"multiple": false,
|
|
6241
|
+
"type": "option"
|
|
6242
|
+
},
|
|
6243
|
+
"content": {
|
|
6244
|
+
"description": "Inline text content",
|
|
6245
|
+
"exclusive": [
|
|
6246
|
+
"file"
|
|
6247
|
+
],
|
|
6248
|
+
"name": "content",
|
|
6249
|
+
"hasDynamicHelp": false,
|
|
6250
|
+
"multiple": false,
|
|
6251
|
+
"type": "option"
|
|
6252
|
+
},
|
|
6253
|
+
"file": {
|
|
6254
|
+
"description": "Read content from file (repeatable; each file becomes its own document)",
|
|
6255
|
+
"name": "file",
|
|
6256
|
+
"hasDynamicHelp": false,
|
|
6257
|
+
"multiple": true,
|
|
6258
|
+
"type": "option"
|
|
6259
|
+
},
|
|
6260
|
+
"medium": {
|
|
6261
|
+
"description": "What sort of writing this is, e.g. email, text message, social post, essay, academic paper, blog post, legal document, thread reply, conversation (dialogue: transcripts, interviews, calls), lecture (sustained speech nobody interrupts: talks, sermons, keynotes). Common synonyms fold automatically. Omit it if you do not know: a wrong declaration is worse than none, because a declaration is trusted and an absence is not.",
|
|
6262
|
+
"name": "medium",
|
|
6263
|
+
"hasDynamicHelp": false,
|
|
6264
|
+
"multiple": false,
|
|
6265
|
+
"type": "option"
|
|
6266
|
+
},
|
|
6267
|
+
"perspective": {
|
|
6268
|
+
"description": "Perspective",
|
|
6269
|
+
"name": "perspective",
|
|
6270
|
+
"default": "first-person",
|
|
6271
|
+
"hasDynamicHelp": false,
|
|
6272
|
+
"multiple": false,
|
|
6273
|
+
"options": [
|
|
6274
|
+
"first-person",
|
|
6275
|
+
"third-person"
|
|
6276
|
+
],
|
|
6277
|
+
"type": "option"
|
|
6278
|
+
},
|
|
6276
6279
|
"timeout": {
|
|
6277
|
-
"description": "Compile timeout in seconds (default: 600)",
|
|
6280
|
+
"description": "Compile timeout in seconds, per document (default: 600)",
|
|
6278
6281
|
"name": "timeout",
|
|
6279
6282
|
"default": 600,
|
|
6280
6283
|
"hasDynamicHelp": false,
|
|
@@ -6282,7 +6285,7 @@
|
|
|
6282
6285
|
"type": "option"
|
|
6283
6286
|
},
|
|
6284
6287
|
"no-wait": {
|
|
6285
|
-
"description": "
|
|
6288
|
+
"description": "Create and trigger compilation, then return immediately without polling.",
|
|
6286
6289
|
"name": "no-wait",
|
|
6287
6290
|
"allowNo": false,
|
|
6288
6291
|
"type": "boolean"
|
|
@@ -6290,7 +6293,7 @@
|
|
|
6290
6293
|
},
|
|
6291
6294
|
"hasDynamicHelp": false,
|
|
6292
6295
|
"hiddenAliases": [],
|
|
6293
|
-
"id": "compile:
|
|
6296
|
+
"id": "compile:doc",
|
|
6294
6297
|
"pluginAlias": "faces-cli",
|
|
6295
6298
|
"pluginName": "faces-cli",
|
|
6296
6299
|
"pluginType": "core",
|
|
@@ -6301,20 +6304,20 @@
|
|
|
6301
6304
|
"dist",
|
|
6302
6305
|
"commands",
|
|
6303
6306
|
"compile",
|
|
6304
|
-
"
|
|
6305
|
-
"
|
|
6307
|
+
"doc",
|
|
6308
|
+
"index.js"
|
|
6306
6309
|
]
|
|
6307
6310
|
},
|
|
6308
|
-
"compile:
|
|
6311
|
+
"compile:doc:list": {
|
|
6309
6312
|
"aliases": [],
|
|
6310
6313
|
"args": {
|
|
6311
|
-
"
|
|
6312
|
-
"description": "
|
|
6313
|
-
"name": "
|
|
6314
|
+
"face_id": {
|
|
6315
|
+
"description": "Face alias",
|
|
6316
|
+
"name": "face_id",
|
|
6314
6317
|
"required": true
|
|
6315
6318
|
}
|
|
6316
6319
|
},
|
|
6317
|
-
"description": "
|
|
6320
|
+
"description": "List documents for a face. Each document's full text is omitted unless --verbose, so a face with a real corpus stays readable. For a table of every source, documents and threads together, use face:sources.",
|
|
6318
6321
|
"flags": {
|
|
6319
6322
|
"json": {
|
|
6320
6323
|
"description": "Format output as json.",
|
|
@@ -6347,25 +6350,16 @@
|
|
|
6347
6350
|
"multiple": false,
|
|
6348
6351
|
"type": "option"
|
|
6349
6352
|
},
|
|
6350
|
-
"
|
|
6351
|
-
"
|
|
6352
|
-
"
|
|
6353
|
-
"name": "message",
|
|
6354
|
-
"required": true,
|
|
6355
|
-
"hasDynamicHelp": false,
|
|
6356
|
-
"multiple": false,
|
|
6357
|
-
"type": "option"
|
|
6358
|
-
},
|
|
6359
|
-
"oauth-only": {
|
|
6360
|
-
"description": "Prevent fallback to paid system key (use OAuth only)",
|
|
6361
|
-
"name": "oauth-only",
|
|
6353
|
+
"verbose": {
|
|
6354
|
+
"description": "Include each document's full text",
|
|
6355
|
+
"name": "verbose",
|
|
6362
6356
|
"allowNo": false,
|
|
6363
6357
|
"type": "boolean"
|
|
6364
6358
|
}
|
|
6365
6359
|
},
|
|
6366
6360
|
"hasDynamicHelp": false,
|
|
6367
6361
|
"hiddenAliases": [],
|
|
6368
|
-
"id": "compile:
|
|
6362
|
+
"id": "compile:doc:list",
|
|
6369
6363
|
"pluginAlias": "faces-cli",
|
|
6370
6364
|
"pluginName": "faces-cli",
|
|
6371
6365
|
"pluginType": "core",
|
|
@@ -6376,20 +6370,20 @@
|
|
|
6376
6370
|
"dist",
|
|
6377
6371
|
"commands",
|
|
6378
6372
|
"compile",
|
|
6379
|
-
"
|
|
6380
|
-
"
|
|
6373
|
+
"doc",
|
|
6374
|
+
"list.js"
|
|
6381
6375
|
]
|
|
6382
6376
|
},
|
|
6383
|
-
"compile:
|
|
6377
|
+
"compile:doc:make": {
|
|
6384
6378
|
"aliases": [],
|
|
6385
6379
|
"args": {
|
|
6386
|
-
"
|
|
6387
|
-
"description": "
|
|
6388
|
-
"name": "
|
|
6380
|
+
"doc_id": {
|
|
6381
|
+
"description": "Document ID",
|
|
6382
|
+
"name": "doc_id",
|
|
6389
6383
|
"required": true
|
|
6390
6384
|
}
|
|
6391
6385
|
},
|
|
6392
|
-
"description": "
|
|
6386
|
+
"description": "Compile an existing document (prepare + sync in one step)",
|
|
6393
6387
|
"flags": {
|
|
6394
6388
|
"json": {
|
|
6395
6389
|
"description": "Format output as json.",
|
|
@@ -6422,24 +6416,24 @@
|
|
|
6422
6416
|
"multiple": false,
|
|
6423
6417
|
"type": "option"
|
|
6424
6418
|
},
|
|
6425
|
-
"no-wait": {
|
|
6426
|
-
"description": "Return as soon as the pause is accepted, without waiting for the compile to stop.",
|
|
6427
|
-
"name": "no-wait",
|
|
6428
|
-
"allowNo": false,
|
|
6429
|
-
"type": "boolean"
|
|
6430
|
-
},
|
|
6431
6419
|
"timeout": {
|
|
6432
|
-
"description": "
|
|
6420
|
+
"description": "Compile timeout in seconds (default: 600)",
|
|
6433
6421
|
"name": "timeout",
|
|
6434
|
-
"default":
|
|
6422
|
+
"default": 600,
|
|
6435
6423
|
"hasDynamicHelp": false,
|
|
6436
6424
|
"multiple": false,
|
|
6437
6425
|
"type": "option"
|
|
6426
|
+
},
|
|
6427
|
+
"no-wait": {
|
|
6428
|
+
"description": "Return immediately after triggering compilation. Prints the document ID for manual polling.",
|
|
6429
|
+
"name": "no-wait",
|
|
6430
|
+
"allowNo": false,
|
|
6431
|
+
"type": "boolean"
|
|
6438
6432
|
}
|
|
6439
6433
|
},
|
|
6440
6434
|
"hasDynamicHelp": false,
|
|
6441
6435
|
"hiddenAliases": [],
|
|
6442
|
-
"id": "compile:
|
|
6436
|
+
"id": "compile:doc:make",
|
|
6443
6437
|
"pluginAlias": "faces-cli",
|
|
6444
6438
|
"pluginName": "faces-cli",
|
|
6445
6439
|
"pluginType": "core",
|
|
@@ -6450,20 +6444,20 @@
|
|
|
6450
6444
|
"dist",
|
|
6451
6445
|
"commands",
|
|
6452
6446
|
"compile",
|
|
6453
|
-
"
|
|
6454
|
-
"
|
|
6447
|
+
"doc",
|
|
6448
|
+
"make.js"
|
|
6455
6449
|
]
|
|
6456
6450
|
},
|
|
6457
|
-
"compile:
|
|
6451
|
+
"compile:doc:pause": {
|
|
6458
6452
|
"aliases": [],
|
|
6459
6453
|
"args": {
|
|
6460
|
-
"
|
|
6461
|
-
"description": "
|
|
6462
|
-
"name": "
|
|
6454
|
+
"doc_id": {
|
|
6455
|
+
"description": "Document ID",
|
|
6456
|
+
"name": "doc_id",
|
|
6463
6457
|
"required": true
|
|
6464
6458
|
}
|
|
6465
6459
|
},
|
|
6466
|
-
"description": "
|
|
6460
|
+
"description": "Ask a running document compilation to stop (preserves progress, resume with make). The compile stops at the next chunk boundary; this waits for it unless --no-wait.",
|
|
6467
6461
|
"flags": {
|
|
6468
6462
|
"json": {
|
|
6469
6463
|
"description": "Format output as json.",
|
|
@@ -6496,16 +6490,24 @@
|
|
|
6496
6490
|
"multiple": false,
|
|
6497
6491
|
"type": "option"
|
|
6498
6492
|
},
|
|
6499
|
-
"
|
|
6500
|
-
"description": "
|
|
6501
|
-
"name": "
|
|
6493
|
+
"no-wait": {
|
|
6494
|
+
"description": "Return as soon as the pause is accepted, without waiting for the compile to stop.",
|
|
6495
|
+
"name": "no-wait",
|
|
6502
6496
|
"allowNo": false,
|
|
6503
6497
|
"type": "boolean"
|
|
6498
|
+
},
|
|
6499
|
+
"timeout": {
|
|
6500
|
+
"description": "Seconds to wait for the compile to stop (default: 60)",
|
|
6501
|
+
"name": "timeout",
|
|
6502
|
+
"default": 60,
|
|
6503
|
+
"hasDynamicHelp": false,
|
|
6504
|
+
"multiple": false,
|
|
6505
|
+
"type": "option"
|
|
6504
6506
|
}
|
|
6505
6507
|
},
|
|
6506
6508
|
"hasDynamicHelp": false,
|
|
6507
6509
|
"hiddenAliases": [],
|
|
6508
|
-
"id": "compile:
|
|
6510
|
+
"id": "compile:doc:pause",
|
|
6509
6511
|
"pluginAlias": "faces-cli",
|
|
6510
6512
|
"pluginName": "faces-cli",
|
|
6511
6513
|
"pluginType": "core",
|
|
@@ -6516,20 +6518,20 @@
|
|
|
6516
6518
|
"dist",
|
|
6517
6519
|
"commands",
|
|
6518
6520
|
"compile",
|
|
6519
|
-
"
|
|
6520
|
-
"
|
|
6521
|
+
"doc",
|
|
6522
|
+
"pause.js"
|
|
6521
6523
|
]
|
|
6522
6524
|
},
|
|
6523
|
-
"compile:
|
|
6525
|
+
"compile:doc:reset": {
|
|
6524
6526
|
"aliases": [],
|
|
6525
6527
|
"args": {
|
|
6526
|
-
"
|
|
6527
|
-
"description": "
|
|
6528
|
-
"name": "
|
|
6528
|
+
"doc_id": {
|
|
6529
|
+
"description": "Document ID",
|
|
6530
|
+
"name": "doc_id",
|
|
6529
6531
|
"required": true
|
|
6530
6532
|
}
|
|
6531
6533
|
},
|
|
6532
|
-
"description": "
|
|
6534
|
+
"description": "Reset document compilation progress (wipe extraction, keep content)",
|
|
6533
6535
|
"flags": {
|
|
6534
6536
|
"json": {
|
|
6535
6537
|
"description": "Format output as json.",
|
|
@@ -6561,11 +6563,17 @@
|
|
|
6561
6563
|
"hasDynamicHelp": false,
|
|
6562
6564
|
"multiple": false,
|
|
6563
6565
|
"type": "option"
|
|
6566
|
+
},
|
|
6567
|
+
"yes": {
|
|
6568
|
+
"description": "Skip confirmation",
|
|
6569
|
+
"name": "yes",
|
|
6570
|
+
"allowNo": false,
|
|
6571
|
+
"type": "boolean"
|
|
6564
6572
|
}
|
|
6565
6573
|
},
|
|
6566
6574
|
"hasDynamicHelp": false,
|
|
6567
6575
|
"hiddenAliases": [],
|
|
6568
|
-
"id": "compile:
|
|
6576
|
+
"id": "compile:doc:reset",
|
|
6569
6577
|
"pluginAlias": "faces-cli",
|
|
6570
6578
|
"pluginName": "faces-cli",
|
|
6571
6579
|
"pluginType": "core",
|
|
@@ -6576,8 +6584,8 @@
|
|
|
6576
6584
|
"dist",
|
|
6577
6585
|
"commands",
|
|
6578
6586
|
"compile",
|
|
6579
|
-
"
|
|
6580
|
-
"
|
|
6587
|
+
"doc",
|
|
6588
|
+
"reset.js"
|
|
6581
6589
|
]
|
|
6582
6590
|
},
|
|
6583
6591
|
"face:tag:add": {
|
|
@@ -7157,5 +7165,5 @@
|
|
|
7157
7165
|
]
|
|
7158
7166
|
}
|
|
7159
7167
|
},
|
|
7160
|
-
"version": "1.8.
|
|
7168
|
+
"version": "1.8.8"
|
|
7161
7169
|
}
|