@floomhq/floom 1.0.27 → 1.0.28

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.
Files changed (2) hide show
  1. package/dist/doctor.js +1 -1
  2. package/package.json +1 -1
package/dist/doctor.js CHANGED
@@ -83,7 +83,7 @@ async function checkMcp() {
83
83
  // package name is @floomhq/floom-mcp-sync. Detect by package name OR
84
84
  // by "floom" + "mcp_servers"/"mcpServers" co-occurrence.
85
85
  const hasFloom = buf.includes("@floomhq/floom-mcp-sync") ||
86
- (buf.includes("\"floom\"") && (buf.includes("mcpServers") || buf.includes("mcp_servers"))) ||
86
+ (buf.includes("\"floom\"") && (buf.includes("mcpServers") || buf.includes("mcp_servers") || buf.includes("\"mcp\""))) ||
87
87
  (buf.includes("[mcp_servers.floom]"));
88
88
  if (hasFloom)
89
89
  found.push({ name: cand.name, configPath: cand.path, hasFloom });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@floomhq/floom",
3
- "version": "1.0.27",
3
+ "version": "1.0.28",
4
4
  "description": "Sync AI skills across agents and machines.",
5
5
  "license": "MIT",
6
6
  "type": "module",