@syke1/mcp-server 1.3.17 → 1.3.18

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.
@@ -290,7 +290,7 @@ async function loadGraph() {
290
290
  })
291
291
  .linkDirectionalParticleSpeed(link => highlightLinks.has(link) ? 0.012 : 0.006)
292
292
  .linkDirectionalParticleColor(link => {
293
- if (highlightLinks.has(link)) return "#ff2d55";
293
+ if (highlightLinks.has(link)) return "#ffffff";
294
294
  const isActive = modifyingNodes.size > 0 || heartbeatNodes.size > 0;
295
295
  if (isActive) return "rgba(150,180,220,0.6)";
296
296
  return LAYER_HEX[srcLayer(link)] || "#ff69b4";
@@ -2720,26 +2720,25 @@ async function loadProjectInfo() {
2720
2720
  hideServerOffline();
2721
2721
  updateLicenseBadge(info.plan, info.expiresAt);
2722
2722
  // Bottom bar: fetch version from npm registry
2723
- updateBottomBar(info.sykeVersion);
2723
+ updateBottomBar();
2724
2724
  } catch (e) {
2725
2725
  console.warn("[SYKE] Failed to load project info:", e);
2726
2726
  // Don't immediately show offline — let health check handle it
2727
2727
  }
2728
2728
  }
2729
2729
 
2730
- async function updateBottomBar(apiVersion) {
2730
+ async function updateBottomBar() {
2731
2731
  const el = document.getElementById("bottom-info");
2732
2732
  if (!el) return;
2733
- let version = apiVersion;
2734
- if (!version) {
2735
- try {
2736
- const r = await fetch("https://registry.npmjs.org/@syke1/mcp-server/latest");
2737
- const pkg = await r.json();
2738
- version = pkg.version;
2739
- } catch { version = "?"; }
2733
+ try {
2734
+ const r = await fetch("https://registry.npmjs.org/@syke1/mcp-server");
2735
+ const data = await r.json();
2736
+ const version = data["dist-tags"]?.latest || "?";
2737
+ const publishDate = data.time?.[version]?.slice(0, 10) || "?";
2738
+ el.textContent = "SYKE v" + version + " · Latest update " + publishDate;
2739
+ } catch {
2740
+ el.textContent = "SYKE";
2740
2741
  }
2741
- const today = new Date().toISOString().slice(0, 10);
2742
- el.textContent = "SYKE v" + version + " · Latest update " + today;
2743
2742
  }
2744
2743
 
2745
2744
  let browsePath = null; // current path in folder browser
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syke1/mcp-server",
3
- "version": "1.3.17",
3
+ "version": "1.3.18",
4
4
  "mcpName": "io.github.khalomsky/syke",
5
5
  "description": "AI code impact analysis MCP server — dependency graphs, cascade detection, and a mandatory build gate for AI coding agents",
6
6
  "main": "dist/index.js",