opencode-magi 0.0.0-dev-20260520102959 → 0.0.0-dev-20260520103801
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/commands.js +0 -12
- package/dist/index.js +4 -1
- package/package.json +1 -1
package/dist/commands.js
CHANGED
|
@@ -3,10 +3,6 @@ export const MAGI_COMMANDS = {
|
|
|
3
3
|
description: "Clear inactive Magi runs, sessions, worktrees, and outputs",
|
|
4
4
|
template: "Call the `magi_clear` tool.",
|
|
5
5
|
},
|
|
6
|
-
"magi:cancel": {
|
|
7
|
-
description: "Cancel a Magi background run",
|
|
8
|
-
template: [`Call the \`magi_cancel\` tool.`, "Selector: $ARGUMENTS"].join("\n"),
|
|
9
|
-
},
|
|
10
6
|
"magi:merge": {
|
|
11
7
|
description: "Review and merge pull requests with Magi",
|
|
12
8
|
template: [`Call the \`magi_merge\` tool.`, "PR: $ARGUMENTS"].join("\n"),
|
|
@@ -19,14 +15,6 @@ export const MAGI_COMMANDS = {
|
|
|
19
15
|
description: "Review pull requests with Magi",
|
|
20
16
|
template: [`Call the \`magi_review\` tool.`, "PR: $ARGUMENTS"].join("\n"),
|
|
21
17
|
},
|
|
22
|
-
"magi:output": {
|
|
23
|
-
description: "Show Magi run output artifacts",
|
|
24
|
-
template: [`Call the \`magi_output\` tool.`, "Selector: $ARGUMENTS"].join("\n"),
|
|
25
|
-
},
|
|
26
|
-
"magi:status": {
|
|
27
|
-
description: "Show Magi background run status",
|
|
28
|
-
template: [`Call the \`magi_status\` tool.`, "Selector: $ARGUMENTS"].join("\n"),
|
|
29
|
-
},
|
|
30
18
|
"magi:validate": {
|
|
31
19
|
description: "Validate Magi config",
|
|
32
20
|
template: "Call the `magi_validate` tool.",
|
package/dist/index.js
CHANGED
|
@@ -469,7 +469,10 @@ export const MagiPlugin = async ({ client, directory }) => {
|
|
|
469
469
|
},
|
|
470
470
|
}),
|
|
471
471
|
magi_cancel: tool({
|
|
472
|
-
description:
|
|
472
|
+
description: [
|
|
473
|
+
"Cancel a Magi background run by runId, PR, or issue.",
|
|
474
|
+
INTERNAL_FOLLOW_UP_TOOL_NOTE,
|
|
475
|
+
].join(" "),
|
|
473
476
|
args: {
|
|
474
477
|
runId: tool.schema.string().optional(),
|
|
475
478
|
pr: tool.schema.string().optional(),
|
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-20260520103801",
|
|
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>",
|