prism-pr 1.0.0-alpha.48 → 1.0.0-alpha.49
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/oclif.manifest.json +69 -69
- package/package.json +2 -3
package/oclif.manifest.json
CHANGED
|
@@ -193,6 +193,74 @@
|
|
|
193
193
|
"index.js"
|
|
194
194
|
]
|
|
195
195
|
},
|
|
196
|
+
"review:start": {
|
|
197
|
+
"aliases": [],
|
|
198
|
+
"args": {},
|
|
199
|
+
"description": "Run an AI code review on a Bitbucket pull request",
|
|
200
|
+
"examples": [
|
|
201
|
+
"$ prism review start --pr 42 --repo my-repo --workspace my-company",
|
|
202
|
+
"$ prism review start --pr 42 --repo my-repo --workspace my-company --verbose"
|
|
203
|
+
],
|
|
204
|
+
"flags": {
|
|
205
|
+
"pr": {
|
|
206
|
+
"description": "Pull request ID",
|
|
207
|
+
"name": "pr",
|
|
208
|
+
"required": true,
|
|
209
|
+
"hasDynamicHelp": false,
|
|
210
|
+
"multiple": false,
|
|
211
|
+
"type": "option"
|
|
212
|
+
},
|
|
213
|
+
"repo": {
|
|
214
|
+
"description": "Repository slug",
|
|
215
|
+
"name": "repo",
|
|
216
|
+
"required": true,
|
|
217
|
+
"hasDynamicHelp": false,
|
|
218
|
+
"multiple": false,
|
|
219
|
+
"type": "option"
|
|
220
|
+
},
|
|
221
|
+
"workspace": {
|
|
222
|
+
"description": "Bitbucket workspace slug",
|
|
223
|
+
"name": "workspace",
|
|
224
|
+
"required": true,
|
|
225
|
+
"hasDynamicHelp": false,
|
|
226
|
+
"multiple": false,
|
|
227
|
+
"type": "option"
|
|
228
|
+
},
|
|
229
|
+
"verbose": {
|
|
230
|
+
"description": "Enable verbose/debug logging",
|
|
231
|
+
"name": "verbose",
|
|
232
|
+
"allowNo": false,
|
|
233
|
+
"type": "boolean"
|
|
234
|
+
},
|
|
235
|
+
"provider": {
|
|
236
|
+
"description": "AI provider to use (anthropic or claude-code)",
|
|
237
|
+
"name": "provider",
|
|
238
|
+
"required": false,
|
|
239
|
+
"hasDynamicHelp": false,
|
|
240
|
+
"multiple": false,
|
|
241
|
+
"options": [
|
|
242
|
+
"anthropic",
|
|
243
|
+
"claude-code"
|
|
244
|
+
],
|
|
245
|
+
"type": "option"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
248
|
+
"hasDynamicHelp": false,
|
|
249
|
+
"hiddenAliases": [],
|
|
250
|
+
"id": "review:start",
|
|
251
|
+
"pluginAlias": "prism-pr",
|
|
252
|
+
"pluginName": "prism-pr",
|
|
253
|
+
"pluginType": "core",
|
|
254
|
+
"strict": true,
|
|
255
|
+
"enableJsonFlag": false,
|
|
256
|
+
"isESM": true,
|
|
257
|
+
"relativePath": [
|
|
258
|
+
"dist",
|
|
259
|
+
"commands",
|
|
260
|
+
"review",
|
|
261
|
+
"start.js"
|
|
262
|
+
]
|
|
263
|
+
},
|
|
196
264
|
"rules:push": {
|
|
197
265
|
"aliases": [],
|
|
198
266
|
"args": {},
|
|
@@ -393,75 +461,7 @@
|
|
|
393
461
|
"rules",
|
|
394
462
|
"sync.js"
|
|
395
463
|
]
|
|
396
|
-
},
|
|
397
|
-
"review:start": {
|
|
398
|
-
"aliases": [],
|
|
399
|
-
"args": {},
|
|
400
|
-
"description": "Run an AI code review on a Bitbucket pull request",
|
|
401
|
-
"examples": [
|
|
402
|
-
"$ prism review start --pr 42 --repo my-repo --workspace my-company",
|
|
403
|
-
"$ prism review start --pr 42 --repo my-repo --workspace my-company --verbose"
|
|
404
|
-
],
|
|
405
|
-
"flags": {
|
|
406
|
-
"pr": {
|
|
407
|
-
"description": "Pull request ID",
|
|
408
|
-
"name": "pr",
|
|
409
|
-
"required": true,
|
|
410
|
-
"hasDynamicHelp": false,
|
|
411
|
-
"multiple": false,
|
|
412
|
-
"type": "option"
|
|
413
|
-
},
|
|
414
|
-
"repo": {
|
|
415
|
-
"description": "Repository slug",
|
|
416
|
-
"name": "repo",
|
|
417
|
-
"required": true,
|
|
418
|
-
"hasDynamicHelp": false,
|
|
419
|
-
"multiple": false,
|
|
420
|
-
"type": "option"
|
|
421
|
-
},
|
|
422
|
-
"workspace": {
|
|
423
|
-
"description": "Bitbucket workspace slug",
|
|
424
|
-
"name": "workspace",
|
|
425
|
-
"required": true,
|
|
426
|
-
"hasDynamicHelp": false,
|
|
427
|
-
"multiple": false,
|
|
428
|
-
"type": "option"
|
|
429
|
-
},
|
|
430
|
-
"verbose": {
|
|
431
|
-
"description": "Enable verbose/debug logging",
|
|
432
|
-
"name": "verbose",
|
|
433
|
-
"allowNo": false,
|
|
434
|
-
"type": "boolean"
|
|
435
|
-
},
|
|
436
|
-
"provider": {
|
|
437
|
-
"description": "AI provider to use (anthropic or claude-code)",
|
|
438
|
-
"name": "provider",
|
|
439
|
-
"required": false,
|
|
440
|
-
"hasDynamicHelp": false,
|
|
441
|
-
"multiple": false,
|
|
442
|
-
"options": [
|
|
443
|
-
"anthropic",
|
|
444
|
-
"claude-code"
|
|
445
|
-
],
|
|
446
|
-
"type": "option"
|
|
447
|
-
}
|
|
448
|
-
},
|
|
449
|
-
"hasDynamicHelp": false,
|
|
450
|
-
"hiddenAliases": [],
|
|
451
|
-
"id": "review:start",
|
|
452
|
-
"pluginAlias": "prism-pr",
|
|
453
|
-
"pluginName": "prism-pr",
|
|
454
|
-
"pluginType": "core",
|
|
455
|
-
"strict": true,
|
|
456
|
-
"enableJsonFlag": false,
|
|
457
|
-
"isESM": true,
|
|
458
|
-
"relativePath": [
|
|
459
|
-
"dist",
|
|
460
|
-
"commands",
|
|
461
|
-
"review",
|
|
462
|
-
"start.js"
|
|
463
|
-
]
|
|
464
464
|
}
|
|
465
465
|
},
|
|
466
|
-
"version": "1.0.0-alpha.
|
|
466
|
+
"version": "1.0.0-alpha.49"
|
|
467
467
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prism-pr",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.49",
|
|
4
4
|
"description": "Intelligent Pull Request review orchestrator for Bitbucket",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -23,8 +23,7 @@
|
|
|
23
23
|
"release:graduate": "commit-and-tag-version",
|
|
24
24
|
"db:generate": "drizzle-kit generate",
|
|
25
25
|
"db:migrate": "drizzle-kit migrate",
|
|
26
|
-
"postbuild": "copyfiles -u 1 \"src/persistence/migrations/**/*\" \"src/ai/agents/prompts/**/*\" dist && oclif manifest"
|
|
27
|
-
"postinstall": "oclif manifest"
|
|
26
|
+
"postbuild": "copyfiles -u 1 \"src/persistence/migrations/**/*\" \"src/ai/agents/prompts/**/*\" dist && oclif manifest"
|
|
28
27
|
},
|
|
29
28
|
"oclif": {
|
|
30
29
|
"bin": "prism",
|