@hmanlab/mmx 0.4.3 → 0.4.5

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.
Files changed (2) hide show
  1. package/README.md +50 -0
  2. package/package.json +3 -2
package/README.md ADDED
@@ -0,0 +1,50 @@
1
+ # @hmanlab/mmx
2
+
3
+ Image, video, music, speech, search, vision, and quota via
4
+ [MiniMax](https://www.minimaxi.com) — installed with one command into
5
+ [OpenCode](https://opencode.ai).
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ npx -y @hmanlab/hl-plugins install mmx
11
+ ```
12
+
13
+ Or install the CLI globally first:
14
+
15
+ ```bash
16
+ npm install -g @hmanlab/hl-plugins
17
+ hl-plugins install mmx
18
+ ```
19
+
20
+ ## What it does
21
+
22
+ Adds seven multimodal tools to your OpenCode session:
23
+
24
+ - `mmx_image` — generate images
25
+ - `mmx_speech` — text-to-speech
26
+ - `mmx_video` — generate videos
27
+ - `mmx_music` — generate music
28
+ - `mmx_search` — web search
29
+ - `mmx_vision` — analyze images
30
+ - `mmx_quota` — check token plan usage
31
+
32
+ ## Requirements
33
+
34
+ - [`mmx-cli`](https://github.com/MiniMax-AI/cli) — installed automatically
35
+ - MiniMax API key — prompted during install (or set `MMX_API_KEY`)
36
+
37
+ ## Claude Code
38
+
39
+ For Claude Code, use [`@hmanlab/mmx-claude`](../plugin-mmx-claude/README.md)
40
+ instead — same tools, delivered via MCP.
41
+
42
+ ## Uninstall
43
+
44
+ ```bash
45
+ hl-plugins uninstall mmx
46
+ ```
47
+
48
+ ## License
49
+
50
+ MIT
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@hmanlab/mmx",
3
- "version": "0.4.3",
3
+ "version": "0.4.5",
4
4
  "description": "Multimodal generation via MiniMax (image, video, music, speech, search, vision, quota).",
5
5
  "type": "module",
6
6
  "files": [
7
- "opencode"
7
+ "opencode",
8
+ "README.md"
8
9
  ],
9
10
  "hl-plugins": {
10
11
  "opencodePlugin": "./opencode/plugin/mmx-tools.ts",