@hmanlab/multiplayer 0.4.3 → 0.4.4
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 +38 -0
- package/package.json +3 -2
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# @hmanlab/multiplayer
|
|
2
|
+
|
|
3
|
+
Real-time multiplayer for [OpenCode](https://opencode.ai). Two or more
|
|
4
|
+
developers collaborate in the same coding session.
|
|
5
|
+
|
|
6
|
+
## Install
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
npx -y @hmanlab/hl-plugins install multiplayer
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Or install the CLI globally first:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm install -g @hmanlab/hl-plugins
|
|
16
|
+
hl-plugins install multiplayer
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## What it does
|
|
20
|
+
|
|
21
|
+
- Host and join multiplayer coding sessions
|
|
22
|
+
- Companion pane auto-spawns (tmux / iTerm2 / detached terminal)
|
|
23
|
+
- Chat roundtrip between peers
|
|
24
|
+
- Typing indicator
|
|
25
|
+
|
|
26
|
+
## Requirements
|
|
27
|
+
|
|
28
|
+
None — no external binaries or API keys needed.
|
|
29
|
+
|
|
30
|
+
## Uninstall
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
hl-plugins uninstall multiplayer
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## License
|
|
37
|
+
|
|
38
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hmanlab/multiplayer",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"description": "Real-time multiplayer for OpenCode. Two or more developers collaborate in the same session. Phase 03: companion pane auto-spawns (tmux / iTerm2 / detached terminal); chat roundtrip; typing indicator.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"opencode",
|
|
8
|
-
"dist"
|
|
8
|
+
"dist",
|
|
9
|
+
"README.md"
|
|
9
10
|
],
|
|
10
11
|
"scripts": {
|
|
11
12
|
"prepublishOnly": "bun build ./opencode/plugin/multiplayer-tools.ts --outfile=dist/multiplayer-tools.js --target=bun --external @opencode-ai/plugin"
|