@tjamescouch/agentchat 0.16.3 → 0.16.5

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/bin/agentchat.js +2 -1
  2. package/package.json +1 -1
package/bin/agentchat.js CHANGED
@@ -201,7 +201,8 @@ program
201
201
 
202
202
  console.log(`Agents in ${channel}:`);
203
203
  for (const agent of agents) {
204
- console.log(` ${agent}`);
204
+ const status = agent.status_text ? ` - ${agent.status_text}` : '';
205
+ console.log(` ${agent.id} (${agent.name}) [${agent.presence}]${status}`);
205
206
  }
206
207
 
207
208
  client.disconnect();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tjamescouch/agentchat",
3
- "version": "0.16.3",
3
+ "version": "0.16.5",
4
4
  "description": "Real-time IRC-like communication protocol for AI agents",
5
5
  "main": "lib/client.js",
6
6
  "files": [