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 CHANGED
@@ -212,8 +212,8 @@ Run commands from OpenCode.
212
212
 
213
213
  ## Docs
214
214
 
215
- - [Commands](docs/commands/index.en.md)
216
- - [Config](docs/config.en.md)
215
+ - [Commands](docs/commands/index.md)
216
+ - [Config](docs/config.md)
217
217
 
218
218
  ## Contributing
219
219
 
@@ -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-20260714075857",
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>",