@lightcone-ai/daemon 0.15.23 → 0.15.24

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.15.23",
3
+ "version": "0.15.24",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/mcp-config.js CHANGED
@@ -111,7 +111,7 @@ export function buildSkillMcpServers({
111
111
  const resolvedArgs = (mc.args ?? []).map(arg => resolveSkillArg(arg, config));
112
112
  const resolvedEnv = {};
113
113
  for (const envKey of (mc.env ?? [])) {
114
- resolvedEnv[envKey] = agentEnv[envKey] ?? process.env[envKey] ?? '';
114
+ resolvedEnv[envKey] = agentEnv[envKey] || process.env[envKey] || '';
115
115
  }
116
116
 
117
117
  if (mcpServers[mc.server]) {