@ian2018cs/agenthub 0.1.53 → 0.1.54

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ian2018cs/agenthub",
3
- "version": "0.1.53",
3
+ "version": "0.1.54",
4
4
  "description": "A web-based UI for AI Agents",
5
5
  "type": "module",
6
6
  "main": "server/index.js",
@@ -272,7 +272,8 @@ async function getProjects(userUuid) {
272
272
  displayName: customName || autoDisplayName,
273
273
  fullPath: fullPath,
274
274
  isCustomName: !!customName,
275
- sessions: []
275
+ sessions: [],
276
+ ...(config[entry.name]?.agentInfo ? { agentInfo: config[entry.name].agentInfo } : {})
276
277
  };
277
278
 
278
279
  // Try to get sessions for this project (just first 5 for performance)