@cryptiklemur/lattice 1.18.3 → 1.18.5

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.
@@ -1,8 +1,8 @@
1
1
  var JETBRAINS_IDS: Record<string, string> = {
2
- webstorm: "webstorm",
2
+ webstorm: "web-storm",
3
3
  intellij: "idea",
4
- pycharm: "pycharm",
5
- goland: "goland",
4
+ pycharm: "py-charm",
5
+ goland: "go-land",
6
6
  };
7
7
 
8
8
  function toWindowsPath(linuxPath: string, wslDistro: string): string {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cryptiklemur/lattice",
3
- "version": "1.18.3",
3
+ "version": "1.18.5",
4
4
  "description": "Multi-machine agentic dashboard for Claude Code. Monitor sessions, manage MCP servers and skills, orchestrate across mesh-networked nodes.",
5
5
  "license": "MIT",
6
6
  "author": "Aaron Scherer <me@aaronscherer.me>",
@@ -9,6 +9,7 @@ import { join } from "node:path";
9
9
  import { homedir } from "node:os";
10
10
  import { readGlobalMcpServers, writeGlobalMcpServers, readGlobalSkills, readGlobalRules } from "../project/project-files";
11
11
  import { sendBudgetStatus } from "./chat";
12
+ import { buildNodesMessage } from "./mesh";
12
13
 
13
14
  function detectIdeProjectName(projectPath: string): string | undefined {
14
15
  try {
@@ -78,6 +79,7 @@ registerHandler("settings", function (clientId: string, message: ClientMessage)
78
79
  return { slug: p.slug, path: p.path, title: p.title, nodeId: identity.id, nodeName: config.name, isRemote: false, ideProjectName: detectIdeProjectName(p.path) };
79
80
  }),
80
81
  });
82
+ sendTo(clientId, { type: "mesh:nodes", nodes: buildNodesMessage() });
81
83
  sendBudgetStatus(clientId);
82
84
  return;
83
85
  }