opencode-multiplexer 0.2.1 → 0.2.2

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 +5 -0
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -43,8 +43,13 @@ When you're juggling several repositories at once, OCMux removes the friction of
43
43
  ### Install from npm
44
44
 
45
45
  ```bash
46
+ # install
46
47
  npm install -g opencode-multiplexer
48
+
49
+ # to run, run
47
50
  ocmux
51
+ # or
52
+ opencode-multiplexer
48
53
  ```
49
54
 
50
55
  ### Run from source
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "opencode-multiplexer",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "type": "module",
5
5
  "description": "Multiplexer for opencode AI coding agent sessions",
6
6
  "keywords": ["opencode", "ai", "agent", "tui", "multiplexer"],
7
7
  "bin": {
8
- "ocmux": "./src/index.tsx"
8
+ "ocmux": "./src/index.tsx",
9
+ "opencode-multiplexer": "./src/index.tsx"
9
10
  },
10
11
  "scripts": {
11
12
  "dev": "bun src/index.tsx",