opencode-magi 0.0.0-dev-20260519071726 → 0.0.0-dev-20260519073739

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.
@@ -119,7 +119,7 @@ export function resolveRepository(config) {
119
119
  },
120
120
  reviewAutomation: {
121
121
  close: config.review?.automation?.close ?? false,
122
- merge: config.review?.automation?.merge ?? false,
122
+ merge: config.review?.automation?.merge ?? true,
123
123
  },
124
124
  safety: {
125
125
  allowAuthors: config.review?.safety?.allowAuthors ?? [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-magi",
3
- "version": "0.0.0-dev-20260519071726",
3
+ "version": "0.0.0-dev-20260519073739",
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>",
package/schema.json CHANGED
@@ -88,7 +88,7 @@
88
88
  "type": "object",
89
89
  "additionalProperties": false,
90
90
  "properties": {
91
- "merge": { "type": "boolean" },
91
+ "merge": { "type": "boolean", "default": true },
92
92
  "close": { "type": "boolean" }
93
93
  }
94
94
  },