@lightcone-ai/daemon 0.9.8 → 0.9.10

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": "@lightcone-ai/daemon",
3
- "version": "0.9.8",
3
+ "version": "0.9.10",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -86,7 +86,7 @@ export class AgentManager {
86
86
  async _startAgent({ agentId, teamId, teamName, config }, connection) {
87
87
  const key = this._key(agentId, teamId);
88
88
  if (this.agents.has(key) || this.starting.has(key)) {
89
- console.log(`[AgentManager] Agent ${agentId} in team ${teamId} already registered`);
89
+ console.log(`[AgentManager] Agent ${config?.displayName ?? agentId} in team ${teamName ?? teamId} already registered`);
90
90
  return;
91
91
  }
92
92
  this.starting.add(key);
@@ -233,6 +233,8 @@ export class AgentManager {
233
233
  return new URL('../../mcp-servers/workspace-migrate/index.js', import.meta.url).pathname;
234
234
  if (a === '{platform_mcp_path}')
235
235
  return new URL('../../mcp-servers/platform/index.js', import.meta.url).pathname;
236
+ if (a === '{xhs_profile_dir}')
237
+ return path.join(homedir(), '.lightcone', 'chrome-profiles', 'xhs');
236
238
  return a;
237
239
  });
238
240
  const resolvedEnv = {};