@appoly/multiagent-chat 1.0.0 → 1.0.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 +26 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,3 +1,9 @@
1
+ <p align="center">
2
+ <a href="https://appoly.co.uk"><img src="appoly-logo-white-bg.png" alt="Appoly" height="50"></a>
3
+ &nbsp;&nbsp;&nbsp;
4
+ <img src="robot.png" alt="Multi-Agent Chat" height="80">
5
+ </p>
6
+
1
7
  # Multi-Agent Chat
2
8
 
3
9
  An Electron app that enables multiple AI agents (Claude, Codex, etc.) to collaborate on challenges through a shared chat interface.
@@ -6,27 +12,21 @@ Uses your local installations of AI agents via command line. Bring your own API
6
12
 
7
13
  ## Installation
8
14
 
9
- ### Global Install (Recommended)
10
-
11
15
  ```bash
12
- npm i -g multiagent-chat
16
+ npm i -g @appoly/multiagent-chat
13
17
  ```
14
18
 
15
- ### From Source
19
+ ## Usage
20
+
21
+ Run in your project directory:
16
22
 
17
23
  ```bash
18
- git clone <repo>
19
- cd multiagent-chat
20
- npm install
21
- npm start
24
+ multiagent-chat
22
25
  ```
23
26
 
24
- ## Usage
27
+ ### Advanced
25
28
 
26
29
  ```bash
27
- # Run in current directory (uses cwd as workspace)
28
- multiagent-chat
29
-
30
30
  # Specify workspace explicitly
31
31
  multiagent-chat /path/to/project
32
32
  multiagent-chat --workspace /path/to/project
@@ -71,6 +71,20 @@ 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
+ ## Contributing
80
+
81
+ ```bash
82
+ git clone https://github.com/appoly/multiagent-chat.git
83
+ cd multiagent-chat
84
+ npm install
85
+ npm start
86
+ ```
87
+
74
88
  ## License
75
89
 
76
90
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appoly/multiagent-chat",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Multi-agent chat for collaborative AI discussions",
5
5
  "main": "main.js",
6
6
  "bin": {