@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 +1 -1
- package/src/mcp-config.js +1 -1
package/package.json
CHANGED
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]
|
|
114
|
+
resolvedEnv[envKey] = agentEnv[envKey] || process.env[envKey] || '';
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
if (mcpServers[mc.server]) {
|