@mutmutco/hub 4.0.14 → 4.0.15
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/index.cjs +5 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -382,7 +382,11 @@ function enumerateSurfaces(env = process.env) {
|
|
|
382
382
|
return [
|
|
383
383
|
{ id: "claude", marker: (0, import_node_path3.join)(home, ".claude", "plugins", "installed_plugins.json") },
|
|
384
384
|
{ id: "codex", marker: (0, import_node_path3.join)(codexHome, "plugins", "installed_plugins.json") },
|
|
385
|
-
|
|
385
|
+
// The host, not the payload (#4951, #5356): this marker used to be plugins/local/mmi — the MMI
|
|
386
|
+
// plugin tree itself — so a machine running Cursor WITHOUT the plugin enumerated as "no Cursor"
|
|
387
|
+
// and the arm could never make the first install. The plugin's absence is a converge action, not
|
|
388
|
+
// a skip. The host root mirrors surfaceConfigRoot('cursor') in cli/src/plugin-guard-io.ts.
|
|
389
|
+
{ id: "cursor", marker: (0, import_node_path3.join)(home, ".cursor") },
|
|
386
390
|
{ id: "kilo", marker: (0, import_node_path3.join)(home, ".config", "kilo") },
|
|
387
391
|
// The host, not the payload (#4951): this marker used to be plugins/managed/mmi — the MMI plugin
|
|
388
392
|
// itself — so a machine running Kimi WITHOUT the plugin enumerated as "no Kimi" and the arm
|
package/package.json
CHANGED