byterover-cli 3.6.1 → 3.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/oclif.manifest.json +452 -452
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -71,7 +71,7 @@ No Node.js required - everything is bundled.
|
|
|
71
71
|
curl -fsSL https://byterover.dev/install.sh | sh
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
-
Supported platforms: macOS ARM64, Linux x64, Linux ARM64.
|
|
74
|
+
Supported platforms: macOS ARM64, macOS x64 (Intel), Linux x64, Linux ARM64.
|
|
75
75
|
|
|
76
76
|
### npm (All Platforms)
|
|
77
77
|
|
package/oclif.manifest.json
CHANGED
|
@@ -1156,13 +1156,145 @@
|
|
|
1156
1156
|
"list.js"
|
|
1157
1157
|
]
|
|
1158
1158
|
},
|
|
1159
|
-
"
|
|
1159
|
+
"providers:connect": {
|
|
1160
|
+
"aliases": [],
|
|
1161
|
+
"args": {
|
|
1162
|
+
"provider": {
|
|
1163
|
+
"description": "Provider ID to connect (e.g., anthropic, openai, openrouter). Omit for interactive selection.",
|
|
1164
|
+
"name": "provider",
|
|
1165
|
+
"required": false
|
|
1166
|
+
}
|
|
1167
|
+
},
|
|
1168
|
+
"description": "Connect or switch to an LLM provider",
|
|
1169
|
+
"examples": [
|
|
1170
|
+
"<%= config.bin %> providers connect",
|
|
1171
|
+
"<%= config.bin %> providers connect anthropic --api-key sk-xxx",
|
|
1172
|
+
"<%= config.bin %> providers connect openai --oauth",
|
|
1173
|
+
"<%= config.bin %> providers connect byterover",
|
|
1174
|
+
"<%= config.bin %> providers connect openai-compatible --base-url http://localhost:11434/v1 --api-key sk-xxx"
|
|
1175
|
+
],
|
|
1176
|
+
"flags": {
|
|
1177
|
+
"api-key": {
|
|
1178
|
+
"char": "k",
|
|
1179
|
+
"description": "API key for the provider",
|
|
1180
|
+
"name": "api-key",
|
|
1181
|
+
"hasDynamicHelp": false,
|
|
1182
|
+
"multiple": false,
|
|
1183
|
+
"type": "option"
|
|
1184
|
+
},
|
|
1185
|
+
"base-url": {
|
|
1186
|
+
"char": "b",
|
|
1187
|
+
"description": "Base URL for OpenAI-compatible providers (e.g., http://localhost:11434/v1)",
|
|
1188
|
+
"name": "base-url",
|
|
1189
|
+
"hasDynamicHelp": false,
|
|
1190
|
+
"multiple": false,
|
|
1191
|
+
"type": "option"
|
|
1192
|
+
},
|
|
1193
|
+
"code": {
|
|
1194
|
+
"char": "c",
|
|
1195
|
+
"description": "Authorization code for code-paste OAuth providers (e.g., Anthropic). Not applicable to browser-callback providers like OpenAI — use --oauth without --code instead.",
|
|
1196
|
+
"hidden": true,
|
|
1197
|
+
"name": "code",
|
|
1198
|
+
"hasDynamicHelp": false,
|
|
1199
|
+
"multiple": false,
|
|
1200
|
+
"type": "option"
|
|
1201
|
+
},
|
|
1202
|
+
"format": {
|
|
1203
|
+
"description": "Output format (text or json)",
|
|
1204
|
+
"name": "format",
|
|
1205
|
+
"default": "text",
|
|
1206
|
+
"hasDynamicHelp": false,
|
|
1207
|
+
"multiple": false,
|
|
1208
|
+
"options": [
|
|
1209
|
+
"text",
|
|
1210
|
+
"json"
|
|
1211
|
+
],
|
|
1212
|
+
"type": "option"
|
|
1213
|
+
},
|
|
1214
|
+
"model": {
|
|
1215
|
+
"char": "m",
|
|
1216
|
+
"description": "Model to set as active after connecting",
|
|
1217
|
+
"name": "model",
|
|
1218
|
+
"hasDynamicHelp": false,
|
|
1219
|
+
"multiple": false,
|
|
1220
|
+
"type": "option"
|
|
1221
|
+
},
|
|
1222
|
+
"oauth": {
|
|
1223
|
+
"description": "Connect via OAuth (browser-based)",
|
|
1224
|
+
"name": "oauth",
|
|
1225
|
+
"allowNo": false,
|
|
1226
|
+
"type": "boolean"
|
|
1227
|
+
}
|
|
1228
|
+
},
|
|
1229
|
+
"hasDynamicHelp": false,
|
|
1230
|
+
"hiddenAliases": [],
|
|
1231
|
+
"id": "providers:connect",
|
|
1232
|
+
"pluginAlias": "byterover-cli",
|
|
1233
|
+
"pluginName": "byterover-cli",
|
|
1234
|
+
"pluginType": "core",
|
|
1235
|
+
"strict": true,
|
|
1236
|
+
"enableJsonFlag": false,
|
|
1237
|
+
"isESM": true,
|
|
1238
|
+
"relativePath": [
|
|
1239
|
+
"dist",
|
|
1240
|
+
"oclif",
|
|
1241
|
+
"commands",
|
|
1242
|
+
"providers",
|
|
1243
|
+
"connect.js"
|
|
1244
|
+
]
|
|
1245
|
+
},
|
|
1246
|
+
"providers:disconnect": {
|
|
1247
|
+
"aliases": [],
|
|
1248
|
+
"args": {
|
|
1249
|
+
"provider": {
|
|
1250
|
+
"description": "Provider ID to disconnect",
|
|
1251
|
+
"name": "provider",
|
|
1252
|
+
"required": true
|
|
1253
|
+
}
|
|
1254
|
+
},
|
|
1255
|
+
"description": "Disconnect an LLM provider",
|
|
1256
|
+
"examples": [
|
|
1257
|
+
"<%= config.bin %> providers disconnect anthropic",
|
|
1258
|
+
"<%= config.bin %> providers disconnect openai --format json"
|
|
1259
|
+
],
|
|
1260
|
+
"flags": {
|
|
1261
|
+
"format": {
|
|
1262
|
+
"description": "Output format (text or json)",
|
|
1263
|
+
"name": "format",
|
|
1264
|
+
"default": "text",
|
|
1265
|
+
"hasDynamicHelp": false,
|
|
1266
|
+
"multiple": false,
|
|
1267
|
+
"options": [
|
|
1268
|
+
"text",
|
|
1269
|
+
"json"
|
|
1270
|
+
],
|
|
1271
|
+
"type": "option"
|
|
1272
|
+
}
|
|
1273
|
+
},
|
|
1274
|
+
"hasDynamicHelp": false,
|
|
1275
|
+
"hiddenAliases": [],
|
|
1276
|
+
"id": "providers:disconnect",
|
|
1277
|
+
"pluginAlias": "byterover-cli",
|
|
1278
|
+
"pluginName": "byterover-cli",
|
|
1279
|
+
"pluginType": "core",
|
|
1280
|
+
"strict": true,
|
|
1281
|
+
"enableJsonFlag": false,
|
|
1282
|
+
"isESM": true,
|
|
1283
|
+
"relativePath": [
|
|
1284
|
+
"dist",
|
|
1285
|
+
"oclif",
|
|
1286
|
+
"commands",
|
|
1287
|
+
"providers",
|
|
1288
|
+
"disconnect.js"
|
|
1289
|
+
]
|
|
1290
|
+
},
|
|
1291
|
+
"providers": {
|
|
1160
1292
|
"aliases": [],
|
|
1161
1293
|
"args": {},
|
|
1162
|
-
"description": "Show
|
|
1294
|
+
"description": "Show active provider and model",
|
|
1163
1295
|
"examples": [
|
|
1164
|
-
"<%= config.bin %>
|
|
1165
|
-
"<%= config.bin %>
|
|
1296
|
+
"<%= config.bin %> providers",
|
|
1297
|
+
"<%= config.bin %> providers --format json"
|
|
1166
1298
|
],
|
|
1167
1299
|
"flags": {
|
|
1168
1300
|
"format": {
|
|
@@ -1180,7 +1312,7 @@
|
|
|
1180
1312
|
},
|
|
1181
1313
|
"hasDynamicHelp": false,
|
|
1182
1314
|
"hiddenAliases": [],
|
|
1183
|
-
"id": "
|
|
1315
|
+
"id": "providers",
|
|
1184
1316
|
"pluginAlias": "byterover-cli",
|
|
1185
1317
|
"pluginName": "byterover-cli",
|
|
1186
1318
|
"pluginType": "core",
|
|
@@ -1191,17 +1323,17 @@
|
|
|
1191
1323
|
"dist",
|
|
1192
1324
|
"oclif",
|
|
1193
1325
|
"commands",
|
|
1194
|
-
"
|
|
1326
|
+
"providers",
|
|
1195
1327
|
"index.js"
|
|
1196
1328
|
]
|
|
1197
1329
|
},
|
|
1198
|
-
"
|
|
1330
|
+
"providers:list": {
|
|
1199
1331
|
"aliases": [],
|
|
1200
1332
|
"args": {},
|
|
1201
|
-
"description": "List available
|
|
1333
|
+
"description": "List all available providers and their connection status",
|
|
1202
1334
|
"examples": [
|
|
1203
|
-
"<%= config.bin %>
|
|
1204
|
-
"<%= config.bin %>
|
|
1335
|
+
"<%= config.bin %> providers list",
|
|
1336
|
+
"<%= config.bin %> providers list --format json"
|
|
1205
1337
|
],
|
|
1206
1338
|
"flags": {
|
|
1207
1339
|
"format": {
|
|
@@ -1215,19 +1347,56 @@
|
|
|
1215
1347
|
"json"
|
|
1216
1348
|
],
|
|
1217
1349
|
"type": "option"
|
|
1218
|
-
}
|
|
1350
|
+
}
|
|
1351
|
+
},
|
|
1352
|
+
"hasDynamicHelp": false,
|
|
1353
|
+
"hiddenAliases": [],
|
|
1354
|
+
"id": "providers:list",
|
|
1355
|
+
"pluginAlias": "byterover-cli",
|
|
1356
|
+
"pluginName": "byterover-cli",
|
|
1357
|
+
"pluginType": "core",
|
|
1358
|
+
"strict": true,
|
|
1359
|
+
"enableJsonFlag": false,
|
|
1360
|
+
"isESM": true,
|
|
1361
|
+
"relativePath": [
|
|
1362
|
+
"dist",
|
|
1363
|
+
"oclif",
|
|
1364
|
+
"commands",
|
|
1365
|
+
"providers",
|
|
1366
|
+
"list.js"
|
|
1367
|
+
]
|
|
1368
|
+
},
|
|
1369
|
+
"providers:switch": {
|
|
1370
|
+
"aliases": [],
|
|
1371
|
+
"args": {
|
|
1219
1372
|
"provider": {
|
|
1220
|
-
"
|
|
1221
|
-
"description": "Only list models for a specific provider",
|
|
1373
|
+
"description": "Provider ID to switch to (e.g., anthropic, openai)",
|
|
1222
1374
|
"name": "provider",
|
|
1375
|
+
"required": true
|
|
1376
|
+
}
|
|
1377
|
+
},
|
|
1378
|
+
"description": "Switch the active provider",
|
|
1379
|
+
"examples": [
|
|
1380
|
+
"<%= config.bin %> providers switch anthropic",
|
|
1381
|
+
"<%= config.bin %> providers switch openai --format json"
|
|
1382
|
+
],
|
|
1383
|
+
"flags": {
|
|
1384
|
+
"format": {
|
|
1385
|
+
"description": "Output format (text or json)",
|
|
1386
|
+
"name": "format",
|
|
1387
|
+
"default": "text",
|
|
1223
1388
|
"hasDynamicHelp": false,
|
|
1224
1389
|
"multiple": false,
|
|
1390
|
+
"options": [
|
|
1391
|
+
"text",
|
|
1392
|
+
"json"
|
|
1393
|
+
],
|
|
1225
1394
|
"type": "option"
|
|
1226
1395
|
}
|
|
1227
1396
|
},
|
|
1228
1397
|
"hasDynamicHelp": false,
|
|
1229
1398
|
"hiddenAliases": [],
|
|
1230
|
-
"id": "
|
|
1399
|
+
"id": "providers:switch",
|
|
1231
1400
|
"pluginAlias": "byterover-cli",
|
|
1232
1401
|
"pluginName": "byterover-cli",
|
|
1233
1402
|
"pluginType": "core",
|
|
@@ -1238,24 +1407,56 @@
|
|
|
1238
1407
|
"dist",
|
|
1239
1408
|
"oclif",
|
|
1240
1409
|
"commands",
|
|
1241
|
-
"
|
|
1242
|
-
"
|
|
1410
|
+
"providers",
|
|
1411
|
+
"switch.js"
|
|
1243
1412
|
]
|
|
1244
1413
|
},
|
|
1245
|
-
"model
|
|
1414
|
+
"model": {
|
|
1246
1415
|
"aliases": [],
|
|
1247
|
-
"args": {
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1416
|
+
"args": {},
|
|
1417
|
+
"description": "Show the active model",
|
|
1418
|
+
"examples": [
|
|
1419
|
+
"<%= config.bin %> model",
|
|
1420
|
+
"<%= config.bin %> model --format json"
|
|
1421
|
+
],
|
|
1422
|
+
"flags": {
|
|
1423
|
+
"format": {
|
|
1424
|
+
"description": "Output format (text or json)",
|
|
1425
|
+
"name": "format",
|
|
1426
|
+
"default": "text",
|
|
1427
|
+
"hasDynamicHelp": false,
|
|
1428
|
+
"multiple": false,
|
|
1429
|
+
"options": [
|
|
1430
|
+
"text",
|
|
1431
|
+
"json"
|
|
1432
|
+
],
|
|
1433
|
+
"type": "option"
|
|
1252
1434
|
}
|
|
1253
1435
|
},
|
|
1254
|
-
"
|
|
1436
|
+
"hasDynamicHelp": false,
|
|
1437
|
+
"hiddenAliases": [],
|
|
1438
|
+
"id": "model",
|
|
1439
|
+
"pluginAlias": "byterover-cli",
|
|
1440
|
+
"pluginName": "byterover-cli",
|
|
1441
|
+
"pluginType": "core",
|
|
1442
|
+
"strict": true,
|
|
1443
|
+
"enableJsonFlag": false,
|
|
1444
|
+
"isESM": true,
|
|
1445
|
+
"relativePath": [
|
|
1446
|
+
"dist",
|
|
1447
|
+
"oclif",
|
|
1448
|
+
"commands",
|
|
1449
|
+
"model",
|
|
1450
|
+
"index.js"
|
|
1451
|
+
]
|
|
1452
|
+
},
|
|
1453
|
+
"model:list": {
|
|
1454
|
+
"aliases": [],
|
|
1455
|
+
"args": {},
|
|
1456
|
+
"description": "List available models from all connected providers",
|
|
1255
1457
|
"examples": [
|
|
1256
|
-
"<%= config.bin %> model
|
|
1257
|
-
"<%= config.bin %> model
|
|
1258
|
-
"<%= config.bin %> model switch claude-sonnet-4-5 --format json"
|
|
1458
|
+
"<%= config.bin %> model list",
|
|
1459
|
+
"<%= config.bin %> model list --format json"
|
|
1259
1460
|
],
|
|
1260
1461
|
"flags": {
|
|
1261
1462
|
"format": {
|
|
@@ -1272,7 +1473,7 @@
|
|
|
1272
1473
|
},
|
|
1273
1474
|
"provider": {
|
|
1274
1475
|
"char": "p",
|
|
1275
|
-
"description": "
|
|
1476
|
+
"description": "Only list models for a specific provider",
|
|
1276
1477
|
"name": "provider",
|
|
1277
1478
|
"hasDynamicHelp": false,
|
|
1278
1479
|
"multiple": false,
|
|
@@ -1281,7 +1482,7 @@
|
|
|
1281
1482
|
},
|
|
1282
1483
|
"hasDynamicHelp": false,
|
|
1283
1484
|
"hiddenAliases": [],
|
|
1284
|
-
"id": "model:
|
|
1485
|
+
"id": "model:list",
|
|
1285
1486
|
"pluginAlias": "byterover-cli",
|
|
1286
1487
|
"pluginName": "byterover-cli",
|
|
1287
1488
|
"pluginType": "core",
|
|
@@ -1293,52 +1494,25 @@
|
|
|
1293
1494
|
"oclif",
|
|
1294
1495
|
"commands",
|
|
1295
1496
|
"model",
|
|
1296
|
-
"
|
|
1497
|
+
"list.js"
|
|
1297
1498
|
]
|
|
1298
1499
|
},
|
|
1299
|
-
"
|
|
1500
|
+
"model:switch": {
|
|
1300
1501
|
"aliases": [],
|
|
1301
1502
|
"args": {
|
|
1302
|
-
"
|
|
1303
|
-
"description": "
|
|
1304
|
-
"name": "
|
|
1305
|
-
"required":
|
|
1503
|
+
"model": {
|
|
1504
|
+
"description": "Model ID to switch to (e.g., claude-sonnet-4-5, gpt-4.1)",
|
|
1505
|
+
"name": "model",
|
|
1506
|
+
"required": true
|
|
1306
1507
|
}
|
|
1307
1508
|
},
|
|
1308
|
-
"description": "
|
|
1509
|
+
"description": "Switch the active model",
|
|
1309
1510
|
"examples": [
|
|
1310
|
-
"<%= config.bin %>
|
|
1311
|
-
"<%= config.bin %>
|
|
1312
|
-
"<%= config.bin %>
|
|
1313
|
-
"<%= config.bin %> providers connect byterover",
|
|
1314
|
-
"<%= config.bin %> providers connect openai-compatible --base-url http://localhost:11434/v1 --api-key sk-xxx"
|
|
1511
|
+
"<%= config.bin %> model switch claude-sonnet-4-5",
|
|
1512
|
+
"<%= config.bin %> model switch gpt-4.1 --provider openai",
|
|
1513
|
+
"<%= config.bin %> model switch claude-sonnet-4-5 --format json"
|
|
1315
1514
|
],
|
|
1316
1515
|
"flags": {
|
|
1317
|
-
"api-key": {
|
|
1318
|
-
"char": "k",
|
|
1319
|
-
"description": "API key for the provider",
|
|
1320
|
-
"name": "api-key",
|
|
1321
|
-
"hasDynamicHelp": false,
|
|
1322
|
-
"multiple": false,
|
|
1323
|
-
"type": "option"
|
|
1324
|
-
},
|
|
1325
|
-
"base-url": {
|
|
1326
|
-
"char": "b",
|
|
1327
|
-
"description": "Base URL for OpenAI-compatible providers (e.g., http://localhost:11434/v1)",
|
|
1328
|
-
"name": "base-url",
|
|
1329
|
-
"hasDynamicHelp": false,
|
|
1330
|
-
"multiple": false,
|
|
1331
|
-
"type": "option"
|
|
1332
|
-
},
|
|
1333
|
-
"code": {
|
|
1334
|
-
"char": "c",
|
|
1335
|
-
"description": "Authorization code for code-paste OAuth providers (e.g., Anthropic). Not applicable to browser-callback providers like OpenAI — use --oauth without --code instead.",
|
|
1336
|
-
"hidden": true,
|
|
1337
|
-
"name": "code",
|
|
1338
|
-
"hasDynamicHelp": false,
|
|
1339
|
-
"multiple": false,
|
|
1340
|
-
"type": "option"
|
|
1341
|
-
},
|
|
1342
1516
|
"format": {
|
|
1343
1517
|
"description": "Output format (text or json)",
|
|
1344
1518
|
"name": "format",
|
|
@@ -1351,24 +1525,18 @@
|
|
|
1351
1525
|
],
|
|
1352
1526
|
"type": "option"
|
|
1353
1527
|
},
|
|
1354
|
-
"
|
|
1355
|
-
"char": "
|
|
1356
|
-
"description": "
|
|
1357
|
-
"name": "
|
|
1528
|
+
"provider": {
|
|
1529
|
+
"char": "p",
|
|
1530
|
+
"description": "Provider ID (defaults to active provider)",
|
|
1531
|
+
"name": "provider",
|
|
1358
1532
|
"hasDynamicHelp": false,
|
|
1359
1533
|
"multiple": false,
|
|
1360
1534
|
"type": "option"
|
|
1361
|
-
},
|
|
1362
|
-
"oauth": {
|
|
1363
|
-
"description": "Connect via OAuth (browser-based)",
|
|
1364
|
-
"name": "oauth",
|
|
1365
|
-
"allowNo": false,
|
|
1366
|
-
"type": "boolean"
|
|
1367
1535
|
}
|
|
1368
1536
|
},
|
|
1369
1537
|
"hasDynamicHelp": false,
|
|
1370
1538
|
"hiddenAliases": [],
|
|
1371
|
-
"id": "
|
|
1539
|
+
"id": "model:switch",
|
|
1372
1540
|
"pluginAlias": "byterover-cli",
|
|
1373
1541
|
"pluginName": "byterover-cli",
|
|
1374
1542
|
"pluginType": "core",
|
|
@@ -1379,25 +1547,39 @@
|
|
|
1379
1547
|
"dist",
|
|
1380
1548
|
"oclif",
|
|
1381
1549
|
"commands",
|
|
1382
|
-
"
|
|
1383
|
-
"
|
|
1550
|
+
"model",
|
|
1551
|
+
"switch.js"
|
|
1384
1552
|
]
|
|
1385
1553
|
},
|
|
1386
|
-
"
|
|
1554
|
+
"review:approve": {
|
|
1387
1555
|
"aliases": [],
|
|
1388
1556
|
"args": {
|
|
1389
|
-
"
|
|
1390
|
-
"description": "
|
|
1391
|
-
"name": "
|
|
1557
|
+
"taskId": {
|
|
1558
|
+
"description": "Task ID shown in the curate output (e.g. \"brv review approve abc-123\")",
|
|
1559
|
+
"name": "taskId",
|
|
1392
1560
|
"required": true
|
|
1393
1561
|
}
|
|
1394
1562
|
},
|
|
1395
|
-
"description": "
|
|
1563
|
+
"description": "Approve pending review operations for a curate task",
|
|
1396
1564
|
"examples": [
|
|
1397
|
-
"
|
|
1398
|
-
"<%= config.bin %>
|
|
1565
|
+
"# Approve all pending changes from a curate task",
|
|
1566
|
+
"<%= config.bin %> review approve abc-123",
|
|
1567
|
+
"",
|
|
1568
|
+
"# Approve specific files",
|
|
1569
|
+
"<%= config.bin %> review approve abc-123 --file architecture/security/audit.md",
|
|
1570
|
+
"<%= config.bin %> review approve abc-123 --file auth/jwt.md --file auth/oauth.md",
|
|
1571
|
+
"",
|
|
1572
|
+
"# Approve and get structured output (useful for coding agents)",
|
|
1573
|
+
"<%= config.bin %> review approve abc-123 --format json"
|
|
1399
1574
|
],
|
|
1400
1575
|
"flags": {
|
|
1576
|
+
"file": {
|
|
1577
|
+
"description": "Approve only the specified file path(s) (relative to context tree)",
|
|
1578
|
+
"name": "file",
|
|
1579
|
+
"hasDynamicHelp": false,
|
|
1580
|
+
"multiple": true,
|
|
1581
|
+
"type": "option"
|
|
1582
|
+
},
|
|
1401
1583
|
"format": {
|
|
1402
1584
|
"description": "Output format (text or json)",
|
|
1403
1585
|
"name": "format",
|
|
@@ -1413,7 +1595,7 @@
|
|
|
1413
1595
|
},
|
|
1414
1596
|
"hasDynamicHelp": false,
|
|
1415
1597
|
"hiddenAliases": [],
|
|
1416
|
-
"id": "
|
|
1598
|
+
"id": "review:approve",
|
|
1417
1599
|
"pluginAlias": "byterover-cli",
|
|
1418
1600
|
"pluginName": "byterover-cli",
|
|
1419
1601
|
"pluginType": "core",
|
|
@@ -1424,19 +1606,25 @@
|
|
|
1424
1606
|
"dist",
|
|
1425
1607
|
"oclif",
|
|
1426
1608
|
"commands",
|
|
1427
|
-
"
|
|
1428
|
-
"
|
|
1609
|
+
"review",
|
|
1610
|
+
"approve.js"
|
|
1429
1611
|
]
|
|
1430
1612
|
},
|
|
1431
|
-
"
|
|
1613
|
+
"review:base-review-decision": {
|
|
1432
1614
|
"aliases": [],
|
|
1433
|
-
"args": {
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1615
|
+
"args": {
|
|
1616
|
+
"taskId": {
|
|
1617
|
+
"name": "taskId",
|
|
1618
|
+
"required": true
|
|
1619
|
+
}
|
|
1620
|
+
},
|
|
1439
1621
|
"flags": {
|
|
1622
|
+
"file": {
|
|
1623
|
+
"name": "file",
|
|
1624
|
+
"hasDynamicHelp": false,
|
|
1625
|
+
"multiple": true,
|
|
1626
|
+
"type": "option"
|
|
1627
|
+
},
|
|
1440
1628
|
"format": {
|
|
1441
1629
|
"description": "Output format (text or json)",
|
|
1442
1630
|
"name": "format",
|
|
@@ -1452,7 +1640,7 @@
|
|
|
1452
1640
|
},
|
|
1453
1641
|
"hasDynamicHelp": false,
|
|
1454
1642
|
"hiddenAliases": [],
|
|
1455
|
-
"id": "
|
|
1643
|
+
"id": "review:base-review-decision",
|
|
1456
1644
|
"pluginAlias": "byterover-cli",
|
|
1457
1645
|
"pluginName": "byterover-cli",
|
|
1458
1646
|
"pluginType": "core",
|
|
@@ -1463,17 +1651,20 @@
|
|
|
1463
1651
|
"dist",
|
|
1464
1652
|
"oclif",
|
|
1465
1653
|
"commands",
|
|
1466
|
-
"
|
|
1467
|
-
"
|
|
1654
|
+
"review",
|
|
1655
|
+
"base-review-decision.js"
|
|
1468
1656
|
]
|
|
1469
1657
|
},
|
|
1470
|
-
"
|
|
1658
|
+
"review:pending": {
|
|
1471
1659
|
"aliases": [],
|
|
1472
1660
|
"args": {},
|
|
1473
|
-
"description": "List all
|
|
1661
|
+
"description": "List all pending review operations for the current project",
|
|
1474
1662
|
"examples": [
|
|
1475
|
-
"
|
|
1476
|
-
"<%= config.bin %>
|
|
1663
|
+
"# Show all pending reviews",
|
|
1664
|
+
"<%= config.bin %> review pending",
|
|
1665
|
+
"",
|
|
1666
|
+
"# Get structured output for agent-driven workflows",
|
|
1667
|
+
"<%= config.bin %> review pending --format json"
|
|
1477
1668
|
],
|
|
1478
1669
|
"flags": {
|
|
1479
1670
|
"format": {
|
|
@@ -1491,7 +1682,7 @@
|
|
|
1491
1682
|
},
|
|
1492
1683
|
"hasDynamicHelp": false,
|
|
1493
1684
|
"hiddenAliases": [],
|
|
1494
|
-
"id": "
|
|
1685
|
+
"id": "review:pending",
|
|
1495
1686
|
"pluginAlias": "byterover-cli",
|
|
1496
1687
|
"pluginName": "byterover-cli",
|
|
1497
1688
|
"pluginType": "core",
|
|
@@ -1502,25 +1693,39 @@
|
|
|
1502
1693
|
"dist",
|
|
1503
1694
|
"oclif",
|
|
1504
1695
|
"commands",
|
|
1505
|
-
"
|
|
1506
|
-
"
|
|
1696
|
+
"review",
|
|
1697
|
+
"pending.js"
|
|
1507
1698
|
]
|
|
1508
1699
|
},
|
|
1509
|
-
"
|
|
1700
|
+
"review:reject": {
|
|
1510
1701
|
"aliases": [],
|
|
1511
1702
|
"args": {
|
|
1512
|
-
"
|
|
1513
|
-
"description": "
|
|
1514
|
-
"name": "
|
|
1703
|
+
"taskId": {
|
|
1704
|
+
"description": "Task ID shown in the curate output (e.g. \"brv review reject abc-123\")",
|
|
1705
|
+
"name": "taskId",
|
|
1515
1706
|
"required": true
|
|
1516
1707
|
}
|
|
1517
1708
|
},
|
|
1518
|
-
"description": "
|
|
1709
|
+
"description": "Reject pending review operations for a curate task (restores files from backup)",
|
|
1519
1710
|
"examples": [
|
|
1520
|
-
"
|
|
1521
|
-
"<%= config.bin %>
|
|
1711
|
+
"# Reject all pending changes from a curate task",
|
|
1712
|
+
"<%= config.bin %> review reject abc-123",
|
|
1713
|
+
"",
|
|
1714
|
+
"# Reject specific files",
|
|
1715
|
+
"<%= config.bin %> review reject abc-123 --file architecture/security/audit.md",
|
|
1716
|
+
"<%= config.bin %> review reject abc-123 --file auth/jwt.md --file auth/oauth.md",
|
|
1717
|
+
"",
|
|
1718
|
+
"# Reject and get structured output (useful for coding agents)",
|
|
1719
|
+
"<%= config.bin %> review reject abc-123 --format json"
|
|
1522
1720
|
],
|
|
1523
1721
|
"flags": {
|
|
1722
|
+
"file": {
|
|
1723
|
+
"description": "Reject only the specified file path(s) (relative to context tree)",
|
|
1724
|
+
"name": "file",
|
|
1725
|
+
"hasDynamicHelp": false,
|
|
1726
|
+
"multiple": true,
|
|
1727
|
+
"type": "option"
|
|
1728
|
+
},
|
|
1524
1729
|
"format": {
|
|
1525
1730
|
"description": "Output format (text or json)",
|
|
1526
1731
|
"name": "format",
|
|
@@ -1536,7 +1741,7 @@
|
|
|
1536
1741
|
},
|
|
1537
1742
|
"hasDynamicHelp": false,
|
|
1538
1743
|
"hiddenAliases": [],
|
|
1539
|
-
"id": "
|
|
1744
|
+
"id": "review:reject",
|
|
1540
1745
|
"pluginAlias": "byterover-cli",
|
|
1541
1746
|
"pluginName": "byterover-cli",
|
|
1542
1747
|
"pluginType": "core",
|
|
@@ -1547,8 +1752,8 @@
|
|
|
1547
1752
|
"dist",
|
|
1548
1753
|
"oclif",
|
|
1549
1754
|
"commands",
|
|
1550
|
-
"
|
|
1551
|
-
"
|
|
1755
|
+
"review",
|
|
1756
|
+
"reject.js"
|
|
1552
1757
|
]
|
|
1553
1758
|
},
|
|
1554
1759
|
"query-log:summary": {
|
|
@@ -1826,220 +2031,15 @@
|
|
|
1826
2031
|
"required": true
|
|
1827
2032
|
}
|
|
1828
2033
|
},
|
|
1829
|
-
"description": "Remove a knowledge source",
|
|
1830
|
-
"examples": [
|
|
1831
|
-
"<%= config.bin %> <%= command.id %> shared-lib",
|
|
1832
|
-
"<%= config.bin %> <%= command.id %> /path/to/shared-lib"
|
|
1833
|
-
],
|
|
1834
|
-
"flags": {},
|
|
1835
|
-
"hasDynamicHelp": false,
|
|
1836
|
-
"hiddenAliases": [],
|
|
1837
|
-
"id": "source:remove",
|
|
1838
|
-
"pluginAlias": "byterover-cli",
|
|
1839
|
-
"pluginName": "byterover-cli",
|
|
1840
|
-
"pluginType": "core",
|
|
1841
|
-
"strict": true,
|
|
1842
|
-
"enableJsonFlag": false,
|
|
1843
|
-
"isESM": true,
|
|
1844
|
-
"relativePath": [
|
|
1845
|
-
"dist",
|
|
1846
|
-
"oclif",
|
|
1847
|
-
"commands",
|
|
1848
|
-
"source",
|
|
1849
|
-
"remove.js"
|
|
1850
|
-
]
|
|
1851
|
-
},
|
|
1852
|
-
"review:approve": {
|
|
1853
|
-
"aliases": [],
|
|
1854
|
-
"args": {
|
|
1855
|
-
"taskId": {
|
|
1856
|
-
"description": "Task ID shown in the curate output (e.g. \"brv review approve abc-123\")",
|
|
1857
|
-
"name": "taskId",
|
|
1858
|
-
"required": true
|
|
1859
|
-
}
|
|
1860
|
-
},
|
|
1861
|
-
"description": "Approve pending review operations for a curate task",
|
|
1862
|
-
"examples": [
|
|
1863
|
-
"# Approve all pending changes from a curate task",
|
|
1864
|
-
"<%= config.bin %> review approve abc-123",
|
|
1865
|
-
"",
|
|
1866
|
-
"# Approve specific files",
|
|
1867
|
-
"<%= config.bin %> review approve abc-123 --file architecture/security/audit.md",
|
|
1868
|
-
"<%= config.bin %> review approve abc-123 --file auth/jwt.md --file auth/oauth.md",
|
|
1869
|
-
"",
|
|
1870
|
-
"# Approve and get structured output (useful for coding agents)",
|
|
1871
|
-
"<%= config.bin %> review approve abc-123 --format json"
|
|
1872
|
-
],
|
|
1873
|
-
"flags": {
|
|
1874
|
-
"file": {
|
|
1875
|
-
"description": "Approve only the specified file path(s) (relative to context tree)",
|
|
1876
|
-
"name": "file",
|
|
1877
|
-
"hasDynamicHelp": false,
|
|
1878
|
-
"multiple": true,
|
|
1879
|
-
"type": "option"
|
|
1880
|
-
},
|
|
1881
|
-
"format": {
|
|
1882
|
-
"description": "Output format (text or json)",
|
|
1883
|
-
"name": "format",
|
|
1884
|
-
"default": "text",
|
|
1885
|
-
"hasDynamicHelp": false,
|
|
1886
|
-
"multiple": false,
|
|
1887
|
-
"options": [
|
|
1888
|
-
"text",
|
|
1889
|
-
"json"
|
|
1890
|
-
],
|
|
1891
|
-
"type": "option"
|
|
1892
|
-
}
|
|
1893
|
-
},
|
|
1894
|
-
"hasDynamicHelp": false,
|
|
1895
|
-
"hiddenAliases": [],
|
|
1896
|
-
"id": "review:approve",
|
|
1897
|
-
"pluginAlias": "byterover-cli",
|
|
1898
|
-
"pluginName": "byterover-cli",
|
|
1899
|
-
"pluginType": "core",
|
|
1900
|
-
"strict": true,
|
|
1901
|
-
"enableJsonFlag": false,
|
|
1902
|
-
"isESM": true,
|
|
1903
|
-
"relativePath": [
|
|
1904
|
-
"dist",
|
|
1905
|
-
"oclif",
|
|
1906
|
-
"commands",
|
|
1907
|
-
"review",
|
|
1908
|
-
"approve.js"
|
|
1909
|
-
]
|
|
1910
|
-
},
|
|
1911
|
-
"review:base-review-decision": {
|
|
1912
|
-
"aliases": [],
|
|
1913
|
-
"args": {
|
|
1914
|
-
"taskId": {
|
|
1915
|
-
"name": "taskId",
|
|
1916
|
-
"required": true
|
|
1917
|
-
}
|
|
1918
|
-
},
|
|
1919
|
-
"flags": {
|
|
1920
|
-
"file": {
|
|
1921
|
-
"name": "file",
|
|
1922
|
-
"hasDynamicHelp": false,
|
|
1923
|
-
"multiple": true,
|
|
1924
|
-
"type": "option"
|
|
1925
|
-
},
|
|
1926
|
-
"format": {
|
|
1927
|
-
"description": "Output format (text or json)",
|
|
1928
|
-
"name": "format",
|
|
1929
|
-
"default": "text",
|
|
1930
|
-
"hasDynamicHelp": false,
|
|
1931
|
-
"multiple": false,
|
|
1932
|
-
"options": [
|
|
1933
|
-
"text",
|
|
1934
|
-
"json"
|
|
1935
|
-
],
|
|
1936
|
-
"type": "option"
|
|
1937
|
-
}
|
|
1938
|
-
},
|
|
1939
|
-
"hasDynamicHelp": false,
|
|
1940
|
-
"hiddenAliases": [],
|
|
1941
|
-
"id": "review:base-review-decision",
|
|
1942
|
-
"pluginAlias": "byterover-cli",
|
|
1943
|
-
"pluginName": "byterover-cli",
|
|
1944
|
-
"pluginType": "core",
|
|
1945
|
-
"strict": true,
|
|
1946
|
-
"enableJsonFlag": false,
|
|
1947
|
-
"isESM": true,
|
|
1948
|
-
"relativePath": [
|
|
1949
|
-
"dist",
|
|
1950
|
-
"oclif",
|
|
1951
|
-
"commands",
|
|
1952
|
-
"review",
|
|
1953
|
-
"base-review-decision.js"
|
|
1954
|
-
]
|
|
1955
|
-
},
|
|
1956
|
-
"review:pending": {
|
|
1957
|
-
"aliases": [],
|
|
1958
|
-
"args": {},
|
|
1959
|
-
"description": "List all pending review operations for the current project",
|
|
1960
|
-
"examples": [
|
|
1961
|
-
"# Show all pending reviews",
|
|
1962
|
-
"<%= config.bin %> review pending",
|
|
1963
|
-
"",
|
|
1964
|
-
"# Get structured output for agent-driven workflows",
|
|
1965
|
-
"<%= config.bin %> review pending --format json"
|
|
1966
|
-
],
|
|
1967
|
-
"flags": {
|
|
1968
|
-
"format": {
|
|
1969
|
-
"description": "Output format (text or json)",
|
|
1970
|
-
"name": "format",
|
|
1971
|
-
"default": "text",
|
|
1972
|
-
"hasDynamicHelp": false,
|
|
1973
|
-
"multiple": false,
|
|
1974
|
-
"options": [
|
|
1975
|
-
"text",
|
|
1976
|
-
"json"
|
|
1977
|
-
],
|
|
1978
|
-
"type": "option"
|
|
1979
|
-
}
|
|
1980
|
-
},
|
|
1981
|
-
"hasDynamicHelp": false,
|
|
1982
|
-
"hiddenAliases": [],
|
|
1983
|
-
"id": "review:pending",
|
|
1984
|
-
"pluginAlias": "byterover-cli",
|
|
1985
|
-
"pluginName": "byterover-cli",
|
|
1986
|
-
"pluginType": "core",
|
|
1987
|
-
"strict": true,
|
|
1988
|
-
"enableJsonFlag": false,
|
|
1989
|
-
"isESM": true,
|
|
1990
|
-
"relativePath": [
|
|
1991
|
-
"dist",
|
|
1992
|
-
"oclif",
|
|
1993
|
-
"commands",
|
|
1994
|
-
"review",
|
|
1995
|
-
"pending.js"
|
|
1996
|
-
]
|
|
1997
|
-
},
|
|
1998
|
-
"review:reject": {
|
|
1999
|
-
"aliases": [],
|
|
2000
|
-
"args": {
|
|
2001
|
-
"taskId": {
|
|
2002
|
-
"description": "Task ID shown in the curate output (e.g. \"brv review reject abc-123\")",
|
|
2003
|
-
"name": "taskId",
|
|
2004
|
-
"required": true
|
|
2005
|
-
}
|
|
2006
|
-
},
|
|
2007
|
-
"description": "Reject pending review operations for a curate task (restores files from backup)",
|
|
2008
|
-
"examples": [
|
|
2009
|
-
"# Reject all pending changes from a curate task",
|
|
2010
|
-
"<%= config.bin %> review reject abc-123",
|
|
2011
|
-
"",
|
|
2012
|
-
"# Reject specific files",
|
|
2013
|
-
"<%= config.bin %> review reject abc-123 --file architecture/security/audit.md",
|
|
2014
|
-
"<%= config.bin %> review reject abc-123 --file auth/jwt.md --file auth/oauth.md",
|
|
2015
|
-
"",
|
|
2016
|
-
"# Reject and get structured output (useful for coding agents)",
|
|
2017
|
-
"<%= config.bin %> review reject abc-123 --format json"
|
|
2018
|
-
],
|
|
2019
|
-
"flags": {
|
|
2020
|
-
"file": {
|
|
2021
|
-
"description": "Reject only the specified file path(s) (relative to context tree)",
|
|
2022
|
-
"name": "file",
|
|
2023
|
-
"hasDynamicHelp": false,
|
|
2024
|
-
"multiple": true,
|
|
2025
|
-
"type": "option"
|
|
2026
|
-
},
|
|
2027
|
-
"format": {
|
|
2028
|
-
"description": "Output format (text or json)",
|
|
2029
|
-
"name": "format",
|
|
2030
|
-
"default": "text",
|
|
2031
|
-
"hasDynamicHelp": false,
|
|
2032
|
-
"multiple": false,
|
|
2033
|
-
"options": [
|
|
2034
|
-
"text",
|
|
2035
|
-
"json"
|
|
2036
|
-
],
|
|
2037
|
-
"type": "option"
|
|
2038
|
-
}
|
|
2039
|
-
},
|
|
2034
|
+
"description": "Remove a knowledge source",
|
|
2035
|
+
"examples": [
|
|
2036
|
+
"<%= config.bin %> <%= command.id %> shared-lib",
|
|
2037
|
+
"<%= config.bin %> <%= command.id %> /path/to/shared-lib"
|
|
2038
|
+
],
|
|
2039
|
+
"flags": {},
|
|
2040
2040
|
"hasDynamicHelp": false,
|
|
2041
2041
|
"hiddenAliases": [],
|
|
2042
|
-
"id": "
|
|
2042
|
+
"id": "source:remove",
|
|
2043
2043
|
"pluginAlias": "byterover-cli",
|
|
2044
2044
|
"pluginName": "byterover-cli",
|
|
2045
2045
|
"pluginType": "core",
|
|
@@ -2050,8 +2050,8 @@
|
|
|
2050
2050
|
"dist",
|
|
2051
2051
|
"oclif",
|
|
2052
2052
|
"commands",
|
|
2053
|
-
"
|
|
2054
|
-
"
|
|
2053
|
+
"source",
|
|
2054
|
+
"remove.js"
|
|
2055
2055
|
]
|
|
2056
2056
|
},
|
|
2057
2057
|
"space:list": {
|
|
@@ -2132,6 +2132,128 @@
|
|
|
2132
2132
|
"switch.js"
|
|
2133
2133
|
]
|
|
2134
2134
|
},
|
|
2135
|
+
"worktree:add": {
|
|
2136
|
+
"aliases": [],
|
|
2137
|
+
"args": {
|
|
2138
|
+
"path": {
|
|
2139
|
+
"description": "Path to the directory to register as a worktree (relative or absolute)",
|
|
2140
|
+
"name": "path",
|
|
2141
|
+
"required": false
|
|
2142
|
+
}
|
|
2143
|
+
},
|
|
2144
|
+
"description": "Register a directory as a worktree of this project",
|
|
2145
|
+
"examples": [
|
|
2146
|
+
"<%= config.bin %> <%= command.id %> packages/api",
|
|
2147
|
+
"<%= config.bin %> <%= command.id %> ../other-checkout",
|
|
2148
|
+
"<%= config.bin %> <%= command.id %> (auto-detect parent from subdirectory)"
|
|
2149
|
+
],
|
|
2150
|
+
"flags": {
|
|
2151
|
+
"force": {
|
|
2152
|
+
"description": "Replace existing .brv/ directory in target with a worktree pointer",
|
|
2153
|
+
"name": "force",
|
|
2154
|
+
"allowNo": false,
|
|
2155
|
+
"type": "boolean"
|
|
2156
|
+
}
|
|
2157
|
+
},
|
|
2158
|
+
"hasDynamicHelp": false,
|
|
2159
|
+
"hiddenAliases": [],
|
|
2160
|
+
"id": "worktree:add",
|
|
2161
|
+
"pluginAlias": "byterover-cli",
|
|
2162
|
+
"pluginName": "byterover-cli",
|
|
2163
|
+
"pluginType": "core",
|
|
2164
|
+
"strict": true,
|
|
2165
|
+
"enableJsonFlag": false,
|
|
2166
|
+
"isESM": true,
|
|
2167
|
+
"relativePath": [
|
|
2168
|
+
"dist",
|
|
2169
|
+
"oclif",
|
|
2170
|
+
"commands",
|
|
2171
|
+
"worktree",
|
|
2172
|
+
"add.js"
|
|
2173
|
+
]
|
|
2174
|
+
},
|
|
2175
|
+
"worktree": {
|
|
2176
|
+
"aliases": [],
|
|
2177
|
+
"args": {},
|
|
2178
|
+
"description": "Manage worktree links for subdirectories and sibling checkouts",
|
|
2179
|
+
"examples": [
|
|
2180
|
+
"<%= config.bin %> <%= command.id %> --help"
|
|
2181
|
+
],
|
|
2182
|
+
"flags": {},
|
|
2183
|
+
"hasDynamicHelp": false,
|
|
2184
|
+
"hiddenAliases": [],
|
|
2185
|
+
"id": "worktree",
|
|
2186
|
+
"pluginAlias": "byterover-cli",
|
|
2187
|
+
"pluginName": "byterover-cli",
|
|
2188
|
+
"pluginType": "core",
|
|
2189
|
+
"strict": true,
|
|
2190
|
+
"enableJsonFlag": false,
|
|
2191
|
+
"isESM": true,
|
|
2192
|
+
"relativePath": [
|
|
2193
|
+
"dist",
|
|
2194
|
+
"oclif",
|
|
2195
|
+
"commands",
|
|
2196
|
+
"worktree",
|
|
2197
|
+
"index.js"
|
|
2198
|
+
]
|
|
2199
|
+
},
|
|
2200
|
+
"worktree:list": {
|
|
2201
|
+
"aliases": [],
|
|
2202
|
+
"args": {},
|
|
2203
|
+
"description": "Show the current worktree link and list all registered worktrees",
|
|
2204
|
+
"examples": [
|
|
2205
|
+
"<%= config.bin %> <%= command.id %>"
|
|
2206
|
+
],
|
|
2207
|
+
"flags": {},
|
|
2208
|
+
"hasDynamicHelp": false,
|
|
2209
|
+
"hiddenAliases": [],
|
|
2210
|
+
"id": "worktree:list",
|
|
2211
|
+
"pluginAlias": "byterover-cli",
|
|
2212
|
+
"pluginName": "byterover-cli",
|
|
2213
|
+
"pluginType": "core",
|
|
2214
|
+
"strict": true,
|
|
2215
|
+
"enableJsonFlag": false,
|
|
2216
|
+
"isESM": true,
|
|
2217
|
+
"relativePath": [
|
|
2218
|
+
"dist",
|
|
2219
|
+
"oclif",
|
|
2220
|
+
"commands",
|
|
2221
|
+
"worktree",
|
|
2222
|
+
"list.js"
|
|
2223
|
+
]
|
|
2224
|
+
},
|
|
2225
|
+
"worktree:remove": {
|
|
2226
|
+
"aliases": [],
|
|
2227
|
+
"args": {
|
|
2228
|
+
"path": {
|
|
2229
|
+
"description": "Path to the worktree to remove (defaults to cwd)",
|
|
2230
|
+
"name": "path",
|
|
2231
|
+
"required": false
|
|
2232
|
+
}
|
|
2233
|
+
},
|
|
2234
|
+
"description": "Remove a worktree registration and its .brv pointer",
|
|
2235
|
+
"examples": [
|
|
2236
|
+
"<%= config.bin %> <%= command.id %> (remove cwd as worktree)",
|
|
2237
|
+
"<%= config.bin %> <%= command.id %> packages/api (remove from parent)"
|
|
2238
|
+
],
|
|
2239
|
+
"flags": {},
|
|
2240
|
+
"hasDynamicHelp": false,
|
|
2241
|
+
"hiddenAliases": [],
|
|
2242
|
+
"id": "worktree:remove",
|
|
2243
|
+
"pluginAlias": "byterover-cli",
|
|
2244
|
+
"pluginName": "byterover-cli",
|
|
2245
|
+
"pluginType": "core",
|
|
2246
|
+
"strict": true,
|
|
2247
|
+
"enableJsonFlag": false,
|
|
2248
|
+
"isESM": true,
|
|
2249
|
+
"relativePath": [
|
|
2250
|
+
"dist",
|
|
2251
|
+
"oclif",
|
|
2252
|
+
"commands",
|
|
2253
|
+
"worktree",
|
|
2254
|
+
"remove.js"
|
|
2255
|
+
]
|
|
2256
|
+
},
|
|
2135
2257
|
"swarm:curate": {
|
|
2136
2258
|
"aliases": [],
|
|
2137
2259
|
"args": {
|
|
@@ -2914,128 +3036,6 @@
|
|
|
2914
3036
|
"status.js"
|
|
2915
3037
|
]
|
|
2916
3038
|
},
|
|
2917
|
-
"worktree:add": {
|
|
2918
|
-
"aliases": [],
|
|
2919
|
-
"args": {
|
|
2920
|
-
"path": {
|
|
2921
|
-
"description": "Path to the directory to register as a worktree (relative or absolute)",
|
|
2922
|
-
"name": "path",
|
|
2923
|
-
"required": false
|
|
2924
|
-
}
|
|
2925
|
-
},
|
|
2926
|
-
"description": "Register a directory as a worktree of this project",
|
|
2927
|
-
"examples": [
|
|
2928
|
-
"<%= config.bin %> <%= command.id %> packages/api",
|
|
2929
|
-
"<%= config.bin %> <%= command.id %> ../other-checkout",
|
|
2930
|
-
"<%= config.bin %> <%= command.id %> (auto-detect parent from subdirectory)"
|
|
2931
|
-
],
|
|
2932
|
-
"flags": {
|
|
2933
|
-
"force": {
|
|
2934
|
-
"description": "Replace existing .brv/ directory in target with a worktree pointer",
|
|
2935
|
-
"name": "force",
|
|
2936
|
-
"allowNo": false,
|
|
2937
|
-
"type": "boolean"
|
|
2938
|
-
}
|
|
2939
|
-
},
|
|
2940
|
-
"hasDynamicHelp": false,
|
|
2941
|
-
"hiddenAliases": [],
|
|
2942
|
-
"id": "worktree:add",
|
|
2943
|
-
"pluginAlias": "byterover-cli",
|
|
2944
|
-
"pluginName": "byterover-cli",
|
|
2945
|
-
"pluginType": "core",
|
|
2946
|
-
"strict": true,
|
|
2947
|
-
"enableJsonFlag": false,
|
|
2948
|
-
"isESM": true,
|
|
2949
|
-
"relativePath": [
|
|
2950
|
-
"dist",
|
|
2951
|
-
"oclif",
|
|
2952
|
-
"commands",
|
|
2953
|
-
"worktree",
|
|
2954
|
-
"add.js"
|
|
2955
|
-
]
|
|
2956
|
-
},
|
|
2957
|
-
"worktree": {
|
|
2958
|
-
"aliases": [],
|
|
2959
|
-
"args": {},
|
|
2960
|
-
"description": "Manage worktree links for subdirectories and sibling checkouts",
|
|
2961
|
-
"examples": [
|
|
2962
|
-
"<%= config.bin %> <%= command.id %> --help"
|
|
2963
|
-
],
|
|
2964
|
-
"flags": {},
|
|
2965
|
-
"hasDynamicHelp": false,
|
|
2966
|
-
"hiddenAliases": [],
|
|
2967
|
-
"id": "worktree",
|
|
2968
|
-
"pluginAlias": "byterover-cli",
|
|
2969
|
-
"pluginName": "byterover-cli",
|
|
2970
|
-
"pluginType": "core",
|
|
2971
|
-
"strict": true,
|
|
2972
|
-
"enableJsonFlag": false,
|
|
2973
|
-
"isESM": true,
|
|
2974
|
-
"relativePath": [
|
|
2975
|
-
"dist",
|
|
2976
|
-
"oclif",
|
|
2977
|
-
"commands",
|
|
2978
|
-
"worktree",
|
|
2979
|
-
"index.js"
|
|
2980
|
-
]
|
|
2981
|
-
},
|
|
2982
|
-
"worktree:list": {
|
|
2983
|
-
"aliases": [],
|
|
2984
|
-
"args": {},
|
|
2985
|
-
"description": "Show the current worktree link and list all registered worktrees",
|
|
2986
|
-
"examples": [
|
|
2987
|
-
"<%= config.bin %> <%= command.id %>"
|
|
2988
|
-
],
|
|
2989
|
-
"flags": {},
|
|
2990
|
-
"hasDynamicHelp": false,
|
|
2991
|
-
"hiddenAliases": [],
|
|
2992
|
-
"id": "worktree:list",
|
|
2993
|
-
"pluginAlias": "byterover-cli",
|
|
2994
|
-
"pluginName": "byterover-cli",
|
|
2995
|
-
"pluginType": "core",
|
|
2996
|
-
"strict": true,
|
|
2997
|
-
"enableJsonFlag": false,
|
|
2998
|
-
"isESM": true,
|
|
2999
|
-
"relativePath": [
|
|
3000
|
-
"dist",
|
|
3001
|
-
"oclif",
|
|
3002
|
-
"commands",
|
|
3003
|
-
"worktree",
|
|
3004
|
-
"list.js"
|
|
3005
|
-
]
|
|
3006
|
-
},
|
|
3007
|
-
"worktree:remove": {
|
|
3008
|
-
"aliases": [],
|
|
3009
|
-
"args": {
|
|
3010
|
-
"path": {
|
|
3011
|
-
"description": "Path to the worktree to remove (defaults to cwd)",
|
|
3012
|
-
"name": "path",
|
|
3013
|
-
"required": false
|
|
3014
|
-
}
|
|
3015
|
-
},
|
|
3016
|
-
"description": "Remove a worktree registration and its .brv pointer",
|
|
3017
|
-
"examples": [
|
|
3018
|
-
"<%= config.bin %> <%= command.id %> (remove cwd as worktree)",
|
|
3019
|
-
"<%= config.bin %> <%= command.id %> packages/api (remove from parent)"
|
|
3020
|
-
],
|
|
3021
|
-
"flags": {},
|
|
3022
|
-
"hasDynamicHelp": false,
|
|
3023
|
-
"hiddenAliases": [],
|
|
3024
|
-
"id": "worktree:remove",
|
|
3025
|
-
"pluginAlias": "byterover-cli",
|
|
3026
|
-
"pluginName": "byterover-cli",
|
|
3027
|
-
"pluginType": "core",
|
|
3028
|
-
"strict": true,
|
|
3029
|
-
"enableJsonFlag": false,
|
|
3030
|
-
"isESM": true,
|
|
3031
|
-
"relativePath": [
|
|
3032
|
-
"dist",
|
|
3033
|
-
"oclif",
|
|
3034
|
-
"commands",
|
|
3035
|
-
"worktree",
|
|
3036
|
-
"remove.js"
|
|
3037
|
-
]
|
|
3038
|
-
},
|
|
3039
3039
|
"hub:registry:add": {
|
|
3040
3040
|
"aliases": [],
|
|
3041
3041
|
"args": {
|
|
@@ -3335,5 +3335,5 @@
|
|
|
3335
3335
|
]
|
|
3336
3336
|
}
|
|
3337
3337
|
},
|
|
3338
|
-
"version": "3.
|
|
3338
|
+
"version": "3.7.0"
|
|
3339
3339
|
}
|