@hugo.bastidas/minimax-plugin 0.1.0 → 0.1.1
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/README.md +5 -9
- package/package.json +3 -3
- package/scripts/install.mjs +0 -0
package/README.md
CHANGED
|
@@ -17,14 +17,10 @@ solo lo que el host necesita.
|
|
|
17
17
|
## Instalación
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
#
|
|
21
|
-
|
|
22
|
-
npm run build
|
|
23
|
-
|
|
24
|
-
# Instalador interactivo (soporta Claude Code, Codex, OpenCode)
|
|
25
|
-
npm run setup
|
|
20
|
+
# Instalador interactivo (recomendado)
|
|
21
|
+
npx -y @hugo.bastidas/minimax-plugin
|
|
26
22
|
|
|
27
|
-
#
|
|
23
|
+
# Ver estadísticas de ahorro de tokens
|
|
28
24
|
minimax gain
|
|
29
25
|
```
|
|
30
26
|
|
|
@@ -105,7 +101,7 @@ MINIMAX_MODEL = "MiniMax-M3"
|
|
|
105
101
|
## Desinstalación
|
|
106
102
|
|
|
107
103
|
```bash
|
|
108
|
-
|
|
104
|
+
npx @hugo.bastidas/minimax-plugin
|
|
109
105
|
# Seleccionar "Uninstall"
|
|
110
106
|
```
|
|
111
107
|
|
|
@@ -257,7 +253,7 @@ Todas las salidas pesadas se almacenan en `.minimax/runs/<timestamp>-<slug>/`:
|
|
|
257
253
|
|
|
258
254
|
```bash
|
|
259
255
|
npm install
|
|
256
|
+
npm run build
|
|
260
257
|
npm test
|
|
261
258
|
npm run typecheck
|
|
262
|
-
npm run build
|
|
263
259
|
```
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hugo.bastidas/minimax-plugin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "MCP delegation plugin for MiniMax M3 — Claude Code, Codex, and OpenCode compatible",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
|
-
"minimax-plugin": "./
|
|
8
|
+
"minimax-plugin": "./scripts/install.mjs",
|
|
9
9
|
"minimax": "./dist/cli.js"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"test": "vitest run",
|
|
17
17
|
"test:watch": "vitest",
|
|
18
18
|
"typecheck": "tsc --noEmit",
|
|
19
|
-
"postbuild": "node -e \"const {chmodSync}=require('fs');chmodSync('dist/cli.js',0o755);\"",
|
|
19
|
+
"postbuild": "node -e \"const {chmodSync}=require('fs');chmodSync('dist/cli.js',0o755);chmodSync('scripts/install.mjs',0o755);\"",
|
|
20
20
|
"prepublishOnly": "npm run build && npm test"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
package/scripts/install.mjs
CHANGED
|
File without changes
|