opencode-magi 0.0.0-dev-20260727095408 → 0.0.0-dev-20260728014912
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.
|
@@ -252,10 +252,6 @@ async function collectAcceptedFindings(findings) {
|
|
|
252
252
|
const accepted = new Set();
|
|
253
253
|
if (!findings.length)
|
|
254
254
|
return accepted;
|
|
255
|
-
if (!this.config.review.reviewers?.length)
|
|
256
|
-
throw new MagiError("blocked", "No reviewers configured.");
|
|
257
|
-
if (!this.state.reviewers)
|
|
258
|
-
throw new MagiError("blocked", "Reviewers not found.");
|
|
259
255
|
const worker = new Worker(this.config.review.concurrency.reviewers);
|
|
260
256
|
const prompt = await Prompt.init(this.magi, this.config, "review/finding-validation");
|
|
261
257
|
const validations = Object.fromEntries(await Promise.all(this.config.review.reviewers.map(({ id }) => worker.run(async () => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-magi",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20260728014912",
|
|
4
4
|
"description": "Multi-agent PR review and merge orchestration plugin for OpenCode.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Hirotomo Yamada <hirotomo.yamada@avap.co.jp>",
|