@tjamescouch/agentchat 0.16.2 → 0.16.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.
Files changed (2) hide show
  1. package/lib/daemon.js +1 -1
  2. package/package.json +1 -1
package/lib/daemon.js CHANGED
@@ -19,7 +19,7 @@ const DAEMONS_DIR = path.join(AGENTCHAT_DIR, 'daemons');
19
19
  // Default instance name
20
20
  const DEFAULT_INSTANCE = 'default';
21
21
 
22
- const DEFAULT_CHANNELS = ['#general', '#agents'];
22
+ const DEFAULT_CHANNELS = ['#general', '#agents', '#code-review', '#servers'];
23
23
  const MAX_INBOX_LINES = 1000;
24
24
  const RECONNECT_DELAY = 5000; // 5 seconds
25
25
  const MAX_RECONNECT_TIME = 10 * 60 * 1000; // 10 minutes default
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tjamescouch/agentchat",
3
- "version": "0.16.2",
3
+ "version": "0.16.4",
4
4
  "description": "Real-time IRC-like communication protocol for AI agents",
5
5
  "main": "lib/client.js",
6
6
  "files": [