@appoly/multiagent-chat 1.0.0 → 1.0.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 +27 -2
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -9,13 +9,13 @@ Uses your local installations of AI agents via command line. Bring your own API
|
|
|
9
9
|
### Global Install (Recommended)
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
npm i -g multiagent-chat
|
|
12
|
+
npm i -g @appoly/multiagent-chat
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
### From Source
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
git clone
|
|
18
|
+
git clone https://github.com/appoly/multiagent-chat.git
|
|
19
19
|
cd multiagent-chat
|
|
20
20
|
npm install
|
|
21
21
|
npm start
|
|
@@ -71,6 +71,31 @@ You can override with a project-local config using `--config /path/to/config.yam
|
|
|
71
71
|
5. Final agreed plan written to `PLAN_FINAL.md` in the workspace
|
|
72
72
|
6. Optionally execute the plan -- other agents will review the implementation
|
|
73
73
|
|
|
74
|
+
## Requirements
|
|
75
|
+
|
|
76
|
+
- **Node.js**: v18.x - v22.x (Node 23+ not yet supported due to native module compatibility)
|
|
77
|
+
- **AI CLI tools**: Claude Code, Codex, or other compatible agents installed separately
|
|
78
|
+
|
|
79
|
+
## Troubleshooting
|
|
80
|
+
|
|
81
|
+
### Native Module Errors
|
|
82
|
+
|
|
83
|
+
If you encounter errors with native modules (node-pty), try rebuilding:
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
cd $(npm root -g)/@appoly/multiagent-chat
|
|
87
|
+
npx @electron/rebuild
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
### Node Version Issues
|
|
91
|
+
|
|
92
|
+
This package requires Node.js 18-22. If you're on Node 23+, use nvm to switch:
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
nvm use 20
|
|
96
|
+
npm i -g @appoly/multiagent-chat
|
|
97
|
+
```
|
|
98
|
+
|
|
74
99
|
## License
|
|
75
100
|
|
|
76
101
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appoly/multiagent-chat",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Multi-agent chat for collaborative AI discussions",
|
|
5
5
|
"main": "main.js",
|
|
6
6
|
"bin": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
],
|
|
19
19
|
"scripts": {
|
|
20
20
|
"start": "electron .",
|
|
21
|
-
"
|
|
21
|
+
"rebuild": "npx @electron/rebuild"
|
|
22
22
|
},
|
|
23
23
|
"keywords": [
|
|
24
24
|
"ai",
|
|
@@ -37,14 +37,13 @@
|
|
|
37
37
|
"url": "https://github.com/appoly/multiagent-chat/issues"
|
|
38
38
|
},
|
|
39
39
|
"engines": {
|
|
40
|
-
"node": ">=18.0.0"
|
|
40
|
+
"node": ">=18.0.0 <23.0.0"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@xterm/addon-fit": "^0.10.0",
|
|
44
44
|
"@xterm/xterm": "^5.5.0",
|
|
45
45
|
"chokidar": "^3.5.3",
|
|
46
46
|
"electron": "^28.0.0",
|
|
47
|
-
"electron-rebuild": "^3.2.9",
|
|
48
47
|
"marked": "^17.0.1",
|
|
49
48
|
"node-pty": "^1.0.0",
|
|
50
49
|
"yaml": "^2.3.4"
|