byterover-cli 3.8.1 → 3.8.3
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/.env.production +3 -1
- package/README.md +8 -34
- package/dist/oclif/commands/login.d.ts +15 -2
- package/dist/oclif/commands/login.js +106 -29
- package/dist/oclif/commands/providers/list.js +3 -0
- package/dist/server/core/domain/entities/provider-registry.js +2 -2
- package/dist/server/infra/webui/webui-middleware.js +4 -3
- package/dist/webui/assets/index-DFMY2d5W.css +1 -0
- package/dist/webui/assets/{index-47t5_wSy.js → index-Dkyf6c5F.js} +1 -1
- package/dist/webui/index.html +2 -2
- package/dist/webui/sw.js +1 -1
- package/oclif.manifest.json +599 -596
- package/package.json +1 -1
- package/dist/webui/assets/index-BBKcqjSO.css +0 -1
package/oclif.manifest.json
CHANGED
|
@@ -233,17 +233,20 @@
|
|
|
233
233
|
"args": {},
|
|
234
234
|
"description": "Authenticate with ByteRover for cloud sync features (optional for local usage)",
|
|
235
235
|
"examples": [
|
|
236
|
+
"# Browser OAuth (default)",
|
|
237
|
+
"<%= config.bin %> <%= command.id %>",
|
|
238
|
+
"",
|
|
239
|
+
"# API key (for CI / headless environments)",
|
|
236
240
|
"<%= config.bin %> <%= command.id %> --api-key <key>",
|
|
237
241
|
"",
|
|
238
242
|
"# JSON output (for automation)",
|
|
239
|
-
"<%= config.bin %> <%= command.id %> --
|
|
243
|
+
"<%= config.bin %> <%= command.id %> --format json"
|
|
240
244
|
],
|
|
241
245
|
"flags": {
|
|
242
246
|
"api-key": {
|
|
243
247
|
"char": "k",
|
|
244
|
-
"description": "API key for
|
|
248
|
+
"description": "API key for headless/CI login (get yours at https://app.byterover.dev/settings/keys). Omit to use the browser OAuth flow.",
|
|
245
249
|
"name": "api-key",
|
|
246
|
-
"required": true,
|
|
247
250
|
"hasDynamicHelp": false,
|
|
248
251
|
"multiple": false,
|
|
249
252
|
"type": "option"
|
|
@@ -1330,6 +1333,181 @@
|
|
|
1330
1333
|
"switch.js"
|
|
1331
1334
|
]
|
|
1332
1335
|
},
|
|
1336
|
+
"query-log:summary": {
|
|
1337
|
+
"aliases": [],
|
|
1338
|
+
"args": {},
|
|
1339
|
+
"description": "View aggregated query recall metrics (coverage, cache hit rate, top topics)",
|
|
1340
|
+
"examples": [
|
|
1341
|
+
"<%= config.bin %> <%= command.id %>",
|
|
1342
|
+
"<%= config.bin %> <%= command.id %> --last 24h",
|
|
1343
|
+
"<%= config.bin %> <%= command.id %> --last 7d",
|
|
1344
|
+
"<%= config.bin %> <%= command.id %> --last 30d",
|
|
1345
|
+
"<%= config.bin %> <%= command.id %> --format json",
|
|
1346
|
+
"<%= config.bin %> <%= command.id %> --format narrative",
|
|
1347
|
+
"<%= config.bin %> <%= command.id %> --since 2026-04-01 --before 2026-04-03"
|
|
1348
|
+
],
|
|
1349
|
+
"flags": {
|
|
1350
|
+
"before": {
|
|
1351
|
+
"description": "Entries before (ISO date or relative: 1h, 24h, 7d, 2w)",
|
|
1352
|
+
"name": "before",
|
|
1353
|
+
"hasDynamicHelp": false,
|
|
1354
|
+
"multiple": false,
|
|
1355
|
+
"type": "option"
|
|
1356
|
+
},
|
|
1357
|
+
"format": {
|
|
1358
|
+
"description": "Output format",
|
|
1359
|
+
"name": "format",
|
|
1360
|
+
"default": "text",
|
|
1361
|
+
"hasDynamicHelp": false,
|
|
1362
|
+
"multiple": false,
|
|
1363
|
+
"options": [
|
|
1364
|
+
"text",
|
|
1365
|
+
"json",
|
|
1366
|
+
"narrative"
|
|
1367
|
+
],
|
|
1368
|
+
"type": "option"
|
|
1369
|
+
},
|
|
1370
|
+
"last": {
|
|
1371
|
+
"description": "Relative time window (e.g., 1h, 24h, 7d, 30d). Default: 24h. Takes precedence over --since.",
|
|
1372
|
+
"name": "last",
|
|
1373
|
+
"hasDynamicHelp": false,
|
|
1374
|
+
"multiple": false,
|
|
1375
|
+
"type": "option"
|
|
1376
|
+
},
|
|
1377
|
+
"since": {
|
|
1378
|
+
"description": "Entries after (ISO date or relative: 1h, 24h, 7d, 2w)",
|
|
1379
|
+
"name": "since",
|
|
1380
|
+
"hasDynamicHelp": false,
|
|
1381
|
+
"multiple": false,
|
|
1382
|
+
"type": "option"
|
|
1383
|
+
}
|
|
1384
|
+
},
|
|
1385
|
+
"hasDynamicHelp": false,
|
|
1386
|
+
"hiddenAliases": [],
|
|
1387
|
+
"id": "query-log:summary",
|
|
1388
|
+
"pluginAlias": "byterover-cli",
|
|
1389
|
+
"pluginName": "byterover-cli",
|
|
1390
|
+
"pluginType": "core",
|
|
1391
|
+
"strict": true,
|
|
1392
|
+
"enableJsonFlag": false,
|
|
1393
|
+
"isESM": true,
|
|
1394
|
+
"relativePath": [
|
|
1395
|
+
"dist",
|
|
1396
|
+
"oclif",
|
|
1397
|
+
"commands",
|
|
1398
|
+
"query-log",
|
|
1399
|
+
"summary.js"
|
|
1400
|
+
]
|
|
1401
|
+
},
|
|
1402
|
+
"query-log:view": {
|
|
1403
|
+
"aliases": [],
|
|
1404
|
+
"args": {
|
|
1405
|
+
"id": {
|
|
1406
|
+
"description": "Query log entry ID to view in detail",
|
|
1407
|
+
"name": "id",
|
|
1408
|
+
"required": false
|
|
1409
|
+
}
|
|
1410
|
+
},
|
|
1411
|
+
"description": "View query log history",
|
|
1412
|
+
"examples": [
|
|
1413
|
+
"<%= config.bin %> <%= command.id %>",
|
|
1414
|
+
"<%= config.bin %> <%= command.id %> qry-1712345678901",
|
|
1415
|
+
"<%= config.bin %> <%= command.id %> --limit 20",
|
|
1416
|
+
"<%= config.bin %> <%= command.id %> --status completed",
|
|
1417
|
+
"<%= config.bin %> <%= command.id %> --status completed --status error",
|
|
1418
|
+
"<%= config.bin %> <%= command.id %> --tier 0 --tier 1",
|
|
1419
|
+
"<%= config.bin %> <%= command.id %> --since 1h",
|
|
1420
|
+
"<%= config.bin %> <%= command.id %> --since 2024-01-15",
|
|
1421
|
+
"<%= config.bin %> <%= command.id %> --before 2024-02-01",
|
|
1422
|
+
"<%= config.bin %> <%= command.id %> --detail",
|
|
1423
|
+
"<%= config.bin %> <%= command.id %> --format json"
|
|
1424
|
+
],
|
|
1425
|
+
"flags": {
|
|
1426
|
+
"before": {
|
|
1427
|
+
"description": "Show entries started before this time (ISO date or relative: 30m, 1h, 24h, 7d, 2w)",
|
|
1428
|
+
"name": "before",
|
|
1429
|
+
"hasDynamicHelp": false,
|
|
1430
|
+
"multiple": false,
|
|
1431
|
+
"type": "option"
|
|
1432
|
+
},
|
|
1433
|
+
"detail": {
|
|
1434
|
+
"description": "Show matched docs for each entry",
|
|
1435
|
+
"name": "detail",
|
|
1436
|
+
"allowNo": false,
|
|
1437
|
+
"type": "boolean"
|
|
1438
|
+
},
|
|
1439
|
+
"format": {
|
|
1440
|
+
"description": "Output format",
|
|
1441
|
+
"name": "format",
|
|
1442
|
+
"default": "text",
|
|
1443
|
+
"hasDynamicHelp": false,
|
|
1444
|
+
"multiple": false,
|
|
1445
|
+
"options": [
|
|
1446
|
+
"text",
|
|
1447
|
+
"json"
|
|
1448
|
+
],
|
|
1449
|
+
"type": "option"
|
|
1450
|
+
},
|
|
1451
|
+
"limit": {
|
|
1452
|
+
"description": "Maximum number of log entries to display",
|
|
1453
|
+
"name": "limit",
|
|
1454
|
+
"default": 10,
|
|
1455
|
+
"hasDynamicHelp": false,
|
|
1456
|
+
"multiple": false,
|
|
1457
|
+
"type": "option"
|
|
1458
|
+
},
|
|
1459
|
+
"since": {
|
|
1460
|
+
"description": "Show entries started after this time (ISO date or relative: 30m, 1h, 24h, 7d, 2w)",
|
|
1461
|
+
"name": "since",
|
|
1462
|
+
"hasDynamicHelp": false,
|
|
1463
|
+
"multiple": false,
|
|
1464
|
+
"type": "option"
|
|
1465
|
+
},
|
|
1466
|
+
"status": {
|
|
1467
|
+
"description": "Filter by status (can be repeated). Options: cancelled, completed, error, processing",
|
|
1468
|
+
"name": "status",
|
|
1469
|
+
"hasDynamicHelp": false,
|
|
1470
|
+
"multiple": true,
|
|
1471
|
+
"options": [
|
|
1472
|
+
"cancelled",
|
|
1473
|
+
"completed",
|
|
1474
|
+
"error",
|
|
1475
|
+
"processing"
|
|
1476
|
+
],
|
|
1477
|
+
"type": "option"
|
|
1478
|
+
},
|
|
1479
|
+
"tier": {
|
|
1480
|
+
"description": "Filter by resolution tier (can be repeated). Options: 0, 1, 2, 3, 4",
|
|
1481
|
+
"name": "tier",
|
|
1482
|
+
"hasDynamicHelp": false,
|
|
1483
|
+
"multiple": true,
|
|
1484
|
+
"options": [
|
|
1485
|
+
"0",
|
|
1486
|
+
"1",
|
|
1487
|
+
"2",
|
|
1488
|
+
"3",
|
|
1489
|
+
"4"
|
|
1490
|
+
],
|
|
1491
|
+
"type": "option"
|
|
1492
|
+
}
|
|
1493
|
+
},
|
|
1494
|
+
"hasDynamicHelp": false,
|
|
1495
|
+
"hiddenAliases": [],
|
|
1496
|
+
"id": "query-log:view",
|
|
1497
|
+
"pluginAlias": "byterover-cli",
|
|
1498
|
+
"pluginName": "byterover-cli",
|
|
1499
|
+
"pluginType": "core",
|
|
1500
|
+
"strict": true,
|
|
1501
|
+
"enableJsonFlag": false,
|
|
1502
|
+
"isESM": true,
|
|
1503
|
+
"relativePath": [
|
|
1504
|
+
"dist",
|
|
1505
|
+
"oclif",
|
|
1506
|
+
"commands",
|
|
1507
|
+
"query-log",
|
|
1508
|
+
"view.js"
|
|
1509
|
+
]
|
|
1510
|
+
},
|
|
1333
1511
|
"providers:connect": {
|
|
1334
1512
|
"aliases": [],
|
|
1335
1513
|
"args": {
|
|
@@ -1585,58 +1763,51 @@
|
|
|
1585
1763
|
"switch.js"
|
|
1586
1764
|
]
|
|
1587
1765
|
},
|
|
1588
|
-
"
|
|
1766
|
+
"review:approve": {
|
|
1589
1767
|
"aliases": [],
|
|
1590
|
-
"args": {
|
|
1591
|
-
|
|
1768
|
+
"args": {
|
|
1769
|
+
"taskId": {
|
|
1770
|
+
"description": "Task ID shown in the curate output (e.g. \"brv review approve abc-123\")",
|
|
1771
|
+
"name": "taskId",
|
|
1772
|
+
"required": true
|
|
1773
|
+
}
|
|
1774
|
+
},
|
|
1775
|
+
"description": "Approve pending review operations for a curate task",
|
|
1592
1776
|
"examples": [
|
|
1593
|
-
"
|
|
1594
|
-
"<%= config.bin %>
|
|
1595
|
-
"
|
|
1596
|
-
"
|
|
1597
|
-
"<%= config.bin %>
|
|
1598
|
-
"<%= config.bin %>
|
|
1599
|
-
"
|
|
1777
|
+
"# Approve all pending changes from a curate task",
|
|
1778
|
+
"<%= config.bin %> review approve abc-123",
|
|
1779
|
+
"",
|
|
1780
|
+
"# Approve specific files",
|
|
1781
|
+
"<%= config.bin %> review approve abc-123 --file architecture/security/audit.md",
|
|
1782
|
+
"<%= config.bin %> review approve abc-123 --file auth/jwt.md --file auth/oauth.md",
|
|
1783
|
+
"",
|
|
1784
|
+
"# Approve and get structured output (useful for coding agents)",
|
|
1785
|
+
"<%= config.bin %> review approve abc-123 --format json"
|
|
1600
1786
|
],
|
|
1601
1787
|
"flags": {
|
|
1602
|
-
"
|
|
1603
|
-
"description": "
|
|
1604
|
-
"name": "
|
|
1788
|
+
"file": {
|
|
1789
|
+
"description": "Approve only the specified file path(s) (relative to context tree)",
|
|
1790
|
+
"name": "file",
|
|
1605
1791
|
"hasDynamicHelp": false,
|
|
1606
|
-
"multiple":
|
|
1792
|
+
"multiple": true,
|
|
1607
1793
|
"type": "option"
|
|
1608
1794
|
},
|
|
1609
1795
|
"format": {
|
|
1610
|
-
"description": "Output format",
|
|
1796
|
+
"description": "Output format (text or json)",
|
|
1611
1797
|
"name": "format",
|
|
1612
1798
|
"default": "text",
|
|
1613
1799
|
"hasDynamicHelp": false,
|
|
1614
1800
|
"multiple": false,
|
|
1615
1801
|
"options": [
|
|
1616
1802
|
"text",
|
|
1617
|
-
"json"
|
|
1618
|
-
"narrative"
|
|
1803
|
+
"json"
|
|
1619
1804
|
],
|
|
1620
1805
|
"type": "option"
|
|
1621
|
-
},
|
|
1622
|
-
"last": {
|
|
1623
|
-
"description": "Relative time window (e.g., 1h, 24h, 7d, 30d). Default: 24h. Takes precedence over --since.",
|
|
1624
|
-
"name": "last",
|
|
1625
|
-
"hasDynamicHelp": false,
|
|
1626
|
-
"multiple": false,
|
|
1627
|
-
"type": "option"
|
|
1628
|
-
},
|
|
1629
|
-
"since": {
|
|
1630
|
-
"description": "Entries after (ISO date or relative: 1h, 24h, 7d, 2w)",
|
|
1631
|
-
"name": "since",
|
|
1632
|
-
"hasDynamicHelp": false,
|
|
1633
|
-
"multiple": false,
|
|
1634
|
-
"type": "option"
|
|
1635
1806
|
}
|
|
1636
1807
|
},
|
|
1637
1808
|
"hasDynamicHelp": false,
|
|
1638
1809
|
"hiddenAliases": [],
|
|
1639
|
-
"id": "
|
|
1810
|
+
"id": "review:approve",
|
|
1640
1811
|
"pluginAlias": "byterover-cli",
|
|
1641
1812
|
"pluginName": "byterover-cli",
|
|
1642
1813
|
"pluginType": "core",
|
|
@@ -1647,184 +1818,16 @@
|
|
|
1647
1818
|
"dist",
|
|
1648
1819
|
"oclif",
|
|
1649
1820
|
"commands",
|
|
1650
|
-
"
|
|
1651
|
-
"
|
|
1821
|
+
"review",
|
|
1822
|
+
"approve.js"
|
|
1652
1823
|
]
|
|
1653
1824
|
},
|
|
1654
|
-
"
|
|
1825
|
+
"review:base-review-decision": {
|
|
1655
1826
|
"aliases": [],
|
|
1656
1827
|
"args": {
|
|
1657
|
-
"
|
|
1658
|
-
"
|
|
1659
|
-
"
|
|
1660
|
-
"required": false
|
|
1661
|
-
}
|
|
1662
|
-
},
|
|
1663
|
-
"description": "View query log history",
|
|
1664
|
-
"examples": [
|
|
1665
|
-
"<%= config.bin %> <%= command.id %>",
|
|
1666
|
-
"<%= config.bin %> <%= command.id %> qry-1712345678901",
|
|
1667
|
-
"<%= config.bin %> <%= command.id %> --limit 20",
|
|
1668
|
-
"<%= config.bin %> <%= command.id %> --status completed",
|
|
1669
|
-
"<%= config.bin %> <%= command.id %> --status completed --status error",
|
|
1670
|
-
"<%= config.bin %> <%= command.id %> --tier 0 --tier 1",
|
|
1671
|
-
"<%= config.bin %> <%= command.id %> --since 1h",
|
|
1672
|
-
"<%= config.bin %> <%= command.id %> --since 2024-01-15",
|
|
1673
|
-
"<%= config.bin %> <%= command.id %> --before 2024-02-01",
|
|
1674
|
-
"<%= config.bin %> <%= command.id %> --detail",
|
|
1675
|
-
"<%= config.bin %> <%= command.id %> --format json"
|
|
1676
|
-
],
|
|
1677
|
-
"flags": {
|
|
1678
|
-
"before": {
|
|
1679
|
-
"description": "Show entries started before this time (ISO date or relative: 30m, 1h, 24h, 7d, 2w)",
|
|
1680
|
-
"name": "before",
|
|
1681
|
-
"hasDynamicHelp": false,
|
|
1682
|
-
"multiple": false,
|
|
1683
|
-
"type": "option"
|
|
1684
|
-
},
|
|
1685
|
-
"detail": {
|
|
1686
|
-
"description": "Show matched docs for each entry",
|
|
1687
|
-
"name": "detail",
|
|
1688
|
-
"allowNo": false,
|
|
1689
|
-
"type": "boolean"
|
|
1690
|
-
},
|
|
1691
|
-
"format": {
|
|
1692
|
-
"description": "Output format",
|
|
1693
|
-
"name": "format",
|
|
1694
|
-
"default": "text",
|
|
1695
|
-
"hasDynamicHelp": false,
|
|
1696
|
-
"multiple": false,
|
|
1697
|
-
"options": [
|
|
1698
|
-
"text",
|
|
1699
|
-
"json"
|
|
1700
|
-
],
|
|
1701
|
-
"type": "option"
|
|
1702
|
-
},
|
|
1703
|
-
"limit": {
|
|
1704
|
-
"description": "Maximum number of log entries to display",
|
|
1705
|
-
"name": "limit",
|
|
1706
|
-
"default": 10,
|
|
1707
|
-
"hasDynamicHelp": false,
|
|
1708
|
-
"multiple": false,
|
|
1709
|
-
"type": "option"
|
|
1710
|
-
},
|
|
1711
|
-
"since": {
|
|
1712
|
-
"description": "Show entries started after this time (ISO date or relative: 30m, 1h, 24h, 7d, 2w)",
|
|
1713
|
-
"name": "since",
|
|
1714
|
-
"hasDynamicHelp": false,
|
|
1715
|
-
"multiple": false,
|
|
1716
|
-
"type": "option"
|
|
1717
|
-
},
|
|
1718
|
-
"status": {
|
|
1719
|
-
"description": "Filter by status (can be repeated). Options: cancelled, completed, error, processing",
|
|
1720
|
-
"name": "status",
|
|
1721
|
-
"hasDynamicHelp": false,
|
|
1722
|
-
"multiple": true,
|
|
1723
|
-
"options": [
|
|
1724
|
-
"cancelled",
|
|
1725
|
-
"completed",
|
|
1726
|
-
"error",
|
|
1727
|
-
"processing"
|
|
1728
|
-
],
|
|
1729
|
-
"type": "option"
|
|
1730
|
-
},
|
|
1731
|
-
"tier": {
|
|
1732
|
-
"description": "Filter by resolution tier (can be repeated). Options: 0, 1, 2, 3, 4",
|
|
1733
|
-
"name": "tier",
|
|
1734
|
-
"hasDynamicHelp": false,
|
|
1735
|
-
"multiple": true,
|
|
1736
|
-
"options": [
|
|
1737
|
-
"0",
|
|
1738
|
-
"1",
|
|
1739
|
-
"2",
|
|
1740
|
-
"3",
|
|
1741
|
-
"4"
|
|
1742
|
-
],
|
|
1743
|
-
"type": "option"
|
|
1744
|
-
}
|
|
1745
|
-
},
|
|
1746
|
-
"hasDynamicHelp": false,
|
|
1747
|
-
"hiddenAliases": [],
|
|
1748
|
-
"id": "query-log:view",
|
|
1749
|
-
"pluginAlias": "byterover-cli",
|
|
1750
|
-
"pluginName": "byterover-cli",
|
|
1751
|
-
"pluginType": "core",
|
|
1752
|
-
"strict": true,
|
|
1753
|
-
"enableJsonFlag": false,
|
|
1754
|
-
"isESM": true,
|
|
1755
|
-
"relativePath": [
|
|
1756
|
-
"dist",
|
|
1757
|
-
"oclif",
|
|
1758
|
-
"commands",
|
|
1759
|
-
"query-log",
|
|
1760
|
-
"view.js"
|
|
1761
|
-
]
|
|
1762
|
-
},
|
|
1763
|
-
"review:approve": {
|
|
1764
|
-
"aliases": [],
|
|
1765
|
-
"args": {
|
|
1766
|
-
"taskId": {
|
|
1767
|
-
"description": "Task ID shown in the curate output (e.g. \"brv review approve abc-123\")",
|
|
1768
|
-
"name": "taskId",
|
|
1769
|
-
"required": true
|
|
1770
|
-
}
|
|
1771
|
-
},
|
|
1772
|
-
"description": "Approve pending review operations for a curate task",
|
|
1773
|
-
"examples": [
|
|
1774
|
-
"# Approve all pending changes from a curate task",
|
|
1775
|
-
"<%= config.bin %> review approve abc-123",
|
|
1776
|
-
"",
|
|
1777
|
-
"# Approve specific files",
|
|
1778
|
-
"<%= config.bin %> review approve abc-123 --file architecture/security/audit.md",
|
|
1779
|
-
"<%= config.bin %> review approve abc-123 --file auth/jwt.md --file auth/oauth.md",
|
|
1780
|
-
"",
|
|
1781
|
-
"# Approve and get structured output (useful for coding agents)",
|
|
1782
|
-
"<%= config.bin %> review approve abc-123 --format json"
|
|
1783
|
-
],
|
|
1784
|
-
"flags": {
|
|
1785
|
-
"file": {
|
|
1786
|
-
"description": "Approve only the specified file path(s) (relative to context tree)",
|
|
1787
|
-
"name": "file",
|
|
1788
|
-
"hasDynamicHelp": false,
|
|
1789
|
-
"multiple": true,
|
|
1790
|
-
"type": "option"
|
|
1791
|
-
},
|
|
1792
|
-
"format": {
|
|
1793
|
-
"description": "Output format (text or json)",
|
|
1794
|
-
"name": "format",
|
|
1795
|
-
"default": "text",
|
|
1796
|
-
"hasDynamicHelp": false,
|
|
1797
|
-
"multiple": false,
|
|
1798
|
-
"options": [
|
|
1799
|
-
"text",
|
|
1800
|
-
"json"
|
|
1801
|
-
],
|
|
1802
|
-
"type": "option"
|
|
1803
|
-
}
|
|
1804
|
-
},
|
|
1805
|
-
"hasDynamicHelp": false,
|
|
1806
|
-
"hiddenAliases": [],
|
|
1807
|
-
"id": "review:approve",
|
|
1808
|
-
"pluginAlias": "byterover-cli",
|
|
1809
|
-
"pluginName": "byterover-cli",
|
|
1810
|
-
"pluginType": "core",
|
|
1811
|
-
"strict": true,
|
|
1812
|
-
"enableJsonFlag": false,
|
|
1813
|
-
"isESM": true,
|
|
1814
|
-
"relativePath": [
|
|
1815
|
-
"dist",
|
|
1816
|
-
"oclif",
|
|
1817
|
-
"commands",
|
|
1818
|
-
"review",
|
|
1819
|
-
"approve.js"
|
|
1820
|
-
]
|
|
1821
|
-
},
|
|
1822
|
-
"review:base-review-decision": {
|
|
1823
|
-
"aliases": [],
|
|
1824
|
-
"args": {
|
|
1825
|
-
"taskId": {
|
|
1826
|
-
"name": "taskId",
|
|
1827
|
-
"required": true
|
|
1828
|
+
"taskId": {
|
|
1829
|
+
"name": "taskId",
|
|
1830
|
+
"required": true
|
|
1828
1831
|
}
|
|
1829
1832
|
},
|
|
1830
1833
|
"flags": {
|
|
@@ -1902,289 +1905,41 @@
|
|
|
1902
1905
|
"dist",
|
|
1903
1906
|
"oclif",
|
|
1904
1907
|
"commands",
|
|
1905
|
-
"review",
|
|
1906
|
-
"pending.js"
|
|
1907
|
-
]
|
|
1908
|
-
},
|
|
1909
|
-
"review:reject": {
|
|
1910
|
-
"aliases": [],
|
|
1911
|
-
"args": {
|
|
1912
|
-
"taskId": {
|
|
1913
|
-
"description": "Task ID shown in the curate output (e.g. \"brv review reject abc-123\")",
|
|
1914
|
-
"name": "taskId",
|
|
1915
|
-
"required": true
|
|
1916
|
-
}
|
|
1917
|
-
},
|
|
1918
|
-
"description": "Reject pending review operations for a curate task (restores files from backup)",
|
|
1919
|
-
"examples": [
|
|
1920
|
-
"# Reject all pending changes from a curate task",
|
|
1921
|
-
"<%= config.bin %> review reject abc-123",
|
|
1922
|
-
"",
|
|
1923
|
-
"# Reject specific files",
|
|
1924
|
-
"<%= config.bin %> review reject abc-123 --file architecture/security/audit.md",
|
|
1925
|
-
"<%= config.bin %> review reject abc-123 --file auth/jwt.md --file auth/oauth.md",
|
|
1926
|
-
"",
|
|
1927
|
-
"# Reject and get structured output (useful for coding agents)",
|
|
1928
|
-
"<%= config.bin %> review reject abc-123 --format json"
|
|
1929
|
-
],
|
|
1930
|
-
"flags": {
|
|
1931
|
-
"file": {
|
|
1932
|
-
"description": "Reject only the specified file path(s) (relative to context tree)",
|
|
1933
|
-
"name": "file",
|
|
1934
|
-
"hasDynamicHelp": false,
|
|
1935
|
-
"multiple": true,
|
|
1936
|
-
"type": "option"
|
|
1937
|
-
},
|
|
1938
|
-
"format": {
|
|
1939
|
-
"description": "Output format (text or json)",
|
|
1940
|
-
"name": "format",
|
|
1941
|
-
"default": "text",
|
|
1942
|
-
"hasDynamicHelp": false,
|
|
1943
|
-
"multiple": false,
|
|
1944
|
-
"options": [
|
|
1945
|
-
"text",
|
|
1946
|
-
"json"
|
|
1947
|
-
],
|
|
1948
|
-
"type": "option"
|
|
1949
|
-
}
|
|
1950
|
-
},
|
|
1951
|
-
"hasDynamicHelp": false,
|
|
1952
|
-
"hiddenAliases": [],
|
|
1953
|
-
"id": "review:reject",
|
|
1954
|
-
"pluginAlias": "byterover-cli",
|
|
1955
|
-
"pluginName": "byterover-cli",
|
|
1956
|
-
"pluginType": "core",
|
|
1957
|
-
"strict": true,
|
|
1958
|
-
"enableJsonFlag": false,
|
|
1959
|
-
"isESM": true,
|
|
1960
|
-
"relativePath": [
|
|
1961
|
-
"dist",
|
|
1962
|
-
"oclif",
|
|
1963
|
-
"commands",
|
|
1964
|
-
"review",
|
|
1965
|
-
"reject.js"
|
|
1966
|
-
]
|
|
1967
|
-
},
|
|
1968
|
-
"source:add": {
|
|
1969
|
-
"aliases": [],
|
|
1970
|
-
"args": {
|
|
1971
|
-
"path": {
|
|
1972
|
-
"description": "Path to the target project containing .brv/",
|
|
1973
|
-
"name": "path",
|
|
1974
|
-
"required": true
|
|
1975
|
-
}
|
|
1976
|
-
},
|
|
1977
|
-
"description": "Add a read-only knowledge source from another project's context tree",
|
|
1978
|
-
"examples": [
|
|
1979
|
-
"<%= config.bin %> <%= command.id %> /path/to/shared-lib",
|
|
1980
|
-
"<%= config.bin %> <%= command.id %> /path/to/shared-lib --alias shared"
|
|
1981
|
-
],
|
|
1982
|
-
"flags": {
|
|
1983
|
-
"alias": {
|
|
1984
|
-
"description": "Custom alias for the source (defaults to directory name)",
|
|
1985
|
-
"name": "alias",
|
|
1986
|
-
"required": false,
|
|
1987
|
-
"hasDynamicHelp": false,
|
|
1988
|
-
"multiple": false,
|
|
1989
|
-
"type": "option"
|
|
1990
|
-
}
|
|
1991
|
-
},
|
|
1992
|
-
"hasDynamicHelp": false,
|
|
1993
|
-
"hiddenAliases": [],
|
|
1994
|
-
"id": "source:add",
|
|
1995
|
-
"pluginAlias": "byterover-cli",
|
|
1996
|
-
"pluginName": "byterover-cli",
|
|
1997
|
-
"pluginType": "core",
|
|
1998
|
-
"strict": true,
|
|
1999
|
-
"enableJsonFlag": false,
|
|
2000
|
-
"isESM": true,
|
|
2001
|
-
"relativePath": [
|
|
2002
|
-
"dist",
|
|
2003
|
-
"oclif",
|
|
2004
|
-
"commands",
|
|
2005
|
-
"source",
|
|
2006
|
-
"add.js"
|
|
2007
|
-
]
|
|
2008
|
-
},
|
|
2009
|
-
"source": {
|
|
2010
|
-
"aliases": [],
|
|
2011
|
-
"args": {},
|
|
2012
|
-
"description": "Manage knowledge sources (read-only references to other projects)",
|
|
2013
|
-
"examples": [
|
|
2014
|
-
"<%= config.bin %> <%= command.id %> --help"
|
|
2015
|
-
],
|
|
2016
|
-
"flags": {},
|
|
2017
|
-
"hasDynamicHelp": false,
|
|
2018
|
-
"hiddenAliases": [],
|
|
2019
|
-
"id": "source",
|
|
2020
|
-
"pluginAlias": "byterover-cli",
|
|
2021
|
-
"pluginName": "byterover-cli",
|
|
2022
|
-
"pluginType": "core",
|
|
2023
|
-
"strict": true,
|
|
2024
|
-
"enableJsonFlag": false,
|
|
2025
|
-
"isESM": true,
|
|
2026
|
-
"relativePath": [
|
|
2027
|
-
"dist",
|
|
2028
|
-
"oclif",
|
|
2029
|
-
"commands",
|
|
2030
|
-
"source",
|
|
2031
|
-
"index.js"
|
|
2032
|
-
]
|
|
2033
|
-
},
|
|
2034
|
-
"source:list": {
|
|
2035
|
-
"aliases": [],
|
|
2036
|
-
"args": {},
|
|
2037
|
-
"description": "List all knowledge sources and their status",
|
|
2038
|
-
"examples": [
|
|
2039
|
-
"<%= config.bin %> <%= command.id %>"
|
|
2040
|
-
],
|
|
2041
|
-
"flags": {},
|
|
2042
|
-
"hasDynamicHelp": false,
|
|
2043
|
-
"hiddenAliases": [],
|
|
2044
|
-
"id": "source:list",
|
|
2045
|
-
"pluginAlias": "byterover-cli",
|
|
2046
|
-
"pluginName": "byterover-cli",
|
|
2047
|
-
"pluginType": "core",
|
|
2048
|
-
"strict": true,
|
|
2049
|
-
"enableJsonFlag": false,
|
|
2050
|
-
"isESM": true,
|
|
2051
|
-
"relativePath": [
|
|
2052
|
-
"dist",
|
|
2053
|
-
"oclif",
|
|
2054
|
-
"commands",
|
|
2055
|
-
"source",
|
|
2056
|
-
"list.js"
|
|
2057
|
-
]
|
|
2058
|
-
},
|
|
2059
|
-
"source:remove": {
|
|
2060
|
-
"aliases": [],
|
|
2061
|
-
"args": {
|
|
2062
|
-
"aliasOrPath": {
|
|
2063
|
-
"description": "Alias or path of the knowledge source to remove",
|
|
2064
|
-
"name": "aliasOrPath",
|
|
2065
|
-
"required": true
|
|
2066
|
-
}
|
|
2067
|
-
},
|
|
2068
|
-
"description": "Remove a knowledge source",
|
|
2069
|
-
"examples": [
|
|
2070
|
-
"<%= config.bin %> <%= command.id %> shared-lib",
|
|
2071
|
-
"<%= config.bin %> <%= command.id %> /path/to/shared-lib"
|
|
2072
|
-
],
|
|
2073
|
-
"flags": {},
|
|
2074
|
-
"hasDynamicHelp": false,
|
|
2075
|
-
"hiddenAliases": [],
|
|
2076
|
-
"id": "source:remove",
|
|
2077
|
-
"pluginAlias": "byterover-cli",
|
|
2078
|
-
"pluginName": "byterover-cli",
|
|
2079
|
-
"pluginType": "core",
|
|
2080
|
-
"strict": true,
|
|
2081
|
-
"enableJsonFlag": false,
|
|
2082
|
-
"isESM": true,
|
|
2083
|
-
"relativePath": [
|
|
2084
|
-
"dist",
|
|
2085
|
-
"oclif",
|
|
2086
|
-
"commands",
|
|
2087
|
-
"source",
|
|
2088
|
-
"remove.js"
|
|
2089
|
-
]
|
|
2090
|
-
},
|
|
2091
|
-
"space:list": {
|
|
2092
|
-
"aliases": [],
|
|
2093
|
-
"args": {},
|
|
2094
|
-
"description": "List all teams and spaces (deprecated)",
|
|
2095
|
-
"examples": [
|
|
2096
|
-
"<%= config.bin %> space list"
|
|
2097
|
-
],
|
|
2098
|
-
"flags": {
|
|
2099
|
-
"format": {
|
|
2100
|
-
"char": "f",
|
|
2101
|
-
"description": "Output format",
|
|
2102
|
-
"name": "format",
|
|
2103
|
-
"default": "text",
|
|
2104
|
-
"hasDynamicHelp": false,
|
|
2105
|
-
"multiple": false,
|
|
2106
|
-
"options": [
|
|
2107
|
-
"text",
|
|
2108
|
-
"json"
|
|
2109
|
-
],
|
|
2110
|
-
"type": "option"
|
|
2111
|
-
}
|
|
2112
|
-
},
|
|
2113
|
-
"hasDynamicHelp": false,
|
|
2114
|
-
"hiddenAliases": [],
|
|
2115
|
-
"id": "space:list",
|
|
2116
|
-
"pluginAlias": "byterover-cli",
|
|
2117
|
-
"pluginName": "byterover-cli",
|
|
2118
|
-
"pluginType": "core",
|
|
2119
|
-
"strict": true,
|
|
2120
|
-
"enableJsonFlag": false,
|
|
2121
|
-
"isESM": true,
|
|
2122
|
-
"relativePath": [
|
|
2123
|
-
"dist",
|
|
2124
|
-
"oclif",
|
|
2125
|
-
"commands",
|
|
2126
|
-
"space",
|
|
2127
|
-
"list.js"
|
|
2128
|
-
]
|
|
2129
|
-
},
|
|
2130
|
-
"space:switch": {
|
|
2131
|
-
"aliases": [],
|
|
2132
|
-
"args": {},
|
|
2133
|
-
"description": "Switch to a different space (deprecated)",
|
|
2134
|
-
"examples": [
|
|
2135
|
-
"<%= config.bin %> space switch"
|
|
2136
|
-
],
|
|
2137
|
-
"flags": {
|
|
2138
|
-
"format": {
|
|
2139
|
-
"char": "f",
|
|
2140
|
-
"description": "Output format",
|
|
2141
|
-
"name": "format",
|
|
2142
|
-
"default": "text",
|
|
2143
|
-
"hasDynamicHelp": false,
|
|
2144
|
-
"multiple": false,
|
|
2145
|
-
"options": [
|
|
2146
|
-
"text",
|
|
2147
|
-
"json"
|
|
2148
|
-
],
|
|
2149
|
-
"type": "option"
|
|
2150
|
-
}
|
|
2151
|
-
},
|
|
2152
|
-
"hasDynamicHelp": false,
|
|
2153
|
-
"hiddenAliases": [],
|
|
2154
|
-
"id": "space:switch",
|
|
2155
|
-
"pluginAlias": "byterover-cli",
|
|
2156
|
-
"pluginName": "byterover-cli",
|
|
2157
|
-
"pluginType": "core",
|
|
2158
|
-
"strict": true,
|
|
2159
|
-
"enableJsonFlag": false,
|
|
2160
|
-
"isESM": true,
|
|
2161
|
-
"relativePath": [
|
|
2162
|
-
"dist",
|
|
2163
|
-
"oclif",
|
|
2164
|
-
"commands",
|
|
2165
|
-
"space",
|
|
2166
|
-
"switch.js"
|
|
1908
|
+
"review",
|
|
1909
|
+
"pending.js"
|
|
2167
1910
|
]
|
|
2168
1911
|
},
|
|
2169
|
-
"
|
|
1912
|
+
"review:reject": {
|
|
2170
1913
|
"aliases": [],
|
|
2171
1914
|
"args": {
|
|
2172
|
-
"
|
|
2173
|
-
"description": "
|
|
2174
|
-
"name": "
|
|
1915
|
+
"taskId": {
|
|
1916
|
+
"description": "Task ID shown in the curate output (e.g. \"brv review reject abc-123\")",
|
|
1917
|
+
"name": "taskId",
|
|
2175
1918
|
"required": true
|
|
2176
1919
|
}
|
|
2177
1920
|
},
|
|
2178
|
-
"description": "
|
|
1921
|
+
"description": "Reject pending review operations for a curate task (restores files from backup)",
|
|
2179
1922
|
"examples": [
|
|
2180
|
-
"
|
|
2181
|
-
"<%= config.bin %>
|
|
2182
|
-
"
|
|
1923
|
+
"# Reject all pending changes from a curate task",
|
|
1924
|
+
"<%= config.bin %> review reject abc-123",
|
|
1925
|
+
"",
|
|
1926
|
+
"# Reject specific files",
|
|
1927
|
+
"<%= config.bin %> review reject abc-123 --file architecture/security/audit.md",
|
|
1928
|
+
"<%= config.bin %> review reject abc-123 --file auth/jwt.md --file auth/oauth.md",
|
|
1929
|
+
"",
|
|
1930
|
+
"# Reject and get structured output (useful for coding agents)",
|
|
1931
|
+
"<%= config.bin %> review reject abc-123 --format json"
|
|
2183
1932
|
],
|
|
2184
1933
|
"flags": {
|
|
1934
|
+
"file": {
|
|
1935
|
+
"description": "Reject only the specified file path(s) (relative to context tree)",
|
|
1936
|
+
"name": "file",
|
|
1937
|
+
"hasDynamicHelp": false,
|
|
1938
|
+
"multiple": true,
|
|
1939
|
+
"type": "option"
|
|
1940
|
+
},
|
|
2185
1941
|
"format": {
|
|
2186
|
-
"
|
|
2187
|
-
"description": "Output format",
|
|
1942
|
+
"description": "Output format (text or json)",
|
|
2188
1943
|
"name": "format",
|
|
2189
1944
|
"default": "text",
|
|
2190
1945
|
"hasDynamicHelp": false,
|
|
@@ -2194,19 +1949,11 @@
|
|
|
2194
1949
|
"json"
|
|
2195
1950
|
],
|
|
2196
1951
|
"type": "option"
|
|
2197
|
-
},
|
|
2198
|
-
"provider": {
|
|
2199
|
-
"char": "p",
|
|
2200
|
-
"description": "Target provider ID (e.g., gbrain, local-markdown:notes)",
|
|
2201
|
-
"name": "provider",
|
|
2202
|
-
"hasDynamicHelp": false,
|
|
2203
|
-
"multiple": false,
|
|
2204
|
-
"type": "option"
|
|
2205
1952
|
}
|
|
2206
1953
|
},
|
|
2207
1954
|
"hasDynamicHelp": false,
|
|
2208
1955
|
"hiddenAliases": [],
|
|
2209
|
-
"id": "
|
|
1956
|
+
"id": "review:reject",
|
|
2210
1957
|
"pluginAlias": "byterover-cli",
|
|
2211
1958
|
"pluginName": "byterover-cli",
|
|
2212
1959
|
"pluginType": "core",
|
|
@@ -2217,56 +1964,18 @@
|
|
|
2217
1964
|
"dist",
|
|
2218
1965
|
"oclif",
|
|
2219
1966
|
"commands",
|
|
2220
|
-
"
|
|
2221
|
-
"
|
|
1967
|
+
"review",
|
|
1968
|
+
"reject.js"
|
|
2222
1969
|
]
|
|
2223
1970
|
},
|
|
2224
|
-
"
|
|
1971
|
+
"space:list": {
|
|
2225
1972
|
"aliases": [],
|
|
2226
1973
|
"args": {},
|
|
2227
|
-
"description": "
|
|
2228
|
-
"examples": [
|
|
2229
|
-
"<%= config.bin %> swarm onboard"
|
|
2230
|
-
],
|
|
2231
|
-
"flags": {},
|
|
2232
|
-
"hasDynamicHelp": false,
|
|
2233
|
-
"hiddenAliases": [],
|
|
2234
|
-
"id": "swarm:onboard",
|
|
2235
|
-
"pluginAlias": "byterover-cli",
|
|
2236
|
-
"pluginName": "byterover-cli",
|
|
2237
|
-
"pluginType": "core",
|
|
2238
|
-
"strict": true,
|
|
2239
|
-
"enableJsonFlag": false,
|
|
2240
|
-
"isESM": true,
|
|
2241
|
-
"relativePath": [
|
|
2242
|
-
"dist",
|
|
2243
|
-
"oclif",
|
|
2244
|
-
"commands",
|
|
2245
|
-
"swarm",
|
|
2246
|
-
"onboard.js"
|
|
2247
|
-
]
|
|
2248
|
-
},
|
|
2249
|
-
"swarm:query": {
|
|
2250
|
-
"aliases": [],
|
|
2251
|
-
"args": {
|
|
2252
|
-
"query": {
|
|
2253
|
-
"description": "Natural language query to search across memory providers",
|
|
2254
|
-
"name": "query",
|
|
2255
|
-
"required": true
|
|
2256
|
-
}
|
|
2257
|
-
},
|
|
2258
|
-
"description": "Query the memory swarm across all active providers",
|
|
1974
|
+
"description": "List all teams and spaces (deprecated)",
|
|
2259
1975
|
"examples": [
|
|
2260
|
-
"<%= config.bin %>
|
|
2261
|
-
"<%= config.bin %> swarm query \"what changed yesterday\" --format json"
|
|
1976
|
+
"<%= config.bin %> space list"
|
|
2262
1977
|
],
|
|
2263
1978
|
"flags": {
|
|
2264
|
-
"explain": {
|
|
2265
|
-
"description": "Show classification, routing, and enrichment details (ignored with --format json, which always includes all metadata)",
|
|
2266
|
-
"name": "explain",
|
|
2267
|
-
"allowNo": false,
|
|
2268
|
-
"type": "boolean"
|
|
2269
|
-
},
|
|
2270
1979
|
"format": {
|
|
2271
1980
|
"char": "f",
|
|
2272
1981
|
"description": "Output format",
|
|
@@ -2279,19 +1988,11 @@
|
|
|
2279
1988
|
"json"
|
|
2280
1989
|
],
|
|
2281
1990
|
"type": "option"
|
|
2282
|
-
},
|
|
2283
|
-
"max-results": {
|
|
2284
|
-
"char": "n",
|
|
2285
|
-
"description": "Maximum number of results",
|
|
2286
|
-
"name": "max-results",
|
|
2287
|
-
"hasDynamicHelp": false,
|
|
2288
|
-
"multiple": false,
|
|
2289
|
-
"type": "option"
|
|
2290
1991
|
}
|
|
2291
1992
|
},
|
|
2292
1993
|
"hasDynamicHelp": false,
|
|
2293
1994
|
"hiddenAliases": [],
|
|
2294
|
-
"id": "
|
|
1995
|
+
"id": "space:list",
|
|
2295
1996
|
"pluginAlias": "byterover-cli",
|
|
2296
1997
|
"pluginName": "byterover-cli",
|
|
2297
1998
|
"pluginType": "core",
|
|
@@ -2302,17 +2003,16 @@
|
|
|
2302
2003
|
"dist",
|
|
2303
2004
|
"oclif",
|
|
2304
2005
|
"commands",
|
|
2305
|
-
"
|
|
2306
|
-
"
|
|
2006
|
+
"space",
|
|
2007
|
+
"list.js"
|
|
2307
2008
|
]
|
|
2308
2009
|
},
|
|
2309
|
-
"
|
|
2010
|
+
"space:switch": {
|
|
2310
2011
|
"aliases": [],
|
|
2311
2012
|
"args": {},
|
|
2312
|
-
"description": "
|
|
2013
|
+
"description": "Switch to a different space (deprecated)",
|
|
2313
2014
|
"examples": [
|
|
2314
|
-
"<%= config.bin %>
|
|
2315
|
-
"<%= config.bin %> swarm status --format json"
|
|
2015
|
+
"<%= config.bin %> space switch"
|
|
2316
2016
|
],
|
|
2317
2017
|
"flags": {
|
|
2318
2018
|
"format": {
|
|
@@ -2331,7 +2031,7 @@
|
|
|
2331
2031
|
},
|
|
2332
2032
|
"hasDynamicHelp": false,
|
|
2333
2033
|
"hiddenAliases": [],
|
|
2334
|
-
"id": "
|
|
2034
|
+
"id": "space:switch",
|
|
2335
2035
|
"pluginAlias": "byterover-cli",
|
|
2336
2036
|
"pluginName": "byterover-cli",
|
|
2337
2037
|
"pluginType": "core",
|
|
@@ -2342,8 +2042,8 @@
|
|
|
2342
2042
|
"dist",
|
|
2343
2043
|
"oclif",
|
|
2344
2044
|
"commands",
|
|
2345
|
-
"
|
|
2346
|
-
"
|
|
2045
|
+
"space",
|
|
2046
|
+
"switch.js"
|
|
2347
2047
|
]
|
|
2348
2048
|
},
|
|
2349
2049
|
"vc:add": {
|
|
@@ -2948,32 +2648,170 @@
|
|
|
2948
2648
|
"status.js"
|
|
2949
2649
|
]
|
|
2950
2650
|
},
|
|
2951
|
-
"
|
|
2651
|
+
"source:add": {
|
|
2952
2652
|
"aliases": [],
|
|
2953
2653
|
"args": {
|
|
2954
2654
|
"path": {
|
|
2955
|
-
"description": "Path to the
|
|
2655
|
+
"description": "Path to the target project containing .brv/",
|
|
2956
2656
|
"name": "path",
|
|
2957
|
-
"required":
|
|
2657
|
+
"required": true
|
|
2958
2658
|
}
|
|
2959
2659
|
},
|
|
2960
|
-
"description": "
|
|
2660
|
+
"description": "Add a read-only knowledge source from another project's context tree",
|
|
2961
2661
|
"examples": [
|
|
2962
|
-
"<%= config.bin %> <%= command.id %>
|
|
2963
|
-
"<%= config.bin %> <%= command.id %>
|
|
2964
|
-
|
|
2662
|
+
"<%= config.bin %> <%= command.id %> /path/to/shared-lib",
|
|
2663
|
+
"<%= config.bin %> <%= command.id %> /path/to/shared-lib --alias shared"
|
|
2664
|
+
],
|
|
2665
|
+
"flags": {
|
|
2666
|
+
"alias": {
|
|
2667
|
+
"description": "Custom alias for the source (defaults to directory name)",
|
|
2668
|
+
"name": "alias",
|
|
2669
|
+
"required": false,
|
|
2670
|
+
"hasDynamicHelp": false,
|
|
2671
|
+
"multiple": false,
|
|
2672
|
+
"type": "option"
|
|
2673
|
+
}
|
|
2674
|
+
},
|
|
2675
|
+
"hasDynamicHelp": false,
|
|
2676
|
+
"hiddenAliases": [],
|
|
2677
|
+
"id": "source:add",
|
|
2678
|
+
"pluginAlias": "byterover-cli",
|
|
2679
|
+
"pluginName": "byterover-cli",
|
|
2680
|
+
"pluginType": "core",
|
|
2681
|
+
"strict": true,
|
|
2682
|
+
"enableJsonFlag": false,
|
|
2683
|
+
"isESM": true,
|
|
2684
|
+
"relativePath": [
|
|
2685
|
+
"dist",
|
|
2686
|
+
"oclif",
|
|
2687
|
+
"commands",
|
|
2688
|
+
"source",
|
|
2689
|
+
"add.js"
|
|
2690
|
+
]
|
|
2691
|
+
},
|
|
2692
|
+
"source": {
|
|
2693
|
+
"aliases": [],
|
|
2694
|
+
"args": {},
|
|
2695
|
+
"description": "Manage knowledge sources (read-only references to other projects)",
|
|
2696
|
+
"examples": [
|
|
2697
|
+
"<%= config.bin %> <%= command.id %> --help"
|
|
2698
|
+
],
|
|
2699
|
+
"flags": {},
|
|
2700
|
+
"hasDynamicHelp": false,
|
|
2701
|
+
"hiddenAliases": [],
|
|
2702
|
+
"id": "source",
|
|
2703
|
+
"pluginAlias": "byterover-cli",
|
|
2704
|
+
"pluginName": "byterover-cli",
|
|
2705
|
+
"pluginType": "core",
|
|
2706
|
+
"strict": true,
|
|
2707
|
+
"enableJsonFlag": false,
|
|
2708
|
+
"isESM": true,
|
|
2709
|
+
"relativePath": [
|
|
2710
|
+
"dist",
|
|
2711
|
+
"oclif",
|
|
2712
|
+
"commands",
|
|
2713
|
+
"source",
|
|
2714
|
+
"index.js"
|
|
2715
|
+
]
|
|
2716
|
+
},
|
|
2717
|
+
"source:list": {
|
|
2718
|
+
"aliases": [],
|
|
2719
|
+
"args": {},
|
|
2720
|
+
"description": "List all knowledge sources and their status",
|
|
2721
|
+
"examples": [
|
|
2722
|
+
"<%= config.bin %> <%= command.id %>"
|
|
2723
|
+
],
|
|
2724
|
+
"flags": {},
|
|
2725
|
+
"hasDynamicHelp": false,
|
|
2726
|
+
"hiddenAliases": [],
|
|
2727
|
+
"id": "source:list",
|
|
2728
|
+
"pluginAlias": "byterover-cli",
|
|
2729
|
+
"pluginName": "byterover-cli",
|
|
2730
|
+
"pluginType": "core",
|
|
2731
|
+
"strict": true,
|
|
2732
|
+
"enableJsonFlag": false,
|
|
2733
|
+
"isESM": true,
|
|
2734
|
+
"relativePath": [
|
|
2735
|
+
"dist",
|
|
2736
|
+
"oclif",
|
|
2737
|
+
"commands",
|
|
2738
|
+
"source",
|
|
2739
|
+
"list.js"
|
|
2740
|
+
]
|
|
2741
|
+
},
|
|
2742
|
+
"source:remove": {
|
|
2743
|
+
"aliases": [],
|
|
2744
|
+
"args": {
|
|
2745
|
+
"aliasOrPath": {
|
|
2746
|
+
"description": "Alias or path of the knowledge source to remove",
|
|
2747
|
+
"name": "aliasOrPath",
|
|
2748
|
+
"required": true
|
|
2749
|
+
}
|
|
2750
|
+
},
|
|
2751
|
+
"description": "Remove a knowledge source",
|
|
2752
|
+
"examples": [
|
|
2753
|
+
"<%= config.bin %> <%= command.id %> shared-lib",
|
|
2754
|
+
"<%= config.bin %> <%= command.id %> /path/to/shared-lib"
|
|
2755
|
+
],
|
|
2756
|
+
"flags": {},
|
|
2757
|
+
"hasDynamicHelp": false,
|
|
2758
|
+
"hiddenAliases": [],
|
|
2759
|
+
"id": "source:remove",
|
|
2760
|
+
"pluginAlias": "byterover-cli",
|
|
2761
|
+
"pluginName": "byterover-cli",
|
|
2762
|
+
"pluginType": "core",
|
|
2763
|
+
"strict": true,
|
|
2764
|
+
"enableJsonFlag": false,
|
|
2765
|
+
"isESM": true,
|
|
2766
|
+
"relativePath": [
|
|
2767
|
+
"dist",
|
|
2768
|
+
"oclif",
|
|
2769
|
+
"commands",
|
|
2770
|
+
"source",
|
|
2771
|
+
"remove.js"
|
|
2772
|
+
]
|
|
2773
|
+
},
|
|
2774
|
+
"swarm:curate": {
|
|
2775
|
+
"aliases": [],
|
|
2776
|
+
"args": {
|
|
2777
|
+
"content": {
|
|
2778
|
+
"description": "Knowledge content to store in a swarm provider",
|
|
2779
|
+
"name": "content",
|
|
2780
|
+
"required": true
|
|
2781
|
+
}
|
|
2782
|
+
},
|
|
2783
|
+
"description": "Store knowledge in a swarm provider (GBrain, local markdown)",
|
|
2784
|
+
"examples": [
|
|
2785
|
+
"<%= config.bin %> swarm curate \"Dario Amodei is CEO of Anthropic\"",
|
|
2786
|
+
"<%= config.bin %> swarm curate \"meeting notes: decided on JWT\" --provider local-markdown:notes",
|
|
2787
|
+
"<%= config.bin %> swarm curate \"Architecture uses event sourcing\" --provider gbrain"
|
|
2965
2788
|
],
|
|
2966
2789
|
"flags": {
|
|
2967
|
-
"
|
|
2968
|
-
"
|
|
2969
|
-
"
|
|
2970
|
-
"
|
|
2971
|
-
"
|
|
2790
|
+
"format": {
|
|
2791
|
+
"char": "f",
|
|
2792
|
+
"description": "Output format",
|
|
2793
|
+
"name": "format",
|
|
2794
|
+
"default": "text",
|
|
2795
|
+
"hasDynamicHelp": false,
|
|
2796
|
+
"multiple": false,
|
|
2797
|
+
"options": [
|
|
2798
|
+
"text",
|
|
2799
|
+
"json"
|
|
2800
|
+
],
|
|
2801
|
+
"type": "option"
|
|
2802
|
+
},
|
|
2803
|
+
"provider": {
|
|
2804
|
+
"char": "p",
|
|
2805
|
+
"description": "Target provider ID (e.g., gbrain, local-markdown:notes)",
|
|
2806
|
+
"name": "provider",
|
|
2807
|
+
"hasDynamicHelp": false,
|
|
2808
|
+
"multiple": false,
|
|
2809
|
+
"type": "option"
|
|
2972
2810
|
}
|
|
2973
2811
|
},
|
|
2974
2812
|
"hasDynamicHelp": false,
|
|
2975
2813
|
"hiddenAliases": [],
|
|
2976
|
-
"id": "
|
|
2814
|
+
"id": "swarm:curate",
|
|
2977
2815
|
"pluginAlias": "byterover-cli",
|
|
2978
2816
|
"pluginName": "byterover-cli",
|
|
2979
2817
|
"pluginType": "core",
|
|
@@ -2984,21 +2822,21 @@
|
|
|
2984
2822
|
"dist",
|
|
2985
2823
|
"oclif",
|
|
2986
2824
|
"commands",
|
|
2987
|
-
"
|
|
2988
|
-
"
|
|
2825
|
+
"swarm",
|
|
2826
|
+
"curate.js"
|
|
2989
2827
|
]
|
|
2990
2828
|
},
|
|
2991
|
-
"
|
|
2829
|
+
"swarm:onboard": {
|
|
2992
2830
|
"aliases": [],
|
|
2993
2831
|
"args": {},
|
|
2994
|
-
"description": "
|
|
2832
|
+
"description": "Set up memory swarm with interactive onboarding wizard",
|
|
2995
2833
|
"examples": [
|
|
2996
|
-
"<%= config.bin %>
|
|
2834
|
+
"<%= config.bin %> swarm onboard"
|
|
2997
2835
|
],
|
|
2998
2836
|
"flags": {},
|
|
2999
2837
|
"hasDynamicHelp": false,
|
|
3000
2838
|
"hiddenAliases": [],
|
|
3001
|
-
"id": "
|
|
2839
|
+
"id": "swarm:onboard",
|
|
3002
2840
|
"pluginAlias": "byterover-cli",
|
|
3003
2841
|
"pluginName": "byterover-cli",
|
|
3004
2842
|
"pluginType": "core",
|
|
@@ -3009,21 +2847,56 @@
|
|
|
3009
2847
|
"dist",
|
|
3010
2848
|
"oclif",
|
|
3011
2849
|
"commands",
|
|
3012
|
-
"
|
|
3013
|
-
"
|
|
2850
|
+
"swarm",
|
|
2851
|
+
"onboard.js"
|
|
3014
2852
|
]
|
|
3015
2853
|
},
|
|
3016
|
-
"
|
|
2854
|
+
"swarm:query": {
|
|
3017
2855
|
"aliases": [],
|
|
3018
|
-
"args": {
|
|
3019
|
-
|
|
2856
|
+
"args": {
|
|
2857
|
+
"query": {
|
|
2858
|
+
"description": "Natural language query to search across memory providers",
|
|
2859
|
+
"name": "query",
|
|
2860
|
+
"required": true
|
|
2861
|
+
}
|
|
2862
|
+
},
|
|
2863
|
+
"description": "Query the memory swarm across all active providers",
|
|
3020
2864
|
"examples": [
|
|
3021
|
-
"<%= config.bin %>
|
|
2865
|
+
"<%= config.bin %> swarm query \"auth tokens\"",
|
|
2866
|
+
"<%= config.bin %> swarm query \"what changed yesterday\" --format json"
|
|
3022
2867
|
],
|
|
3023
|
-
"flags": {
|
|
2868
|
+
"flags": {
|
|
2869
|
+
"explain": {
|
|
2870
|
+
"description": "Show classification, routing, and enrichment details (ignored with --format json, which always includes all metadata)",
|
|
2871
|
+
"name": "explain",
|
|
2872
|
+
"allowNo": false,
|
|
2873
|
+
"type": "boolean"
|
|
2874
|
+
},
|
|
2875
|
+
"format": {
|
|
2876
|
+
"char": "f",
|
|
2877
|
+
"description": "Output format",
|
|
2878
|
+
"name": "format",
|
|
2879
|
+
"default": "text",
|
|
2880
|
+
"hasDynamicHelp": false,
|
|
2881
|
+
"multiple": false,
|
|
2882
|
+
"options": [
|
|
2883
|
+
"text",
|
|
2884
|
+
"json"
|
|
2885
|
+
],
|
|
2886
|
+
"type": "option"
|
|
2887
|
+
},
|
|
2888
|
+
"max-results": {
|
|
2889
|
+
"char": "n",
|
|
2890
|
+
"description": "Maximum number of results",
|
|
2891
|
+
"name": "max-results",
|
|
2892
|
+
"hasDynamicHelp": false,
|
|
2893
|
+
"multiple": false,
|
|
2894
|
+
"type": "option"
|
|
2895
|
+
}
|
|
2896
|
+
},
|
|
3024
2897
|
"hasDynamicHelp": false,
|
|
3025
2898
|
"hiddenAliases": [],
|
|
3026
|
-
"id": "
|
|
2899
|
+
"id": "swarm:query",
|
|
3027
2900
|
"pluginAlias": "byterover-cli",
|
|
3028
2901
|
"pluginName": "byterover-cli",
|
|
3029
2902
|
"pluginType": "core",
|
|
@@ -3034,28 +2907,36 @@
|
|
|
3034
2907
|
"dist",
|
|
3035
2908
|
"oclif",
|
|
3036
2909
|
"commands",
|
|
3037
|
-
"
|
|
3038
|
-
"
|
|
2910
|
+
"swarm",
|
|
2911
|
+
"query.js"
|
|
3039
2912
|
]
|
|
3040
2913
|
},
|
|
3041
|
-
"
|
|
2914
|
+
"swarm:status": {
|
|
3042
2915
|
"aliases": [],
|
|
3043
|
-
"args": {
|
|
3044
|
-
|
|
3045
|
-
"description": "Path to the worktree to remove (defaults to cwd)",
|
|
3046
|
-
"name": "path",
|
|
3047
|
-
"required": false
|
|
3048
|
-
}
|
|
3049
|
-
},
|
|
3050
|
-
"description": "Remove a worktree registration and its .brv pointer",
|
|
2916
|
+
"args": {},
|
|
2917
|
+
"description": "Show memory swarm provider health and connection status",
|
|
3051
2918
|
"examples": [
|
|
3052
|
-
"<%= config.bin %>
|
|
3053
|
-
"<%= config.bin %>
|
|
2919
|
+
"<%= config.bin %> swarm status",
|
|
2920
|
+
"<%= config.bin %> swarm status --format json"
|
|
3054
2921
|
],
|
|
3055
|
-
"flags": {
|
|
2922
|
+
"flags": {
|
|
2923
|
+
"format": {
|
|
2924
|
+
"char": "f",
|
|
2925
|
+
"description": "Output format",
|
|
2926
|
+
"name": "format",
|
|
2927
|
+
"default": "text",
|
|
2928
|
+
"hasDynamicHelp": false,
|
|
2929
|
+
"multiple": false,
|
|
2930
|
+
"options": [
|
|
2931
|
+
"text",
|
|
2932
|
+
"json"
|
|
2933
|
+
],
|
|
2934
|
+
"type": "option"
|
|
2935
|
+
}
|
|
2936
|
+
},
|
|
3056
2937
|
"hasDynamicHelp": false,
|
|
3057
2938
|
"hiddenAliases": [],
|
|
3058
|
-
"id": "
|
|
2939
|
+
"id": "swarm:status",
|
|
3059
2940
|
"pluginAlias": "byterover-cli",
|
|
3060
2941
|
"pluginName": "byterover-cli",
|
|
3061
2942
|
"pluginType": "core",
|
|
@@ -3066,8 +2947,8 @@
|
|
|
3066
2947
|
"dist",
|
|
3067
2948
|
"oclif",
|
|
3068
2949
|
"commands",
|
|
3069
|
-
"
|
|
3070
|
-
"
|
|
2950
|
+
"swarm",
|
|
2951
|
+
"status.js"
|
|
3071
2952
|
]
|
|
3072
2953
|
},
|
|
3073
2954
|
"hub:registry:add": {
|
|
@@ -3268,6 +3149,128 @@
|
|
|
3268
3149
|
"remove.js"
|
|
3269
3150
|
]
|
|
3270
3151
|
},
|
|
3152
|
+
"worktree:add": {
|
|
3153
|
+
"aliases": [],
|
|
3154
|
+
"args": {
|
|
3155
|
+
"path": {
|
|
3156
|
+
"description": "Path to the directory to register as a worktree (relative or absolute)",
|
|
3157
|
+
"name": "path",
|
|
3158
|
+
"required": false
|
|
3159
|
+
}
|
|
3160
|
+
},
|
|
3161
|
+
"description": "Register a directory as a worktree of this project",
|
|
3162
|
+
"examples": [
|
|
3163
|
+
"<%= config.bin %> <%= command.id %> packages/api",
|
|
3164
|
+
"<%= config.bin %> <%= command.id %> ../other-checkout",
|
|
3165
|
+
"<%= config.bin %> <%= command.id %> (auto-detect parent from subdirectory)"
|
|
3166
|
+
],
|
|
3167
|
+
"flags": {
|
|
3168
|
+
"force": {
|
|
3169
|
+
"description": "Replace existing .brv/ directory in target with a worktree pointer",
|
|
3170
|
+
"name": "force",
|
|
3171
|
+
"allowNo": false,
|
|
3172
|
+
"type": "boolean"
|
|
3173
|
+
}
|
|
3174
|
+
},
|
|
3175
|
+
"hasDynamicHelp": false,
|
|
3176
|
+
"hiddenAliases": [],
|
|
3177
|
+
"id": "worktree:add",
|
|
3178
|
+
"pluginAlias": "byterover-cli",
|
|
3179
|
+
"pluginName": "byterover-cli",
|
|
3180
|
+
"pluginType": "core",
|
|
3181
|
+
"strict": true,
|
|
3182
|
+
"enableJsonFlag": false,
|
|
3183
|
+
"isESM": true,
|
|
3184
|
+
"relativePath": [
|
|
3185
|
+
"dist",
|
|
3186
|
+
"oclif",
|
|
3187
|
+
"commands",
|
|
3188
|
+
"worktree",
|
|
3189
|
+
"add.js"
|
|
3190
|
+
]
|
|
3191
|
+
},
|
|
3192
|
+
"worktree": {
|
|
3193
|
+
"aliases": [],
|
|
3194
|
+
"args": {},
|
|
3195
|
+
"description": "Manage worktree links for subdirectories and sibling checkouts",
|
|
3196
|
+
"examples": [
|
|
3197
|
+
"<%= config.bin %> <%= command.id %> --help"
|
|
3198
|
+
],
|
|
3199
|
+
"flags": {},
|
|
3200
|
+
"hasDynamicHelp": false,
|
|
3201
|
+
"hiddenAliases": [],
|
|
3202
|
+
"id": "worktree",
|
|
3203
|
+
"pluginAlias": "byterover-cli",
|
|
3204
|
+
"pluginName": "byterover-cli",
|
|
3205
|
+
"pluginType": "core",
|
|
3206
|
+
"strict": true,
|
|
3207
|
+
"enableJsonFlag": false,
|
|
3208
|
+
"isESM": true,
|
|
3209
|
+
"relativePath": [
|
|
3210
|
+
"dist",
|
|
3211
|
+
"oclif",
|
|
3212
|
+
"commands",
|
|
3213
|
+
"worktree",
|
|
3214
|
+
"index.js"
|
|
3215
|
+
]
|
|
3216
|
+
},
|
|
3217
|
+
"worktree:list": {
|
|
3218
|
+
"aliases": [],
|
|
3219
|
+
"args": {},
|
|
3220
|
+
"description": "Show the current worktree link and list all registered worktrees",
|
|
3221
|
+
"examples": [
|
|
3222
|
+
"<%= config.bin %> <%= command.id %>"
|
|
3223
|
+
],
|
|
3224
|
+
"flags": {},
|
|
3225
|
+
"hasDynamicHelp": false,
|
|
3226
|
+
"hiddenAliases": [],
|
|
3227
|
+
"id": "worktree:list",
|
|
3228
|
+
"pluginAlias": "byterover-cli",
|
|
3229
|
+
"pluginName": "byterover-cli",
|
|
3230
|
+
"pluginType": "core",
|
|
3231
|
+
"strict": true,
|
|
3232
|
+
"enableJsonFlag": false,
|
|
3233
|
+
"isESM": true,
|
|
3234
|
+
"relativePath": [
|
|
3235
|
+
"dist",
|
|
3236
|
+
"oclif",
|
|
3237
|
+
"commands",
|
|
3238
|
+
"worktree",
|
|
3239
|
+
"list.js"
|
|
3240
|
+
]
|
|
3241
|
+
},
|
|
3242
|
+
"worktree:remove": {
|
|
3243
|
+
"aliases": [],
|
|
3244
|
+
"args": {
|
|
3245
|
+
"path": {
|
|
3246
|
+
"description": "Path to the worktree to remove (defaults to cwd)",
|
|
3247
|
+
"name": "path",
|
|
3248
|
+
"required": false
|
|
3249
|
+
}
|
|
3250
|
+
},
|
|
3251
|
+
"description": "Remove a worktree registration and its .brv pointer",
|
|
3252
|
+
"examples": [
|
|
3253
|
+
"<%= config.bin %> <%= command.id %> (remove cwd as worktree)",
|
|
3254
|
+
"<%= config.bin %> <%= command.id %> packages/api (remove from parent)"
|
|
3255
|
+
],
|
|
3256
|
+
"flags": {},
|
|
3257
|
+
"hasDynamicHelp": false,
|
|
3258
|
+
"hiddenAliases": [],
|
|
3259
|
+
"id": "worktree:remove",
|
|
3260
|
+
"pluginAlias": "byterover-cli",
|
|
3261
|
+
"pluginName": "byterover-cli",
|
|
3262
|
+
"pluginType": "core",
|
|
3263
|
+
"strict": true,
|
|
3264
|
+
"enableJsonFlag": false,
|
|
3265
|
+
"isESM": true,
|
|
3266
|
+
"relativePath": [
|
|
3267
|
+
"dist",
|
|
3268
|
+
"oclif",
|
|
3269
|
+
"commands",
|
|
3270
|
+
"worktree",
|
|
3271
|
+
"remove.js"
|
|
3272
|
+
]
|
|
3273
|
+
},
|
|
3271
3274
|
"vc:remote:add": {
|
|
3272
3275
|
"aliases": [],
|
|
3273
3276
|
"args": {
|
|
@@ -3369,5 +3372,5 @@
|
|
|
3369
3372
|
]
|
|
3370
3373
|
}
|
|
3371
3374
|
},
|
|
3372
|
-
"version": "3.8.
|
|
3375
|
+
"version": "3.8.3"
|
|
3373
3376
|
}
|