opencode-magi 0.0.0-dev-20260523044712 → 0.0.0-dev-20260523045656
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/dist/config/validate.js
CHANGED
|
@@ -138,13 +138,11 @@ const MERGE_PROMPT_KEYS = new Set([
|
|
|
138
138
|
const TRIAGE_PROMPT_KEYS = new Set([
|
|
139
139
|
"acceptance",
|
|
140
140
|
"category",
|
|
141
|
-
"comment",
|
|
142
141
|
"commentClassification",
|
|
143
142
|
"create",
|
|
144
143
|
"createGuidelines",
|
|
145
144
|
"duplicate",
|
|
146
145
|
"existingPr",
|
|
147
|
-
"question",
|
|
148
146
|
"reconsider",
|
|
149
147
|
]);
|
|
150
148
|
function githubHost(config) {
|
package/dist/prompts/compose.js
CHANGED
|
@@ -339,38 +339,6 @@ async function composeTriageVotePrompt(input) {
|
|
|
339
339
|
.filter(Boolean)
|
|
340
340
|
.join("\n\n");
|
|
341
341
|
}
|
|
342
|
-
export async function composeTriageCommentPrompt(input) {
|
|
343
|
-
const values = triageValues(input);
|
|
344
|
-
const task = await taskBlock({
|
|
345
|
-
builtin: "triage/comment",
|
|
346
|
-
customPath: input.repository.triage?.prompts.comment,
|
|
347
|
-
directory: input.directory,
|
|
348
|
-
values,
|
|
349
|
-
});
|
|
350
|
-
return [
|
|
351
|
-
task,
|
|
352
|
-
languageBlock(input.repository.language),
|
|
353
|
-
`<context>\n${input.context}\n</context>`,
|
|
354
|
-
]
|
|
355
|
-
.filter(Boolean)
|
|
356
|
-
.join("\n\n");
|
|
357
|
-
}
|
|
358
|
-
export async function composeTriageQuestionPrompt(input) {
|
|
359
|
-
const values = triageValues(input);
|
|
360
|
-
const task = await taskBlock({
|
|
361
|
-
builtin: "triage/question",
|
|
362
|
-
customPath: input.repository.triage?.prompts.question,
|
|
363
|
-
directory: input.directory,
|
|
364
|
-
values,
|
|
365
|
-
});
|
|
366
|
-
return [
|
|
367
|
-
task,
|
|
368
|
-
languageBlock(input.repository.language),
|
|
369
|
-
`<context>\n${input.context}\n</context>`,
|
|
370
|
-
]
|
|
371
|
-
.filter(Boolean)
|
|
372
|
-
.join("\n\n");
|
|
373
|
-
}
|
|
374
342
|
export async function composeTriageCreatePrPrompt(input) {
|
|
375
343
|
const values = triageValues(input);
|
|
376
344
|
const task = await taskBlock({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-magi",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20260523045656",
|
|
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
|
@@ -229,8 +229,6 @@
|
|
|
229
229
|
"duplicate": { "type": "string" },
|
|
230
230
|
"category": { "type": "string" },
|
|
231
231
|
"acceptance": { "type": "string" },
|
|
232
|
-
"question": { "type": "string" },
|
|
233
|
-
"comment": { "type": "string" },
|
|
234
232
|
"commentClassification": { "type": "string" },
|
|
235
233
|
"reconsider": { "type": "string" },
|
|
236
234
|
"create": { "type": "string" },
|