opencode-magi 0.0.0-dev-20260520193633 → 0.0.0-dev-20260520195444

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.
@@ -140,7 +140,7 @@ const TRIAGE_PROMPT_KEYS = new Set([
140
140
  "category",
141
141
  "comment",
142
142
  "commentClassification",
143
- "createPr",
143
+ "create",
144
144
  "duplicate",
145
145
  "existingPr",
146
146
  "question",
@@ -377,8 +377,8 @@ export async function composeTriageQuestionPrompt(input) {
377
377
  export async function composeTriageCreatePrPrompt(input) {
378
378
  const values = triageValues(input);
379
379
  const task = await taskBlock({
380
- builtin: "triage/create-pr",
381
- customPath: input.repository.triage?.prompts.createPr,
380
+ builtin: "triage/create",
381
+ customPath: input.repository.triage?.prompts.create,
382
382
  directory: input.directory,
383
383
  values,
384
384
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-magi",
3
- "version": "0.0.0-dev-20260520193633",
3
+ "version": "0.0.0-dev-20260520195444",
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
@@ -201,7 +201,7 @@
201
201
  "comment": { "type": "string" },
202
202
  "commentClassification": { "type": "string" },
203
203
  "reconsider": { "type": "string" },
204
- "createPr": { "type": "string" }
204
+ "create": { "type": "string" }
205
205
  }
206
206
  },
207
207
  "triageCategory": {