opencode-magi 0.0.0-dev-20260714075857 → 0.0.0-dev-20260714091053
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 +2 -2
- package/dist/tools/review/reviewer.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -352,7 +352,7 @@ async function notifyVerdictChanges(prev, next, reason) {
|
|
|
352
352
|
const nextVerdict = reviewer.outputs?.at(-1)?.verdict;
|
|
353
353
|
if (!prevVerdict || !nextVerdict || prevVerdict === nextVerdict)
|
|
354
354
|
return;
|
|
355
|
-
await this.updateEvent(`Reviewer ${id} verdict changed from ${prevVerdict} to ${nextVerdict} ${reason}.`);
|
|
355
|
+
await this.updateEvent(`Reviewer ${id} verdict changed from ${toTitleCase(prevVerdict.toLocaleLowerCase())} to ${toTitleCase(nextVerdict.toLocaleLowerCase())} ${reason}.`);
|
|
356
356
|
}));
|
|
357
357
|
}
|
|
358
358
|
function validateInlineCommentTargets(status, output, inlineCommentTargets) {
|
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-20260714091053",
|
|
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>",
|