opencode-magi 0.0.0-dev-20260523030356 → 0.0.0-dev-20260523030821

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.
@@ -156,7 +156,7 @@ async function runVote(input) {
156
156
  parse: input.parse,
157
157
  permission: input.agent.permission,
158
158
  prompt,
159
- repairAttempts: 3,
159
+ repairAttempts: input.run.config.output?.repairAttempts ?? 3,
160
160
  schemaName: input.schemaName,
161
161
  signal: input.signal,
162
162
  title: `Magi triage ${input.schemaName} #${input.issue} (${input.agent.key})`,
@@ -484,7 +484,7 @@ async function classifyMentionReplies(input) {
484
484
  parse: parseTriageCommentClassificationOutput,
485
485
  permission: agent.permission,
486
486
  prompt,
487
- repairAttempts: 3,
487
+ repairAttempts: input.input.config.output?.repairAttempts ?? 3,
488
488
  schemaName: "triage comment classification",
489
489
  signal: input.input.signal,
490
490
  title: `Magi triage comment classification #${input.input.issue} (${agent.key})`,
@@ -823,7 +823,7 @@ async function createImplementationPr(input) {
823
823
  parse: parseTriageCreatePrOutput,
824
824
  permission: creator.permission,
825
825
  prompt,
826
- repairAttempts: 3,
826
+ repairAttempts: input.input.config.output?.repairAttempts ?? 3,
827
827
  schemaName: "triage create PR",
828
828
  signal: input.input.signal,
829
829
  title: `Magi triage create PR #${input.issue.number}`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-magi",
3
- "version": "0.0.0-dev-20260523030356",
3
+ "version": "0.0.0-dev-20260523030821",
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>",