opencode-magi 0.0.0-dev-20260522221258 → 0.0.0-dev-20260522221334

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.
@@ -53,7 +53,7 @@ async function withReviewerFailureProgress(input) {
53
53
  async function runEditor(input, worktreePath, cycle, reviewFindings, unresolvedThreads) {
54
54
  const editor = input.repository.agents.editor;
55
55
  if (!editor)
56
- throw new Error("agents.editor is required for magi_merge");
56
+ throw new Error("merge.editor is required for magi_merge");
57
57
  throwIfAborted(input.signal);
58
58
  await configureGitIdentity(input.exec, worktreePath, {
59
59
  email: editor.author?.email,
@@ -587,7 +587,7 @@ export async function runMerge(input) {
587
587
  const abortableInput = { ...input, exec };
588
588
  const editor = input.repository.agents.editor;
589
589
  if (!editor)
590
- throw new Error("agents.editor is required for magi_merge");
590
+ throw new Error("merge.editor is required for magi_merge");
591
591
  throwIfAborted(input.signal);
592
592
  const artifactDir = outputDir(input);
593
593
  await mkdir(artifactDir, { recursive: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-magi",
3
- "version": "0.0.0-dev-20260522221258",
3
+ "version": "0.0.0-dev-20260522221334",
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>",