@a4hgehad/weave-mcp 0.8.8 → 0.8.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.
Files changed (2) hide show
  1. package/dist/index.js +3 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1965,7 +1965,9 @@ class ConfigHandler {
1965
1965
  const merged = override ? { ...agentConfig, ...override } : { ...agentConfig };
1966
1966
  const displayName = getAgentDisplayName(name);
1967
1967
  result[displayName] = merged;
1968
- result[name] = merged;
1968
+ if (name === "loom" || name === "tapestry") {
1969
+ result[name] = merged;
1970
+ }
1969
1971
  }
1970
1972
  return result;
1971
1973
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a4hgehad/weave-mcp",
3
- "version": "0.8.8",
3
+ "version": "0.8.10",
4
4
  "description": "Weave-MCP — lean OpenCode plugin with multi-agent orchestration and MCP support",
5
5
  "author": "3r3bu5",
6
6
  "license": "MIT",