@askexenow/exe-os 0.9.51 → 0.9.52
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/dist/bin/cli.js +21 -0
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -31754,6 +31754,27 @@ function diagnoseClaudeMcpConfig(homeDir = os21.homedir(), cwd2 = process.cwd(),
|
|
|
31754
31754
|
fix: "Use one source of truth per MCP server name; remove or rename duplicates."
|
|
31755
31755
|
});
|
|
31756
31756
|
}
|
|
31757
|
+
const alwaysLoadServers = [];
|
|
31758
|
+
for (const [name, config] of Object.entries(claudeJson?.mcpServers ?? {})) {
|
|
31759
|
+
if (config && typeof config === "object" && config.alwaysLoad === true) {
|
|
31760
|
+
alwaysLoadServers.push(`${name} (global)`);
|
|
31761
|
+
}
|
|
31762
|
+
}
|
|
31763
|
+
for (const [projectPath, projectConfig] of applicableProjects) {
|
|
31764
|
+
for (const [name, config] of Object.entries(projectConfig.mcpServers ?? {})) {
|
|
31765
|
+
if (config && typeof config === "object" && config.alwaysLoad === true) {
|
|
31766
|
+
alwaysLoadServers.push(`${name} (${projectPath})`);
|
|
31767
|
+
}
|
|
31768
|
+
}
|
|
31769
|
+
}
|
|
31770
|
+
if (alwaysLoadServers.length > 0) {
|
|
31771
|
+
issues.push({
|
|
31772
|
+
severity: "warn",
|
|
31773
|
+
code: "always-load-mcp-present",
|
|
31774
|
+
message: `alwaysLoad:true is set on MCP server(s): ${alwaysLoadServers.join(", ")}. Field reports from Claude Code 2.1.x show this can make servers appear Connected while tools do not inject in interactive sessions.`,
|
|
31775
|
+
fix: "Back up ~/.claude.json, remove alwaysLoad:true from affected MCP entries, restart Claude Code, and compare ToolSearch + /mcp. exe-os will not remove this automatically because it is customer-owned config."
|
|
31776
|
+
});
|
|
31777
|
+
}
|
|
31757
31778
|
for (const server of mcpJsonServers) {
|
|
31758
31779
|
for (const [projectPath, projectConfig] of applicableProjects) {
|
|
31759
31780
|
if (!projectConfig.mcpServers?.[server.name]) continue;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@askexenow/exe-os",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.52",
|
|
4
4
|
"description": "AI employee operating system — persistent memory, task management, and multi-agent coordination for Claude Code.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"type": "module",
|