byterover-cli 3.10.1 → 3.10.2
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/agent/infra/agent/service-initializer.js +8 -2
- package/dist/agent/infra/llm/agent-llm-service.d.ts +9 -9
- package/dist/agent/infra/llm/agent-llm-service.js +28 -18
- package/dist/agent/infra/llm/generators/ai-sdk-content-generator.d.ts +10 -1
- package/dist/agent/infra/llm/generators/ai-sdk-content-generator.js +21 -4
- package/dist/agent/infra/llm/generators/ai-sdk-message-converter.d.ts +4 -0
- package/dist/agent/infra/llm/generators/ai-sdk-message-converter.js +8 -1
- package/dist/agent/infra/map/abstract-generator.d.ts +29 -0
- package/dist/agent/infra/map/abstract-generator.js +161 -0
- package/dist/agent/infra/map/abstract-queue.d.ts +7 -0
- package/dist/agent/infra/map/abstract-queue.js +100 -26
- package/dist/agent/infra/system-prompt/contributors/file-contributor.js +6 -2
- package/dist/agent/infra/tools/tool-manager.d.ts +10 -1
- package/dist/agent/infra/tools/tool-manager.js +10 -1
- package/dist/server/infra/dream/dream-state-schema.d.ts +35 -0
- package/dist/server/infra/dream/dream-state-schema.js +15 -0
- package/dist/server/infra/dream/dream-state-service.d.ts +22 -0
- package/dist/server/infra/dream/dream-state-service.js +62 -3
- package/dist/server/infra/dream/dream-trigger.js +6 -2
- package/dist/server/infra/executor/curate-executor.d.ts +16 -0
- package/dist/server/infra/executor/curate-executor.js +76 -5
- package/dist/server/infra/executor/dream-executor.d.ts +16 -0
- package/dist/server/infra/executor/dream-executor.js +44 -7
- package/dist/server/infra/transport/handlers/provider-handler.js +20 -3
- package/dist/tui/features/auth/api/get-auth-state.js +6 -3
- package/dist/tui/features/auth/components/auth-initializer.js +4 -2
- package/oclif.manifest.json +413 -413
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -1511,50 +1511,70 @@
|
|
|
1511
1511
|
"switch.js"
|
|
1512
1512
|
]
|
|
1513
1513
|
},
|
|
1514
|
-
"
|
|
1514
|
+
"model": {
|
|
1515
1515
|
"aliases": [],
|
|
1516
1516
|
"args": {},
|
|
1517
|
-
"description": "
|
|
1517
|
+
"description": "Show the active model",
|
|
1518
1518
|
"examples": [
|
|
1519
|
-
"<%= config.bin %>
|
|
1520
|
-
"<%= config.bin %>
|
|
1521
|
-
"<%= config.bin %> <%= command.id %> --last 7d",
|
|
1522
|
-
"<%= config.bin %> <%= command.id %> --last 30d",
|
|
1523
|
-
"<%= config.bin %> <%= command.id %> --format json",
|
|
1524
|
-
"<%= config.bin %> <%= command.id %> --format narrative",
|
|
1525
|
-
"<%= config.bin %> <%= command.id %> --since 2026-04-01 --before 2026-04-03"
|
|
1519
|
+
"<%= config.bin %> model",
|
|
1520
|
+
"<%= config.bin %> model --format json"
|
|
1526
1521
|
],
|
|
1527
1522
|
"flags": {
|
|
1528
|
-
"before": {
|
|
1529
|
-
"description": "Entries before (ISO date or relative: 1h, 24h, 7d, 2w)",
|
|
1530
|
-
"name": "before",
|
|
1531
|
-
"hasDynamicHelp": false,
|
|
1532
|
-
"multiple": false,
|
|
1533
|
-
"type": "option"
|
|
1534
|
-
},
|
|
1535
1523
|
"format": {
|
|
1536
|
-
"description": "Output format",
|
|
1524
|
+
"description": "Output format (text or json)",
|
|
1537
1525
|
"name": "format",
|
|
1538
1526
|
"default": "text",
|
|
1539
1527
|
"hasDynamicHelp": false,
|
|
1540
1528
|
"multiple": false,
|
|
1541
1529
|
"options": [
|
|
1542
1530
|
"text",
|
|
1543
|
-
"json"
|
|
1544
|
-
"narrative"
|
|
1531
|
+
"json"
|
|
1545
1532
|
],
|
|
1546
1533
|
"type": "option"
|
|
1547
|
-
}
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1534
|
+
}
|
|
1535
|
+
},
|
|
1536
|
+
"hasDynamicHelp": false,
|
|
1537
|
+
"hiddenAliases": [],
|
|
1538
|
+
"id": "model",
|
|
1539
|
+
"pluginAlias": "byterover-cli",
|
|
1540
|
+
"pluginName": "byterover-cli",
|
|
1541
|
+
"pluginType": "core",
|
|
1542
|
+
"strict": true,
|
|
1543
|
+
"enableJsonFlag": false,
|
|
1544
|
+
"isESM": true,
|
|
1545
|
+
"relativePath": [
|
|
1546
|
+
"dist",
|
|
1547
|
+
"oclif",
|
|
1548
|
+
"commands",
|
|
1549
|
+
"model",
|
|
1550
|
+
"index.js"
|
|
1551
|
+
]
|
|
1552
|
+
},
|
|
1553
|
+
"model:list": {
|
|
1554
|
+
"aliases": [],
|
|
1555
|
+
"args": {},
|
|
1556
|
+
"description": "List available models from all connected providers",
|
|
1557
|
+
"examples": [
|
|
1558
|
+
"<%= config.bin %> model list",
|
|
1559
|
+
"<%= config.bin %> model list --format json"
|
|
1560
|
+
],
|
|
1561
|
+
"flags": {
|
|
1562
|
+
"format": {
|
|
1563
|
+
"description": "Output format (text or json)",
|
|
1564
|
+
"name": "format",
|
|
1565
|
+
"default": "text",
|
|
1551
1566
|
"hasDynamicHelp": false,
|
|
1552
1567
|
"multiple": false,
|
|
1568
|
+
"options": [
|
|
1569
|
+
"text",
|
|
1570
|
+
"json"
|
|
1571
|
+
],
|
|
1553
1572
|
"type": "option"
|
|
1554
1573
|
},
|
|
1555
|
-
"
|
|
1556
|
-
"
|
|
1557
|
-
"
|
|
1574
|
+
"provider": {
|
|
1575
|
+
"char": "p",
|
|
1576
|
+
"description": "Only list models for a specific provider",
|
|
1577
|
+
"name": "provider",
|
|
1558
1578
|
"hasDynamicHelp": false,
|
|
1559
1579
|
"multiple": false,
|
|
1560
1580
|
"type": "option"
|
|
@@ -1562,7 +1582,7 @@
|
|
|
1562
1582
|
},
|
|
1563
1583
|
"hasDynamicHelp": false,
|
|
1564
1584
|
"hiddenAliases": [],
|
|
1565
|
-
"id": "
|
|
1585
|
+
"id": "model:list",
|
|
1566
1586
|
"pluginAlias": "byterover-cli",
|
|
1567
1587
|
"pluginName": "byterover-cli",
|
|
1568
1588
|
"pluginType": "core",
|
|
@@ -1573,49 +1593,28 @@
|
|
|
1573
1593
|
"dist",
|
|
1574
1594
|
"oclif",
|
|
1575
1595
|
"commands",
|
|
1576
|
-
"
|
|
1577
|
-
"
|
|
1596
|
+
"model",
|
|
1597
|
+
"list.js"
|
|
1578
1598
|
]
|
|
1579
1599
|
},
|
|
1580
|
-
"
|
|
1600
|
+
"model:switch": {
|
|
1581
1601
|
"aliases": [],
|
|
1582
1602
|
"args": {
|
|
1583
|
-
"
|
|
1584
|
-
"description": "
|
|
1585
|
-
"name": "
|
|
1586
|
-
"required":
|
|
1603
|
+
"model": {
|
|
1604
|
+
"description": "Model ID to switch to (e.g., claude-sonnet-4-5, gpt-4.1)",
|
|
1605
|
+
"name": "model",
|
|
1606
|
+
"required": true
|
|
1587
1607
|
}
|
|
1588
1608
|
},
|
|
1589
|
-
"description": "
|
|
1609
|
+
"description": "Switch the active model",
|
|
1590
1610
|
"examples": [
|
|
1591
|
-
"<%= config.bin %>
|
|
1592
|
-
"<%= config.bin %>
|
|
1593
|
-
"<%= config.bin %>
|
|
1594
|
-
"<%= config.bin %> <%= command.id %> --status completed",
|
|
1595
|
-
"<%= config.bin %> <%= command.id %> --status completed --status error",
|
|
1596
|
-
"<%= config.bin %> <%= command.id %> --tier 0 --tier 1",
|
|
1597
|
-
"<%= config.bin %> <%= command.id %> --since 1h",
|
|
1598
|
-
"<%= config.bin %> <%= command.id %> --since 2024-01-15",
|
|
1599
|
-
"<%= config.bin %> <%= command.id %> --before 2024-02-01",
|
|
1600
|
-
"<%= config.bin %> <%= command.id %> --detail",
|
|
1601
|
-
"<%= config.bin %> <%= command.id %> --format json"
|
|
1611
|
+
"<%= config.bin %> model switch claude-sonnet-4-5",
|
|
1612
|
+
"<%= config.bin %> model switch gpt-4.1 --provider openai",
|
|
1613
|
+
"<%= config.bin %> model switch claude-sonnet-4-5 --format json"
|
|
1602
1614
|
],
|
|
1603
1615
|
"flags": {
|
|
1604
|
-
"before": {
|
|
1605
|
-
"description": "Show entries started before this time (ISO date or relative: 30m, 1h, 24h, 7d, 2w)",
|
|
1606
|
-
"name": "before",
|
|
1607
|
-
"hasDynamicHelp": false,
|
|
1608
|
-
"multiple": false,
|
|
1609
|
-
"type": "option"
|
|
1610
|
-
},
|
|
1611
|
-
"detail": {
|
|
1612
|
-
"description": "Show matched docs for each entry",
|
|
1613
|
-
"name": "detail",
|
|
1614
|
-
"allowNo": false,
|
|
1615
|
-
"type": "boolean"
|
|
1616
|
-
},
|
|
1617
1616
|
"format": {
|
|
1618
|
-
"description": "Output format",
|
|
1617
|
+
"description": "Output format (text or json)",
|
|
1619
1618
|
"name": "format",
|
|
1620
1619
|
"default": "text",
|
|
1621
1620
|
"hasDynamicHelp": false,
|
|
@@ -1626,52 +1625,18 @@
|
|
|
1626
1625
|
],
|
|
1627
1626
|
"type": "option"
|
|
1628
1627
|
},
|
|
1629
|
-
"
|
|
1630
|
-
"
|
|
1631
|
-
"
|
|
1632
|
-
"
|
|
1633
|
-
"hasDynamicHelp": false,
|
|
1634
|
-
"multiple": false,
|
|
1635
|
-
"type": "option"
|
|
1636
|
-
},
|
|
1637
|
-
"since": {
|
|
1638
|
-
"description": "Show entries started after this time (ISO date or relative: 30m, 1h, 24h, 7d, 2w)",
|
|
1639
|
-
"name": "since",
|
|
1628
|
+
"provider": {
|
|
1629
|
+
"char": "p",
|
|
1630
|
+
"description": "Provider ID (defaults to active provider)",
|
|
1631
|
+
"name": "provider",
|
|
1640
1632
|
"hasDynamicHelp": false,
|
|
1641
1633
|
"multiple": false,
|
|
1642
1634
|
"type": "option"
|
|
1643
|
-
},
|
|
1644
|
-
"status": {
|
|
1645
|
-
"description": "Filter by status (can be repeated). Options: cancelled, completed, error, processing",
|
|
1646
|
-
"name": "status",
|
|
1647
|
-
"hasDynamicHelp": false,
|
|
1648
|
-
"multiple": true,
|
|
1649
|
-
"options": [
|
|
1650
|
-
"cancelled",
|
|
1651
|
-
"completed",
|
|
1652
|
-
"error",
|
|
1653
|
-
"processing"
|
|
1654
|
-
],
|
|
1655
|
-
"type": "option"
|
|
1656
|
-
},
|
|
1657
|
-
"tier": {
|
|
1658
|
-
"description": "Filter by resolution tier (can be repeated). Options: 0, 1, 2, 3, 4",
|
|
1659
|
-
"name": "tier",
|
|
1660
|
-
"hasDynamicHelp": false,
|
|
1661
|
-
"multiple": true,
|
|
1662
|
-
"options": [
|
|
1663
|
-
"0",
|
|
1664
|
-
"1",
|
|
1665
|
-
"2",
|
|
1666
|
-
"3",
|
|
1667
|
-
"4"
|
|
1668
|
-
],
|
|
1669
|
-
"type": "option"
|
|
1670
1635
|
}
|
|
1671
1636
|
},
|
|
1672
1637
|
"hasDynamicHelp": false,
|
|
1673
1638
|
"hiddenAliases": [],
|
|
1674
|
-
"id": "
|
|
1639
|
+
"id": "model:switch",
|
|
1675
1640
|
"pluginAlias": "byterover-cli",
|
|
1676
1641
|
"pluginName": "byterover-cli",
|
|
1677
1642
|
"pluginType": "core",
|
|
@@ -1682,8 +1647,8 @@
|
|
|
1682
1647
|
"dist",
|
|
1683
1648
|
"oclif",
|
|
1684
1649
|
"commands",
|
|
1685
|
-
"
|
|
1686
|
-
"
|
|
1650
|
+
"model",
|
|
1651
|
+
"switch.js"
|
|
1687
1652
|
]
|
|
1688
1653
|
},
|
|
1689
1654
|
"review:approve": {
|
|
@@ -1891,31 +1856,33 @@
|
|
|
1891
1856
|
"reject.js"
|
|
1892
1857
|
]
|
|
1893
1858
|
},
|
|
1894
|
-
"
|
|
1859
|
+
"source:add": {
|
|
1895
1860
|
"aliases": [],
|
|
1896
|
-
"args": {
|
|
1897
|
-
|
|
1861
|
+
"args": {
|
|
1862
|
+
"path": {
|
|
1863
|
+
"description": "Path to the target project containing .brv/",
|
|
1864
|
+
"name": "path",
|
|
1865
|
+
"required": true
|
|
1866
|
+
}
|
|
1867
|
+
},
|
|
1868
|
+
"description": "Add a read-only knowledge source from another project's context tree",
|
|
1898
1869
|
"examples": [
|
|
1899
|
-
"<%= config.bin %>
|
|
1900
|
-
"<%= config.bin %>
|
|
1870
|
+
"<%= config.bin %> <%= command.id %> /path/to/shared-lib",
|
|
1871
|
+
"<%= config.bin %> <%= command.id %> /path/to/shared-lib --alias shared"
|
|
1901
1872
|
],
|
|
1902
1873
|
"flags": {
|
|
1903
|
-
"
|
|
1904
|
-
"description": "
|
|
1905
|
-
"name": "
|
|
1906
|
-
"
|
|
1874
|
+
"alias": {
|
|
1875
|
+
"description": "Custom alias for the source (defaults to directory name)",
|
|
1876
|
+
"name": "alias",
|
|
1877
|
+
"required": false,
|
|
1907
1878
|
"hasDynamicHelp": false,
|
|
1908
1879
|
"multiple": false,
|
|
1909
|
-
"options": [
|
|
1910
|
-
"text",
|
|
1911
|
-
"json"
|
|
1912
|
-
],
|
|
1913
1880
|
"type": "option"
|
|
1914
1881
|
}
|
|
1915
1882
|
},
|
|
1916
1883
|
"hasDynamicHelp": false,
|
|
1917
1884
|
"hiddenAliases": [],
|
|
1918
|
-
"id": "
|
|
1885
|
+
"id": "source:add",
|
|
1919
1886
|
"pluginAlias": "byterover-cli",
|
|
1920
1887
|
"pluginName": "byterover-cli",
|
|
1921
1888
|
"pluginType": "core",
|
|
@@ -1926,43 +1893,21 @@
|
|
|
1926
1893
|
"dist",
|
|
1927
1894
|
"oclif",
|
|
1928
1895
|
"commands",
|
|
1929
|
-
"
|
|
1930
|
-
"
|
|
1896
|
+
"source",
|
|
1897
|
+
"add.js"
|
|
1931
1898
|
]
|
|
1932
1899
|
},
|
|
1933
|
-
"
|
|
1900
|
+
"source": {
|
|
1934
1901
|
"aliases": [],
|
|
1935
1902
|
"args": {},
|
|
1936
|
-
"description": "
|
|
1903
|
+
"description": "Manage knowledge sources (read-only references to other projects)",
|
|
1937
1904
|
"examples": [
|
|
1938
|
-
"<%= config.bin %>
|
|
1939
|
-
"<%= config.bin %> model list --format json"
|
|
1905
|
+
"<%= config.bin %> <%= command.id %> --help"
|
|
1940
1906
|
],
|
|
1941
|
-
"flags": {
|
|
1942
|
-
"format": {
|
|
1943
|
-
"description": "Output format (text or json)",
|
|
1944
|
-
"name": "format",
|
|
1945
|
-
"default": "text",
|
|
1946
|
-
"hasDynamicHelp": false,
|
|
1947
|
-
"multiple": false,
|
|
1948
|
-
"options": [
|
|
1949
|
-
"text",
|
|
1950
|
-
"json"
|
|
1951
|
-
],
|
|
1952
|
-
"type": "option"
|
|
1953
|
-
},
|
|
1954
|
-
"provider": {
|
|
1955
|
-
"char": "p",
|
|
1956
|
-
"description": "Only list models for a specific provider",
|
|
1957
|
-
"name": "provider",
|
|
1958
|
-
"hasDynamicHelp": false,
|
|
1959
|
-
"multiple": false,
|
|
1960
|
-
"type": "option"
|
|
1961
|
-
}
|
|
1962
|
-
},
|
|
1907
|
+
"flags": {},
|
|
1963
1908
|
"hasDynamicHelp": false,
|
|
1964
1909
|
"hiddenAliases": [],
|
|
1965
|
-
"id": "
|
|
1910
|
+
"id": "source",
|
|
1966
1911
|
"pluginAlias": "byterover-cli",
|
|
1967
1912
|
"pluginName": "byterover-cli",
|
|
1968
1913
|
"pluginType": "core",
|
|
@@ -1973,50 +1918,21 @@
|
|
|
1973
1918
|
"dist",
|
|
1974
1919
|
"oclif",
|
|
1975
1920
|
"commands",
|
|
1976
|
-
"
|
|
1977
|
-
"
|
|
1921
|
+
"source",
|
|
1922
|
+
"index.js"
|
|
1978
1923
|
]
|
|
1979
1924
|
},
|
|
1980
|
-
"
|
|
1925
|
+
"source:list": {
|
|
1981
1926
|
"aliases": [],
|
|
1982
|
-
"args": {
|
|
1983
|
-
|
|
1984
|
-
"description": "Model ID to switch to (e.g., claude-sonnet-4-5, gpt-4.1)",
|
|
1985
|
-
"name": "model",
|
|
1986
|
-
"required": true
|
|
1987
|
-
}
|
|
1988
|
-
},
|
|
1989
|
-
"description": "Switch the active model",
|
|
1927
|
+
"args": {},
|
|
1928
|
+
"description": "List all knowledge sources and their status",
|
|
1990
1929
|
"examples": [
|
|
1991
|
-
"<%= config.bin %>
|
|
1992
|
-
"<%= config.bin %> model switch gpt-4.1 --provider openai",
|
|
1993
|
-
"<%= config.bin %> model switch claude-sonnet-4-5 --format json"
|
|
1930
|
+
"<%= config.bin %> <%= command.id %>"
|
|
1994
1931
|
],
|
|
1995
|
-
"flags": {
|
|
1996
|
-
"format": {
|
|
1997
|
-
"description": "Output format (text or json)",
|
|
1998
|
-
"name": "format",
|
|
1999
|
-
"default": "text",
|
|
2000
|
-
"hasDynamicHelp": false,
|
|
2001
|
-
"multiple": false,
|
|
2002
|
-
"options": [
|
|
2003
|
-
"text",
|
|
2004
|
-
"json"
|
|
2005
|
-
],
|
|
2006
|
-
"type": "option"
|
|
2007
|
-
},
|
|
2008
|
-
"provider": {
|
|
2009
|
-
"char": "p",
|
|
2010
|
-
"description": "Provider ID (defaults to active provider)",
|
|
2011
|
-
"name": "provider",
|
|
2012
|
-
"hasDynamicHelp": false,
|
|
2013
|
-
"multiple": false,
|
|
2014
|
-
"type": "option"
|
|
2015
|
-
}
|
|
2016
|
-
},
|
|
1932
|
+
"flags": {},
|
|
2017
1933
|
"hasDynamicHelp": false,
|
|
2018
1934
|
"hiddenAliases": [],
|
|
2019
|
-
"id": "
|
|
1935
|
+
"id": "source:list",
|
|
2020
1936
|
"pluginAlias": "byterover-cli",
|
|
2021
1937
|
"pluginName": "byterover-cli",
|
|
2022
1938
|
"pluginType": "core",
|
|
@@ -2027,37 +1943,28 @@
|
|
|
2027
1943
|
"dist",
|
|
2028
1944
|
"oclif",
|
|
2029
1945
|
"commands",
|
|
2030
|
-
"
|
|
2031
|
-
"
|
|
1946
|
+
"source",
|
|
1947
|
+
"list.js"
|
|
2032
1948
|
]
|
|
2033
1949
|
},
|
|
2034
|
-
"source:
|
|
1950
|
+
"source:remove": {
|
|
2035
1951
|
"aliases": [],
|
|
2036
1952
|
"args": {
|
|
2037
|
-
"
|
|
2038
|
-
"description": "
|
|
2039
|
-
"name": "
|
|
1953
|
+
"aliasOrPath": {
|
|
1954
|
+
"description": "Alias or path of the knowledge source to remove",
|
|
1955
|
+
"name": "aliasOrPath",
|
|
2040
1956
|
"required": true
|
|
2041
1957
|
}
|
|
2042
1958
|
},
|
|
2043
|
-
"description": "
|
|
1959
|
+
"description": "Remove a knowledge source",
|
|
2044
1960
|
"examples": [
|
|
2045
|
-
"<%= config.bin %> <%= command.id %>
|
|
2046
|
-
"<%= config.bin %> <%= command.id %> /path/to/shared-lib
|
|
1961
|
+
"<%= config.bin %> <%= command.id %> shared-lib",
|
|
1962
|
+
"<%= config.bin %> <%= command.id %> /path/to/shared-lib"
|
|
2047
1963
|
],
|
|
2048
|
-
"flags": {
|
|
2049
|
-
"alias": {
|
|
2050
|
-
"description": "Custom alias for the source (defaults to directory name)",
|
|
2051
|
-
"name": "alias",
|
|
2052
|
-
"required": false,
|
|
2053
|
-
"hasDynamicHelp": false,
|
|
2054
|
-
"multiple": false,
|
|
2055
|
-
"type": "option"
|
|
2056
|
-
}
|
|
2057
|
-
},
|
|
1964
|
+
"flags": {},
|
|
2058
1965
|
"hasDynamicHelp": false,
|
|
2059
1966
|
"hiddenAliases": [],
|
|
2060
|
-
"id": "source:
|
|
1967
|
+
"id": "source:remove",
|
|
2061
1968
|
"pluginAlias": "byterover-cli",
|
|
2062
1969
|
"pluginName": "byterover-cli",
|
|
2063
1970
|
"pluginType": "core",
|
|
@@ -2069,20 +1976,34 @@
|
|
|
2069
1976
|
"oclif",
|
|
2070
1977
|
"commands",
|
|
2071
1978
|
"source",
|
|
2072
|
-
"
|
|
1979
|
+
"remove.js"
|
|
2073
1980
|
]
|
|
2074
1981
|
},
|
|
2075
|
-
"
|
|
1982
|
+
"space:list": {
|
|
2076
1983
|
"aliases": [],
|
|
2077
1984
|
"args": {},
|
|
2078
|
-
"description": "
|
|
1985
|
+
"description": "List all teams and spaces (deprecated)",
|
|
2079
1986
|
"examples": [
|
|
2080
|
-
"<%= config.bin %>
|
|
1987
|
+
"<%= config.bin %> space list"
|
|
2081
1988
|
],
|
|
2082
|
-
"flags": {
|
|
1989
|
+
"flags": {
|
|
1990
|
+
"format": {
|
|
1991
|
+
"char": "f",
|
|
1992
|
+
"description": "Output format",
|
|
1993
|
+
"name": "format",
|
|
1994
|
+
"default": "text",
|
|
1995
|
+
"hasDynamicHelp": false,
|
|
1996
|
+
"multiple": false,
|
|
1997
|
+
"options": [
|
|
1998
|
+
"text",
|
|
1999
|
+
"json"
|
|
2000
|
+
],
|
|
2001
|
+
"type": "option"
|
|
2002
|
+
}
|
|
2003
|
+
},
|
|
2083
2004
|
"hasDynamicHelp": false,
|
|
2084
2005
|
"hiddenAliases": [],
|
|
2085
|
-
"id": "
|
|
2006
|
+
"id": "space:list",
|
|
2086
2007
|
"pluginAlias": "byterover-cli",
|
|
2087
2008
|
"pluginName": "byterover-cli",
|
|
2088
2009
|
"pluginType": "core",
|
|
@@ -2093,53 +2014,35 @@
|
|
|
2093
2014
|
"dist",
|
|
2094
2015
|
"oclif",
|
|
2095
2016
|
"commands",
|
|
2096
|
-
"
|
|
2097
|
-
"
|
|
2017
|
+
"space",
|
|
2018
|
+
"list.js"
|
|
2098
2019
|
]
|
|
2099
2020
|
},
|
|
2100
|
-
"
|
|
2021
|
+
"space:switch": {
|
|
2101
2022
|
"aliases": [],
|
|
2102
2023
|
"args": {},
|
|
2103
|
-
"description": "
|
|
2024
|
+
"description": "Switch to a different space (deprecated)",
|
|
2104
2025
|
"examples": [
|
|
2105
|
-
"<%= config.bin %>
|
|
2026
|
+
"<%= config.bin %> space switch"
|
|
2106
2027
|
],
|
|
2107
|
-
"flags": {
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
"commands",
|
|
2121
|
-
"source",
|
|
2122
|
-
"list.js"
|
|
2123
|
-
]
|
|
2124
|
-
},
|
|
2125
|
-
"source:remove": {
|
|
2126
|
-
"aliases": [],
|
|
2127
|
-
"args": {
|
|
2128
|
-
"aliasOrPath": {
|
|
2129
|
-
"description": "Alias or path of the knowledge source to remove",
|
|
2130
|
-
"name": "aliasOrPath",
|
|
2131
|
-
"required": true
|
|
2028
|
+
"flags": {
|
|
2029
|
+
"format": {
|
|
2030
|
+
"char": "f",
|
|
2031
|
+
"description": "Output format",
|
|
2032
|
+
"name": "format",
|
|
2033
|
+
"default": "text",
|
|
2034
|
+
"hasDynamicHelp": false,
|
|
2035
|
+
"multiple": false,
|
|
2036
|
+
"options": [
|
|
2037
|
+
"text",
|
|
2038
|
+
"json"
|
|
2039
|
+
],
|
|
2040
|
+
"type": "option"
|
|
2132
2041
|
}
|
|
2133
2042
|
},
|
|
2134
|
-
"description": "Remove a knowledge source",
|
|
2135
|
-
"examples": [
|
|
2136
|
-
"<%= config.bin %> <%= command.id %> shared-lib",
|
|
2137
|
-
"<%= config.bin %> <%= command.id %> /path/to/shared-lib"
|
|
2138
|
-
],
|
|
2139
|
-
"flags": {},
|
|
2140
2043
|
"hasDynamicHelp": false,
|
|
2141
2044
|
"hiddenAliases": [],
|
|
2142
|
-
"id": "
|
|
2045
|
+
"id": "space:switch",
|
|
2143
2046
|
"pluginAlias": "byterover-cli",
|
|
2144
2047
|
"pluginName": "byterover-cli",
|
|
2145
2048
|
"pluginType": "core",
|
|
@@ -2150,20 +2053,32 @@
|
|
|
2150
2053
|
"dist",
|
|
2151
2054
|
"oclif",
|
|
2152
2055
|
"commands",
|
|
2153
|
-
"
|
|
2154
|
-
"
|
|
2056
|
+
"space",
|
|
2057
|
+
"switch.js"
|
|
2155
2058
|
]
|
|
2156
2059
|
},
|
|
2157
|
-
"
|
|
2060
|
+
"query-log:summary": {
|
|
2158
2061
|
"aliases": [],
|
|
2159
2062
|
"args": {},
|
|
2160
|
-
"description": "
|
|
2063
|
+
"description": "View aggregated query recall metrics (coverage, cache hit rate, top topics)",
|
|
2161
2064
|
"examples": [
|
|
2162
|
-
"<%= config.bin %>
|
|
2065
|
+
"<%= config.bin %> <%= command.id %>",
|
|
2066
|
+
"<%= config.bin %> <%= command.id %> --last 24h",
|
|
2067
|
+
"<%= config.bin %> <%= command.id %> --last 7d",
|
|
2068
|
+
"<%= config.bin %> <%= command.id %> --last 30d",
|
|
2069
|
+
"<%= config.bin %> <%= command.id %> --format json",
|
|
2070
|
+
"<%= config.bin %> <%= command.id %> --format narrative",
|
|
2071
|
+
"<%= config.bin %> <%= command.id %> --since 2026-04-01 --before 2026-04-03"
|
|
2163
2072
|
],
|
|
2164
2073
|
"flags": {
|
|
2074
|
+
"before": {
|
|
2075
|
+
"description": "Entries before (ISO date or relative: 1h, 24h, 7d, 2w)",
|
|
2076
|
+
"name": "before",
|
|
2077
|
+
"hasDynamicHelp": false,
|
|
2078
|
+
"multiple": false,
|
|
2079
|
+
"type": "option"
|
|
2080
|
+
},
|
|
2165
2081
|
"format": {
|
|
2166
|
-
"char": "f",
|
|
2167
2082
|
"description": "Output format",
|
|
2168
2083
|
"name": "format",
|
|
2169
2084
|
"default": "text",
|
|
@@ -2171,14 +2086,29 @@
|
|
|
2171
2086
|
"multiple": false,
|
|
2172
2087
|
"options": [
|
|
2173
2088
|
"text",
|
|
2174
|
-
"json"
|
|
2089
|
+
"json",
|
|
2090
|
+
"narrative"
|
|
2175
2091
|
],
|
|
2176
2092
|
"type": "option"
|
|
2093
|
+
},
|
|
2094
|
+
"last": {
|
|
2095
|
+
"description": "Relative time window (e.g., 1h, 24h, 7d, 30d). Default: 24h. Takes precedence over --since.",
|
|
2096
|
+
"name": "last",
|
|
2097
|
+
"hasDynamicHelp": false,
|
|
2098
|
+
"multiple": false,
|
|
2099
|
+
"type": "option"
|
|
2100
|
+
},
|
|
2101
|
+
"since": {
|
|
2102
|
+
"description": "Entries after (ISO date or relative: 1h, 24h, 7d, 2w)",
|
|
2103
|
+
"name": "since",
|
|
2104
|
+
"hasDynamicHelp": false,
|
|
2105
|
+
"multiple": false,
|
|
2106
|
+
"type": "option"
|
|
2177
2107
|
}
|
|
2178
2108
|
},
|
|
2179
2109
|
"hasDynamicHelp": false,
|
|
2180
2110
|
"hiddenAliases": [],
|
|
2181
|
-
"id": "
|
|
2111
|
+
"id": "query-log:summary",
|
|
2182
2112
|
"pluginAlias": "byterover-cli",
|
|
2183
2113
|
"pluginName": "byterover-cli",
|
|
2184
2114
|
"pluginType": "core",
|
|
@@ -2189,20 +2119,48 @@
|
|
|
2189
2119
|
"dist",
|
|
2190
2120
|
"oclif",
|
|
2191
2121
|
"commands",
|
|
2192
|
-
"
|
|
2193
|
-
"
|
|
2122
|
+
"query-log",
|
|
2123
|
+
"summary.js"
|
|
2194
2124
|
]
|
|
2195
2125
|
},
|
|
2196
|
-
"
|
|
2126
|
+
"query-log:view": {
|
|
2197
2127
|
"aliases": [],
|
|
2198
|
-
"args": {
|
|
2199
|
-
|
|
2128
|
+
"args": {
|
|
2129
|
+
"id": {
|
|
2130
|
+
"description": "Query log entry ID to view in detail",
|
|
2131
|
+
"name": "id",
|
|
2132
|
+
"required": false
|
|
2133
|
+
}
|
|
2134
|
+
},
|
|
2135
|
+
"description": "View query log history",
|
|
2200
2136
|
"examples": [
|
|
2201
|
-
"<%= config.bin %>
|
|
2137
|
+
"<%= config.bin %> <%= command.id %>",
|
|
2138
|
+
"<%= config.bin %> <%= command.id %> qry-1712345678901",
|
|
2139
|
+
"<%= config.bin %> <%= command.id %> --limit 20",
|
|
2140
|
+
"<%= config.bin %> <%= command.id %> --status completed",
|
|
2141
|
+
"<%= config.bin %> <%= command.id %> --status completed --status error",
|
|
2142
|
+
"<%= config.bin %> <%= command.id %> --tier 0 --tier 1",
|
|
2143
|
+
"<%= config.bin %> <%= command.id %> --since 1h",
|
|
2144
|
+
"<%= config.bin %> <%= command.id %> --since 2024-01-15",
|
|
2145
|
+
"<%= config.bin %> <%= command.id %> --before 2024-02-01",
|
|
2146
|
+
"<%= config.bin %> <%= command.id %> --detail",
|
|
2147
|
+
"<%= config.bin %> <%= command.id %> --format json"
|
|
2202
2148
|
],
|
|
2203
2149
|
"flags": {
|
|
2150
|
+
"before": {
|
|
2151
|
+
"description": "Show entries started before this time (ISO date or relative: 30m, 1h, 24h, 7d, 2w)",
|
|
2152
|
+
"name": "before",
|
|
2153
|
+
"hasDynamicHelp": false,
|
|
2154
|
+
"multiple": false,
|
|
2155
|
+
"type": "option"
|
|
2156
|
+
},
|
|
2157
|
+
"detail": {
|
|
2158
|
+
"description": "Show matched docs for each entry",
|
|
2159
|
+
"name": "detail",
|
|
2160
|
+
"allowNo": false,
|
|
2161
|
+
"type": "boolean"
|
|
2162
|
+
},
|
|
2204
2163
|
"format": {
|
|
2205
|
-
"char": "f",
|
|
2206
2164
|
"description": "Output format",
|
|
2207
2165
|
"name": "format",
|
|
2208
2166
|
"default": "text",
|
|
@@ -2213,11 +2171,53 @@
|
|
|
2213
2171
|
"json"
|
|
2214
2172
|
],
|
|
2215
2173
|
"type": "option"
|
|
2174
|
+
},
|
|
2175
|
+
"limit": {
|
|
2176
|
+
"description": "Maximum number of log entries to display",
|
|
2177
|
+
"name": "limit",
|
|
2178
|
+
"default": 10,
|
|
2179
|
+
"hasDynamicHelp": false,
|
|
2180
|
+
"multiple": false,
|
|
2181
|
+
"type": "option"
|
|
2182
|
+
},
|
|
2183
|
+
"since": {
|
|
2184
|
+
"description": "Show entries started after this time (ISO date or relative: 30m, 1h, 24h, 7d, 2w)",
|
|
2185
|
+
"name": "since",
|
|
2186
|
+
"hasDynamicHelp": false,
|
|
2187
|
+
"multiple": false,
|
|
2188
|
+
"type": "option"
|
|
2189
|
+
},
|
|
2190
|
+
"status": {
|
|
2191
|
+
"description": "Filter by status (can be repeated). Options: cancelled, completed, error, processing",
|
|
2192
|
+
"name": "status",
|
|
2193
|
+
"hasDynamicHelp": false,
|
|
2194
|
+
"multiple": true,
|
|
2195
|
+
"options": [
|
|
2196
|
+
"cancelled",
|
|
2197
|
+
"completed",
|
|
2198
|
+
"error",
|
|
2199
|
+
"processing"
|
|
2200
|
+
],
|
|
2201
|
+
"type": "option"
|
|
2202
|
+
},
|
|
2203
|
+
"tier": {
|
|
2204
|
+
"description": "Filter by resolution tier (can be repeated). Options: 0, 1, 2, 3, 4",
|
|
2205
|
+
"name": "tier",
|
|
2206
|
+
"hasDynamicHelp": false,
|
|
2207
|
+
"multiple": true,
|
|
2208
|
+
"options": [
|
|
2209
|
+
"0",
|
|
2210
|
+
"1",
|
|
2211
|
+
"2",
|
|
2212
|
+
"3",
|
|
2213
|
+
"4"
|
|
2214
|
+
],
|
|
2215
|
+
"type": "option"
|
|
2216
2216
|
}
|
|
2217
2217
|
},
|
|
2218
2218
|
"hasDynamicHelp": false,
|
|
2219
2219
|
"hiddenAliases": [],
|
|
2220
|
-
"id": "
|
|
2220
|
+
"id": "query-log:view",
|
|
2221
2221
|
"pluginAlias": "byterover-cli",
|
|
2222
2222
|
"pluginName": "byterover-cli",
|
|
2223
2223
|
"pluginType": "core",
|
|
@@ -2228,36 +2228,51 @@
|
|
|
2228
2228
|
"dist",
|
|
2229
2229
|
"oclif",
|
|
2230
2230
|
"commands",
|
|
2231
|
-
"
|
|
2232
|
-
"
|
|
2231
|
+
"query-log",
|
|
2232
|
+
"view.js"
|
|
2233
2233
|
]
|
|
2234
2234
|
},
|
|
2235
|
-
"
|
|
2235
|
+
"swarm:curate": {
|
|
2236
2236
|
"aliases": [],
|
|
2237
2237
|
"args": {
|
|
2238
|
-
"
|
|
2239
|
-
"description": "
|
|
2240
|
-
"name": "
|
|
2241
|
-
"required":
|
|
2238
|
+
"content": {
|
|
2239
|
+
"description": "Knowledge content to store in a swarm provider",
|
|
2240
|
+
"name": "content",
|
|
2241
|
+
"required": true
|
|
2242
2242
|
}
|
|
2243
2243
|
},
|
|
2244
|
-
"description": "
|
|
2244
|
+
"description": "Store knowledge in a swarm provider (GBrain, local markdown)",
|
|
2245
2245
|
"examples": [
|
|
2246
|
-
"<%= config.bin %>
|
|
2247
|
-
"<%= config.bin %>
|
|
2248
|
-
"<%= config.bin %>
|
|
2246
|
+
"<%= config.bin %> swarm curate \"Dario Amodei is CEO of Anthropic\"",
|
|
2247
|
+
"<%= config.bin %> swarm curate \"meeting notes: decided on JWT\" --provider local-markdown:notes",
|
|
2248
|
+
"<%= config.bin %> swarm curate \"Architecture uses event sourcing\" --provider gbrain"
|
|
2249
2249
|
],
|
|
2250
2250
|
"flags": {
|
|
2251
|
-
"
|
|
2252
|
-
"
|
|
2253
|
-
"
|
|
2254
|
-
"
|
|
2255
|
-
"
|
|
2251
|
+
"format": {
|
|
2252
|
+
"char": "f",
|
|
2253
|
+
"description": "Output format",
|
|
2254
|
+
"name": "format",
|
|
2255
|
+
"default": "text",
|
|
2256
|
+
"hasDynamicHelp": false,
|
|
2257
|
+
"multiple": false,
|
|
2258
|
+
"options": [
|
|
2259
|
+
"text",
|
|
2260
|
+
"json"
|
|
2261
|
+
],
|
|
2262
|
+
"type": "option"
|
|
2263
|
+
},
|
|
2264
|
+
"provider": {
|
|
2265
|
+
"char": "p",
|
|
2266
|
+
"description": "Target provider ID (e.g., gbrain, local-markdown:notes)",
|
|
2267
|
+
"name": "provider",
|
|
2268
|
+
"hasDynamicHelp": false,
|
|
2269
|
+
"multiple": false,
|
|
2270
|
+
"type": "option"
|
|
2256
2271
|
}
|
|
2257
2272
|
},
|
|
2258
2273
|
"hasDynamicHelp": false,
|
|
2259
2274
|
"hiddenAliases": [],
|
|
2260
|
-
"id": "
|
|
2275
|
+
"id": "swarm:curate",
|
|
2261
2276
|
"pluginAlias": "byterover-cli",
|
|
2262
2277
|
"pluginName": "byterover-cli",
|
|
2263
2278
|
"pluginType": "core",
|
|
@@ -2268,21 +2283,21 @@
|
|
|
2268
2283
|
"dist",
|
|
2269
2284
|
"oclif",
|
|
2270
2285
|
"commands",
|
|
2271
|
-
"
|
|
2272
|
-
"
|
|
2286
|
+
"swarm",
|
|
2287
|
+
"curate.js"
|
|
2273
2288
|
]
|
|
2274
2289
|
},
|
|
2275
|
-
"
|
|
2290
|
+
"swarm:onboard": {
|
|
2276
2291
|
"aliases": [],
|
|
2277
2292
|
"args": {},
|
|
2278
|
-
"description": "
|
|
2293
|
+
"description": "Set up memory swarm with interactive onboarding wizard",
|
|
2279
2294
|
"examples": [
|
|
2280
|
-
"<%= config.bin %>
|
|
2295
|
+
"<%= config.bin %> swarm onboard"
|
|
2281
2296
|
],
|
|
2282
2297
|
"flags": {},
|
|
2283
2298
|
"hasDynamicHelp": false,
|
|
2284
2299
|
"hiddenAliases": [],
|
|
2285
|
-
"id": "
|
|
2300
|
+
"id": "swarm:onboard",
|
|
2286
2301
|
"pluginAlias": "byterover-cli",
|
|
2287
2302
|
"pluginName": "byterover-cli",
|
|
2288
2303
|
"pluginType": "core",
|
|
@@ -2293,21 +2308,56 @@
|
|
|
2293
2308
|
"dist",
|
|
2294
2309
|
"oclif",
|
|
2295
2310
|
"commands",
|
|
2296
|
-
"
|
|
2297
|
-
"
|
|
2311
|
+
"swarm",
|
|
2312
|
+
"onboard.js"
|
|
2298
2313
|
]
|
|
2299
2314
|
},
|
|
2300
|
-
"
|
|
2315
|
+
"swarm:query": {
|
|
2301
2316
|
"aliases": [],
|
|
2302
|
-
"args": {
|
|
2303
|
-
|
|
2317
|
+
"args": {
|
|
2318
|
+
"query": {
|
|
2319
|
+
"description": "Natural language query to search across memory providers",
|
|
2320
|
+
"name": "query",
|
|
2321
|
+
"required": true
|
|
2322
|
+
}
|
|
2323
|
+
},
|
|
2324
|
+
"description": "Query the memory swarm across all active providers",
|
|
2304
2325
|
"examples": [
|
|
2305
|
-
"<%= config.bin %>
|
|
2326
|
+
"<%= config.bin %> swarm query \"auth tokens\"",
|
|
2327
|
+
"<%= config.bin %> swarm query \"what changed yesterday\" --format json"
|
|
2306
2328
|
],
|
|
2307
|
-
"flags": {
|
|
2329
|
+
"flags": {
|
|
2330
|
+
"explain": {
|
|
2331
|
+
"description": "Show classification, routing, and enrichment details (ignored with --format json, which always includes all metadata)",
|
|
2332
|
+
"name": "explain",
|
|
2333
|
+
"allowNo": false,
|
|
2334
|
+
"type": "boolean"
|
|
2335
|
+
},
|
|
2336
|
+
"format": {
|
|
2337
|
+
"char": "f",
|
|
2338
|
+
"description": "Output format",
|
|
2339
|
+
"name": "format",
|
|
2340
|
+
"default": "text",
|
|
2341
|
+
"hasDynamicHelp": false,
|
|
2342
|
+
"multiple": false,
|
|
2343
|
+
"options": [
|
|
2344
|
+
"text",
|
|
2345
|
+
"json"
|
|
2346
|
+
],
|
|
2347
|
+
"type": "option"
|
|
2348
|
+
},
|
|
2349
|
+
"max-results": {
|
|
2350
|
+
"char": "n",
|
|
2351
|
+
"description": "Maximum number of results",
|
|
2352
|
+
"name": "max-results",
|
|
2353
|
+
"hasDynamicHelp": false,
|
|
2354
|
+
"multiple": false,
|
|
2355
|
+
"type": "option"
|
|
2356
|
+
}
|
|
2357
|
+
},
|
|
2308
2358
|
"hasDynamicHelp": false,
|
|
2309
2359
|
"hiddenAliases": [],
|
|
2310
|
-
"id": "
|
|
2360
|
+
"id": "swarm:query",
|
|
2311
2361
|
"pluginAlias": "byterover-cli",
|
|
2312
2362
|
"pluginName": "byterover-cli",
|
|
2313
2363
|
"pluginType": "core",
|
|
@@ -2318,28 +2368,36 @@
|
|
|
2318
2368
|
"dist",
|
|
2319
2369
|
"oclif",
|
|
2320
2370
|
"commands",
|
|
2321
|
-
"
|
|
2322
|
-
"
|
|
2371
|
+
"swarm",
|
|
2372
|
+
"query.js"
|
|
2323
2373
|
]
|
|
2324
2374
|
},
|
|
2325
|
-
"
|
|
2375
|
+
"swarm:status": {
|
|
2326
2376
|
"aliases": [],
|
|
2327
|
-
"args": {
|
|
2328
|
-
|
|
2329
|
-
"description": "Path to the worktree to remove (defaults to cwd)",
|
|
2330
|
-
"name": "path",
|
|
2331
|
-
"required": false
|
|
2332
|
-
}
|
|
2333
|
-
},
|
|
2334
|
-
"description": "Remove a worktree registration and its .brv pointer",
|
|
2377
|
+
"args": {},
|
|
2378
|
+
"description": "Show memory swarm provider health and connection status",
|
|
2335
2379
|
"examples": [
|
|
2336
|
-
"<%= config.bin %>
|
|
2337
|
-
"<%= config.bin %>
|
|
2380
|
+
"<%= config.bin %> swarm status",
|
|
2381
|
+
"<%= config.bin %> swarm status --format json"
|
|
2338
2382
|
],
|
|
2339
|
-
"flags": {
|
|
2383
|
+
"flags": {
|
|
2384
|
+
"format": {
|
|
2385
|
+
"char": "f",
|
|
2386
|
+
"description": "Output format",
|
|
2387
|
+
"name": "format",
|
|
2388
|
+
"default": "text",
|
|
2389
|
+
"hasDynamicHelp": false,
|
|
2390
|
+
"multiple": false,
|
|
2391
|
+
"options": [
|
|
2392
|
+
"text",
|
|
2393
|
+
"json"
|
|
2394
|
+
],
|
|
2395
|
+
"type": "option"
|
|
2396
|
+
}
|
|
2397
|
+
},
|
|
2340
2398
|
"hasDynamicHelp": false,
|
|
2341
2399
|
"hiddenAliases": [],
|
|
2342
|
-
"id": "
|
|
2400
|
+
"id": "swarm:status",
|
|
2343
2401
|
"pluginAlias": "byterover-cli",
|
|
2344
2402
|
"pluginName": "byterover-cli",
|
|
2345
2403
|
"pluginType": "core",
|
|
@@ -2350,8 +2408,8 @@
|
|
|
2350
2408
|
"dist",
|
|
2351
2409
|
"oclif",
|
|
2352
2410
|
"commands",
|
|
2353
|
-
"
|
|
2354
|
-
"
|
|
2411
|
+
"swarm",
|
|
2412
|
+
"status.js"
|
|
2355
2413
|
]
|
|
2356
2414
|
},
|
|
2357
2415
|
"vc:add": {
|
|
@@ -2997,47 +3055,32 @@
|
|
|
2997
3055
|
"status.js"
|
|
2998
3056
|
]
|
|
2999
3057
|
},
|
|
3000
|
-
"
|
|
3058
|
+
"worktree:add": {
|
|
3001
3059
|
"aliases": [],
|
|
3002
3060
|
"args": {
|
|
3003
|
-
"
|
|
3004
|
-
"description": "
|
|
3005
|
-
"name": "
|
|
3006
|
-
"required":
|
|
3061
|
+
"path": {
|
|
3062
|
+
"description": "Path to the directory to register as a worktree (relative or absolute)",
|
|
3063
|
+
"name": "path",
|
|
3064
|
+
"required": false
|
|
3007
3065
|
}
|
|
3008
3066
|
},
|
|
3009
|
-
"description": "
|
|
3067
|
+
"description": "Register a directory as a worktree of this project",
|
|
3010
3068
|
"examples": [
|
|
3011
|
-
"<%= config.bin %>
|
|
3012
|
-
"<%= config.bin %>
|
|
3013
|
-
"<%= config.bin %>
|
|
3069
|
+
"<%= config.bin %> <%= command.id %> packages/api",
|
|
3070
|
+
"<%= config.bin %> <%= command.id %> ../other-checkout",
|
|
3071
|
+
"<%= config.bin %> <%= command.id %> (auto-detect parent from subdirectory)"
|
|
3014
3072
|
],
|
|
3015
3073
|
"flags": {
|
|
3016
|
-
"
|
|
3017
|
-
"
|
|
3018
|
-
"
|
|
3019
|
-
"
|
|
3020
|
-
"
|
|
3021
|
-
"hasDynamicHelp": false,
|
|
3022
|
-
"multiple": false,
|
|
3023
|
-
"options": [
|
|
3024
|
-
"text",
|
|
3025
|
-
"json"
|
|
3026
|
-
],
|
|
3027
|
-
"type": "option"
|
|
3028
|
-
},
|
|
3029
|
-
"provider": {
|
|
3030
|
-
"char": "p",
|
|
3031
|
-
"description": "Target provider ID (e.g., gbrain, local-markdown:notes)",
|
|
3032
|
-
"name": "provider",
|
|
3033
|
-
"hasDynamicHelp": false,
|
|
3034
|
-
"multiple": false,
|
|
3035
|
-
"type": "option"
|
|
3074
|
+
"force": {
|
|
3075
|
+
"description": "Replace existing .brv/ directory in target with a worktree pointer",
|
|
3076
|
+
"name": "force",
|
|
3077
|
+
"allowNo": false,
|
|
3078
|
+
"type": "boolean"
|
|
3036
3079
|
}
|
|
3037
3080
|
},
|
|
3038
3081
|
"hasDynamicHelp": false,
|
|
3039
3082
|
"hiddenAliases": [],
|
|
3040
|
-
"id": "
|
|
3083
|
+
"id": "worktree:add",
|
|
3041
3084
|
"pluginAlias": "byterover-cli",
|
|
3042
3085
|
"pluginName": "byterover-cli",
|
|
3043
3086
|
"pluginType": "core",
|
|
@@ -3048,21 +3091,21 @@
|
|
|
3048
3091
|
"dist",
|
|
3049
3092
|
"oclif",
|
|
3050
3093
|
"commands",
|
|
3051
|
-
"
|
|
3052
|
-
"
|
|
3094
|
+
"worktree",
|
|
3095
|
+
"add.js"
|
|
3053
3096
|
]
|
|
3054
3097
|
},
|
|
3055
|
-
"
|
|
3098
|
+
"worktree": {
|
|
3056
3099
|
"aliases": [],
|
|
3057
3100
|
"args": {},
|
|
3058
|
-
"description": "
|
|
3101
|
+
"description": "Manage worktree links for subdirectories and sibling checkouts",
|
|
3059
3102
|
"examples": [
|
|
3060
|
-
"<%= config.bin %>
|
|
3103
|
+
"<%= config.bin %> <%= command.id %> --help"
|
|
3061
3104
|
],
|
|
3062
3105
|
"flags": {},
|
|
3063
3106
|
"hasDynamicHelp": false,
|
|
3064
3107
|
"hiddenAliases": [],
|
|
3065
|
-
"id": "
|
|
3108
|
+
"id": "worktree",
|
|
3066
3109
|
"pluginAlias": "byterover-cli",
|
|
3067
3110
|
"pluginName": "byterover-cli",
|
|
3068
3111
|
"pluginType": "core",
|
|
@@ -3073,56 +3116,21 @@
|
|
|
3073
3116
|
"dist",
|
|
3074
3117
|
"oclif",
|
|
3075
3118
|
"commands",
|
|
3076
|
-
"
|
|
3077
|
-
"
|
|
3119
|
+
"worktree",
|
|
3120
|
+
"index.js"
|
|
3078
3121
|
]
|
|
3079
3122
|
},
|
|
3080
|
-
"
|
|
3123
|
+
"worktree:list": {
|
|
3081
3124
|
"aliases": [],
|
|
3082
|
-
"args": {
|
|
3083
|
-
|
|
3084
|
-
"description": "Natural language query to search across memory providers",
|
|
3085
|
-
"name": "query",
|
|
3086
|
-
"required": true
|
|
3087
|
-
}
|
|
3088
|
-
},
|
|
3089
|
-
"description": "Query the memory swarm across all active providers",
|
|
3125
|
+
"args": {},
|
|
3126
|
+
"description": "Show the current worktree link and list all registered worktrees",
|
|
3090
3127
|
"examples": [
|
|
3091
|
-
"<%= config.bin %>
|
|
3092
|
-
"<%= config.bin %> swarm query \"what changed yesterday\" --format json"
|
|
3128
|
+
"<%= config.bin %> <%= command.id %>"
|
|
3093
3129
|
],
|
|
3094
|
-
"flags": {
|
|
3095
|
-
"explain": {
|
|
3096
|
-
"description": "Show classification, routing, and enrichment details (ignored with --format json, which always includes all metadata)",
|
|
3097
|
-
"name": "explain",
|
|
3098
|
-
"allowNo": false,
|
|
3099
|
-
"type": "boolean"
|
|
3100
|
-
},
|
|
3101
|
-
"format": {
|
|
3102
|
-
"char": "f",
|
|
3103
|
-
"description": "Output format",
|
|
3104
|
-
"name": "format",
|
|
3105
|
-
"default": "text",
|
|
3106
|
-
"hasDynamicHelp": false,
|
|
3107
|
-
"multiple": false,
|
|
3108
|
-
"options": [
|
|
3109
|
-
"text",
|
|
3110
|
-
"json"
|
|
3111
|
-
],
|
|
3112
|
-
"type": "option"
|
|
3113
|
-
},
|
|
3114
|
-
"max-results": {
|
|
3115
|
-
"char": "n",
|
|
3116
|
-
"description": "Maximum number of results",
|
|
3117
|
-
"name": "max-results",
|
|
3118
|
-
"hasDynamicHelp": false,
|
|
3119
|
-
"multiple": false,
|
|
3120
|
-
"type": "option"
|
|
3121
|
-
}
|
|
3122
|
-
},
|
|
3130
|
+
"flags": {},
|
|
3123
3131
|
"hasDynamicHelp": false,
|
|
3124
3132
|
"hiddenAliases": [],
|
|
3125
|
-
"id": "
|
|
3133
|
+
"id": "worktree:list",
|
|
3126
3134
|
"pluginAlias": "byterover-cli",
|
|
3127
3135
|
"pluginName": "byterover-cli",
|
|
3128
3136
|
"pluginType": "core",
|
|
@@ -3133,36 +3141,28 @@
|
|
|
3133
3141
|
"dist",
|
|
3134
3142
|
"oclif",
|
|
3135
3143
|
"commands",
|
|
3136
|
-
"
|
|
3137
|
-
"
|
|
3144
|
+
"worktree",
|
|
3145
|
+
"list.js"
|
|
3138
3146
|
]
|
|
3139
3147
|
},
|
|
3140
|
-
"
|
|
3148
|
+
"worktree:remove": {
|
|
3141
3149
|
"aliases": [],
|
|
3142
|
-
"args": {
|
|
3143
|
-
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
],
|
|
3148
|
-
"flags": {
|
|
3149
|
-
"format": {
|
|
3150
|
-
"char": "f",
|
|
3151
|
-
"description": "Output format",
|
|
3152
|
-
"name": "format",
|
|
3153
|
-
"default": "text",
|
|
3154
|
-
"hasDynamicHelp": false,
|
|
3155
|
-
"multiple": false,
|
|
3156
|
-
"options": [
|
|
3157
|
-
"text",
|
|
3158
|
-
"json"
|
|
3159
|
-
],
|
|
3160
|
-
"type": "option"
|
|
3150
|
+
"args": {
|
|
3151
|
+
"path": {
|
|
3152
|
+
"description": "Path to the worktree to remove (defaults to cwd)",
|
|
3153
|
+
"name": "path",
|
|
3154
|
+
"required": false
|
|
3161
3155
|
}
|
|
3162
3156
|
},
|
|
3157
|
+
"description": "Remove a worktree registration and its .brv pointer",
|
|
3158
|
+
"examples": [
|
|
3159
|
+
"<%= config.bin %> <%= command.id %> (remove cwd as worktree)",
|
|
3160
|
+
"<%= config.bin %> <%= command.id %> packages/api (remove from parent)"
|
|
3161
|
+
],
|
|
3162
|
+
"flags": {},
|
|
3163
3163
|
"hasDynamicHelp": false,
|
|
3164
3164
|
"hiddenAliases": [],
|
|
3165
|
-
"id": "
|
|
3165
|
+
"id": "worktree:remove",
|
|
3166
3166
|
"pluginAlias": "byterover-cli",
|
|
3167
3167
|
"pluginName": "byterover-cli",
|
|
3168
3168
|
"pluginType": "core",
|
|
@@ -3173,8 +3173,8 @@
|
|
|
3173
3173
|
"dist",
|
|
3174
3174
|
"oclif",
|
|
3175
3175
|
"commands",
|
|
3176
|
-
"
|
|
3177
|
-
"
|
|
3176
|
+
"worktree",
|
|
3177
|
+
"remove.js"
|
|
3178
3178
|
]
|
|
3179
3179
|
},
|
|
3180
3180
|
"hub:registry:add": {
|
|
@@ -3508,5 +3508,5 @@
|
|
|
3508
3508
|
]
|
|
3509
3509
|
}
|
|
3510
3510
|
},
|
|
3511
|
-
"version": "3.10.
|
|
3511
|
+
"version": "3.10.2"
|
|
3512
3512
|
}
|