@lightcone-ai/daemon 0.9.9 → 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 +1 -1
- package/src/agent-manager.js +2 -0
package/package.json
CHANGED
package/src/agent-manager.js
CHANGED
|
@@ -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 = {};
|